stock-mcp vs filesystem
Side-by-side comparison to help you pick between these two MCP servers.
stock-mcp by huweihua123 | filesystem by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 146 | ★ 85,748 |
| 30d uses | — | — |
| Score | 48 | 77 |
| Official | — | ✓ |
| Categories | FinanceAI / LLM ToolsDeveloper Tools | File SystemDeveloper ToolsProductivity |
| 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.
filesystem · Summary
A feature-rich MCP server for filesystem operations with dynamic directory access control.
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
filesystem · Use cases
- Enable AI models to read and write project files during development
- Allow Claude or other MCP clients to browse and analyze codebases
- Provide secure sandboxed access to specific directories for content generation
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"
}
}
}
}filesystem · Install
Installation
Using NPX
{
"mcpServers": {
"filesystem": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-filesystem",
"/path/to/allowed/directory"
]
}
}
}Using Docker
{
"mcpServers": {
"filesystem": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"--mount", "type=bind,src=/path/to/allowed/dir,dst=/projects/allowed/dir",
"mcp/filesystem",
"/projects"
]
}
}
}VS Code Extension
Click the installation buttons in the README to install directly in VS Code.