Financial-Modeling-Prep-MCP-Server vs everything
Side-by-side comparison to help you pick between these two MCP servers.
Financial-Modeling-Prep-MCP-Server by imbenrabi | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 131 | ★ 85,748 |
| 30d uses | — | — |
| Score | 50 | 77 |
| Official | — | ✓ |
| Categories | FinanceDeveloper ToolsAI / LLM Tools | Developer ToolsAI / LLM ToolsOther |
| Language | TypeScript | TypeScript |
| Last commit | this month | this month |
Financial-Modeling-Prep-MCP-Server · Summary
MCP server providing 250+ financial data tools for stocks, crypto, economics, and market analysis.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
Financial-Modeling-Prep-MCP-Server · Use cases
- Financial analysts researching stocks and market trends
- Investors tracking portfolio performance and company fundamentals
- AI assistants providing real-time financial information and analysis
- Economic researchers accessing macroeconomic indicators and market data
everything · Use cases
- Testing MCP client implementations against all protocol features
- Learning MCP protocol capabilities through a reference server
- Validating client compatibility with different transport methods
Financial-Modeling-Prep-MCP-Server · Install
Installation
Hosted Instance (Fastest)
No installation required. Connect directly:
https://financial-modeling-prep-mcp-server-production.up.railway.app/mcpProvide your FMP_ACCESS_TOKEN in session configuration.
Self-Hosted (One-Liner)
npx financial-modeling-prep-mcp-server --fmp-token=YOUR_FMP_API_KEYClaude Desktop Configuration
Add to Claude Desktop config.json:
{
"mcpServers": {
"financial-modeling-prep": {
"command": "npx",
"args": ["financial-modeling-prep-mcp-server", "--fmp-token=YOUR_FMP_API_KEY"]
}
}
}everything · Install
NPX (recommended)
{
"mcpServers": {
"everything": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-everything"]
}
}
}On Windows, use cmd /c:
{
"mcpServers": {
"everything": {
"command": "cmd",
"args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
}
}
}Docker
{
"mcpServers": {
"everything": {
"command": "docker",
"args": ["run", "-i", "--rm", "mcp/everything"]
}
}
}Global install
npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everything