mcp-server-chart vs grimoire-mcp
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | grimoire-mcp by Linell | |
|---|---|---|
| Stars | ★ 4,068 | ★ 0 |
| 30d uses | 10,239 | — |
| Score | 84 | 30 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | AI / LLM ToolsOther |
| Language | TypeScript | TypeScript |
| Last commit | this month | 10 mo ago |
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
grimoire-mcp · Summary
An MCP server providing D&D 5e spell information through search tools and detailed spell data.
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
grimoire-mcp · Use cases
- Game masters looking up spell details during D&D sessions
- Players researching available spells for character building
- AI assistants accessing D&D 5e spell data in RPG contexts
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"]
}
}
}grimoire-mcp · Install
Installation
- Clone the repository:
git clone https://github.com/Linell/grimoire-mcp.git
cd grimoire-mcp- Install dependencies:
npm install- Start the development server:
npm run devFor Claude Desktop, add to claude_desktop_config.json:
{
"mcpServers": {
"grimoire": {
"command": "node",
"args": ["dist/index.js"]
}
}
}