MCP Catalogs
Home

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 uses10,239
Score8452
Official
Categories
AI / LLM ToolsDeveloper ToolsProductivity
FinanceDeveloper ToolsAI / LLM Tools
LanguageTypeScriptC#
Last committhis monththis 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-chart

For 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

  1. Clone the repository
  2. Generate JWT token for secured endpoints:

``bash dotnet user-jwts create --scope "bank_api" --role "banker" --valid-for 3650d --project BankApi.Service.Stable ``

  1. Run the stable API version:

``bash dotnet run --project BankApi.Service.Stable ``

  1. Start MCP server via Aspire orchestration

Claude Desktop Configuration

{
  "mcpServers": {
    "bank-api": {
      "command": "dotnet",
      "args": ["run", "--project", "BankApi.Mcp"],
      "env": {
        "ASPNETCORE_ENVIRONMENT": "Development"
      }
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.