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 uses | 10,239 | — |
| Score | 84 | 48 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | Developer ToolsAI / LLM ToolsOps & Infra |
| 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.
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-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"]
}
}
}Express-REST-API-and-MCP-Server-Framework · Install
Installation
- 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- Generate your first service:
$ npm run generate -- --name yourFirstEndpoint- Start the development server:
$ npm run devClaude Desktop Integration
Add the following to your Claude Desktop configuration:
{
"mcpServers": {
"express-mcp": {
"command": "node",
"args": ["path/to/your/project/dist/server.js"],
"env": {}
}
}
}