FinanceMCP vs everything
Side-by-side comparison to help you pick between these two MCP servers.
FinanceMCP by guangxiangdebizi | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 574 | ★ 85,748 |
| 30d uses | — | — |
| Score | 53 | 77 |
| Official | — | ✓ |
| Categories | FinanceAI / LLM ToolsDeveloper Tools | Developer ToolsAI / LLM ToolsOther |
| Language | JavaScript | TypeScript |
| Last commit | this month | this month |
FinanceMCP · Summary
Comprehensive financial data MCP server providing real-time stock, crypto, macro-economic data and technical indicators through Tushare and Binance APIs.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
FinanceMCP · Use cases
- Technical analysis of stocks with multiple indicators like MACD, RSI, and BOLL bands
- Comprehensive company evaluation across multiple markets (A-shares, HK, US)
- Real-time monitoring of fund flows, sector performance, and market sentiment
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
FinanceMCP · Install
Installation Options
Option 1: Public Cloud Service (Recommended)
Use the pre-configured cloud service with your own Tushare token:
{
"mcpServers": {
"finance-mcp": {
"disabled": false,
"timeout": 600,
"type": "streamableHttp",
"url": "https://finvestai.top/mcp",
"headers": {
"X-Tushare-Token": "your_tushare_token_here"
}
}
}
}Option 2: Local Installation via npm
npm install -g finance-mcpThen configure Claude Desktop:
{
"mcpServers": {
"finance-mcp": {
"type": "stdio",
"command": "finance-mcp",
"env": {
"TUSHARE_TOKEN": "your_tushare_token_here"
}
}
}
}For more deployment options, see the [README](https://github.com/guangxiangdebizi/FinanceMCP).
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