mcp-server-chart vs llm-context.py
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | llm-context.py by cyberchitta | |
|---|---|---|
| Stars | ★ 4,068 | ★ 300 |
| 30d uses | 10,239 | — |
| Score | 84 | 50 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | Developer ToolsAI / LLM ToolsProductivity |
| Language | TypeScript | Python |
| Last commit | this month | 1 mo ago |
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
llm-context.py · Summary
Smart context management tool that allows sharing relevant project files with LLMs via MCP or clipboard with rule-based customization.
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
llm-context.py · Use cases
- Daily development workflow for humans to quickly share relevant project files with LLMs
- AI agents to create focused contexts for specific sub-tasks
- Code review and documentation generation with task-specific rules
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"]
}
}
}llm-context.py · Install
# Install as a tool
uv tool install "llm-context>=0.6.0"
# MCP Integration for Claude Desktop
Add to Claude Desktop config (~//Library/Application Support/Claude/claude_desktop_config.json):
```jsonc
{
"mcpServers": {
"llm-context": {
"command": "uvx",
"args": ["--from", "llm-context", "lc-mcp"]
}
}
}Initialize project:
cd your-project
lc-init