MCP Catalogs
Home

mcp-server-chart vs Express-REST-API-and-MCP-Server-Framework

Side-by-side comparison to help you pick between these two MCP servers.

mcp-server-chart
by antvis
Express-REST-API-and-MCP-Server-Framework
by iolufemi
Stars★ 4,068★ 147
30d uses10,239
Score8448
Official
Categories
AI / LLM ToolsDeveloper ToolsProductivity
Developer ToolsAI / LLM ToolsOps & Infra
LanguageTypeScriptTypeScript
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.

Express-REST-API-and-MCP-Server-Framework · Summary

Express-based framework that generates dual REST API and MCP servers from a single codebase.

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

Express-REST-API-and-MCP-Server-Framework · Use cases

  • Building AI-native applications where LLMs need to interact with backend data
  • Rapid prototyping of REST APIs with automatic MCP server integration
  • Creating dual-purpose APIs that serve both traditional clients and AI assistants

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"]
    }
  }
}

Express-REST-API-and-MCP-Server-Framework · Install

Installation

  1. Clone the repository and install dependencies:
$ git clone https://github.com/iolufemi/Express-REST-API-and-MCP-Server-Framework.git ./yourProjectName
$ cd yourProjectName
$ npm install
  1. Generate your first service:
$ npm run generate -- --name yourFirstEndpoint
  1. Start the development server:
$ npm run dev

Claude Desktop Integration

Add the following to your Claude Desktop configuration:

{
  "mcpServers": {
    "express-mcp": {
      "command": "node",
      "args": ["path/to/your/project/dist/server.js"],
      "env": {}
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.