FinanceMCP vs filesystem
Side-by-side comparison to help you pick between these two MCP servers.
FinanceMCP by guangxiangdebizi | filesystem by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 574 | ★ 85,748 |
| 30d uses | — | — |
| Score | 53 | 77 |
| Official | — | ✓ |
| Categories | FinanceAI / LLM ToolsDeveloper Tools | File SystemDeveloper ToolsProductivity |
| 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.
filesystem · Summary
A feature-rich MCP server for filesystem operations with dynamic directory access control.
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
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
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).
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.