mcp-server-chart vs bank-api
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | bank-api by erwinkramer | |
|---|---|---|
| Stars | ★ 4,068 | ★ 833 |
| 30d uses | 10,239 | — |
| Score | 84 | 52 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | FinanceDeveloper ToolsAI / LLM Tools |
| Language | TypeScript | C# |
| 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.
bank-api · Summary
A banking API reference implementation with MCP server for AI integration.
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
bank-api · Use cases
- Banking chatbots that can perform account operations through AI
- Financial analysis tools that access banking APIs via MCP
- Development sandbox for testing banking API integrations with AI
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"]
}
}
}bank-api · Install
Prerequisites
- .NET 10 SDK
- MCPify for MCP exposure
Setup
- Clone the repository
- Generate JWT token for secured endpoints:
``bash dotnet user-jwts create --scope "bank_api" --role "banker" --valid-for 3650d --project BankApi.Service.Stable ``
- Run the stable API version:
``bash dotnet run --project BankApi.Service.Stable ``
- Start MCP server via Aspire orchestration
Claude Desktop Configuration
{
"mcpServers": {
"bank-api": {
"command": "dotnet",
"args": ["run", "--project", "BankApi.Mcp"],
"env": {
"ASPNETCORE_ENVIRONMENT": "Development"
}
}
}
}