quick-mcp-example vs mcp-server-chart
Side-by-side comparison to help you pick between these two MCP servers.
quick-mcp-example by ALucek | mcp-server-chart by antvis | |
|---|---|---|
| Stars | ★ 60 | ★ 4,068 |
| 30d uses | — | 10,239 |
| Score | 37 | 84 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsOther | AI / LLM ToolsDeveloper ToolsProductivity |
| Language | Python | TypeScript |
| Last commit | 15 mo ago | this month |
quick-mcp-example · Summary
Minimal example MCP server implementation demonstrating Tools, Resources and Prompts capabilities in Python.
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
quick-mcp-example · Use cases
- Educational example for learning MCP protocol implementation
- Starting point for building custom MCP servers with specific tools
- Demonstration of vector database integration through MCP tools
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
quick-mcp-example · Install
Installation
- Clone the repository
git clone https://github.com/ALucek/quick-mcp-example.git
cd quick-mcp-example- Create virtual environment and install dependencies
# Using uv (recommended)
uv venv
source .venv/bin/activate # On macOS/Linux
# OR
.venv\Scripts\activate # On Windows
uv sync- Set up ChromaDB database by following instructions in
MCP_setup.ipynb
- Run the client and server
python client.py mcp_server.pyClaude Desktop Configuration
Add to Claude Desktop config.json:
{
"mcpServers": {
"quick-mcp-example": {
"command": "python",
"args": ["/path/to/quick-mcp-example/mcp_server.py"]
}
}
}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"]
}
}
}