mcp-server-chart vs openfinclaw-cli
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | openfinclaw-cli by mirror29 | |
|---|---|---|
| Stars | ★ 4,068 | ★ 63 |
| 30d uses | 10,239 | — |
| Score | 84 | 46 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | FinanceAI / LLM ToolsDeveloper Tools |
| Language | TypeScript | TypeScript |
| Last commit | this month | this month |
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
openfinclaw-cli · Summary
OpenFinClaw is an MCP server that provides AI-powered quant trading research, strategy generation, and backtesting capabilities across multiple AI platforms.
mcp-server-chart · Use cases
- Data analysts creating visual reports from datasets
- AI assistants generating custom charts based on user requests
- Web applications embedding visualization capabilities via HTTP API
openfinclaw-cli · Use cases
- Generate and backtest trading strategies through natural language prompts
- Access financial research and analysis across multiple markets
- Share and discover quant strategies through a community leaderboard
- Integrate quant trading capabilities into AI coding environments
mcp-server-chart · Install
Installation
Install globally:
npm install -g @antv/mcp-server-chartFor Desktop Apps (e.g., Claude Desktop, VSCode):
{
"mcpServers": {
"mcp-server-chart": {
"command": "npx",
"args": ["-y", "@antv/mcp-server-chart"]
}
}
}For Windows:
{
"mcpServers": {
"mcp-server-chart": {
"command": "cmd",
"args": ["/c", "npx", "-y", "@antv/mcp-server-chart"]
}
}
}openfinclaw-cli · Install
# Install with automatic configuration
npx @openfinclaw/cli@latest install
# Non-interactive install
npx @openfinclaw/cli@latest install --yes --platforms cursor,claude-code --tool-groups deepagent,strategy --api-key fch_xxx
# Configure Claude Desktop
# Add to ~/.claude/settings.json:
{
"mcpServers": {
"openfinclaw": {
"command": "npx",
"args": ["@openfinclaw/cli", "serve", "--tools=deepagent,strategy"],
"env": {
"OPENFINCLAW_API_KEY": "fch_xxx"
}
}
}
}