mcp-server-chart vs ebook-mcp
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | ebook-mcp by onebirdrocks | |
|---|---|---|
| Stars | ★ 4,068 | ★ 366 |
| 30d uses | 10,239 | — |
| Score | 84 | 49 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | File SystemAI / 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.
ebook-mcp · Summary
A Python MCP server for processing EPUB and PDF files with natural language queries.
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
ebook-mcp · Use cases
- Smart library management with natural language queries to find books by topic
- Interactive reading experience with AI-powered conversations about book content
- Active learning support through quizzes and exercises based on book material
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"]
}
}
}ebook-mcp · Install
# Clone the repository
git clone https://github.com/onebirdrocks/ebook-mcp.git
cd ebook-mcp
# Install dependencies using uv
uv pip install -e .
# Start the MCP server in development mode
uv run mcp dev src/ebook_mcp/main.py
# Or start in production mode
uv run src/ebook_mcp/main.pyFor Claude Desktop configuration:
{
"ebook-mcp": {
"command": "uv",
"args": [
"--directory",
"/path/to/ebook-mcp/src/ebook_mcp/",
"run",
"main.py"
]
}
}