mcp-server-chart vs lc2mcp
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | lc2mcp by xiaotonng | |
|---|---|---|
| Stars | ★ 4,068 | ★ 69 |
| 30d uses | 10,239 | — |
| Score | 84 | 45 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | Developer ToolsAI / LLM ToolsProductivity |
| Language | TypeScript | Python |
| Last commit | this month | 4 mo ago |
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
lc2mcp · Summary
A lightweight adapter that converts existing LangChain tools into FastMCP tools in one line of code.
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
lc2mcp · Use cases
- Converting existing LangChain tools to serve MCP clients like Claude and Cursor
- Building MCP servers quickly using LangChain's rich ecosystem of 1000+ community tools
- Injecting authentication and user context into tools through MCP context
- Handling tool name conflicts and organizing tools with prefixes
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"]
}
}
}lc2mcp · Install
pip install lc2mcpFor Claude Desktop integration, add to your claude_desktop_config.json:
{
"mcpServers": {
"lc2mcp-example": {
"command": "python",
"args": ["-m", "fastmcp", "run", "/path/to/your/script.py"]
}
}
}