mcp-server-chart vs mcp-server-spec-driven-development
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | mcp-server-spec-driven-development by formulahendry | |
|---|---|---|
| Stars | ★ 4,068 | ★ 431 |
| 30d uses | 10,239 | — |
| Score | 84 | 47 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | Developer ToolsProductivityAI / LLM Tools |
| Language | TypeScript | TypeScript |
| Last commit | this month | 8 mo ago |
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
mcp-server-spec-driven-development · Summary
MCP server enabling structured spec-driven development with requirements, design, and code generation prompts.
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
mcp-server-spec-driven-development · Use cases
- Generating detailed requirements documents using EARS format for new projects
- Creating design documents based on existing requirements specifications
- Generating implementation code from design documents in various programming languages
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"]
}
}
}mcp-server-spec-driven-development · Install
Installation
VS Code
Install the MCP server in VS Code using the button:
[-VS_Code-0098FF)](https://insiders.vscode.dev/redirect?url=vscode%3Amcp%2Finstall%3F%257B%2522name%2522%253A%2522spec-driven%2522%252C%2522command%2522%253A%2522npx%2522%2522args%2522%253A%255B%2522-y%2522%252C%2522mcp-server-spec-driven-development%2540latest%2522%255D%257D)
Add to mcp.json:
{
"servers": {
"spec-driven": {
"command": "npx",
"args": [
"-y",
"mcp-server-spec-driven-development@latest"
]
}
}
}Cursor/Claude Code
Add to mcp.json:
{
"mcpServers": {
"spec-driven": {
"command": "npx",
"args": [
"-y",
"mcp-server-spec-driven-development@latest"
]
}
}
}