stock-mcp vs everything
Side-by-side comparison to help you pick between these two MCP servers.
stock-mcp by huweihua123 | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 146 | ★ 85,748 |
| 30d uses | — | — |
| Score | 48 | 77 |
| Official | — | ✓ |
| Categories | FinanceAI / LLM ToolsDeveloper Tools | Developer ToolsAI / LLM ToolsOther |
| Language | Python | TypeScript |
| Last commit | 2 mo ago | this month |
stock-mcp · Summary
A professional financial market data MCP server supporting A-shares/US stocks/crypto with HTTP API for AI agents.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
stock-mcp · Use cases
- AI agents requesting stock market data and technical analysis
- Quantitative trading systems retrieving historical market data
- Financial analysis applications accessing fundamentals and news
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
stock-mcp · Install
Installation
Docker Compose (Recommended)
git clone https://github.com/huweihua123/stock-mcp.git
cd stock-mcp
cp .env.example .env
docker compose up -d --buildLocal Development
uv sync --dev
cp .env.example .env
export STOCK_MCP_AUTH_MODE=none
uv run python -m uvicorn src.server.app:app --host 127.0.0.1 --port 9898Claude Desktop Configuration
Add to claude_desktop_config.json:
{
"mcpServers": {
"stock-mcp": {
"command": "uv",
"args": ["run", "python", "-c", "import src.server.mcp.server as m; m.create_mcp_server().run(transport='stdio')"],
"env": {
"STOCK_MCP_AUTH_MODE": "none"
}
}
}
}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