mcp-server-chart vs laravel-mcp-companion
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | laravel-mcp-companion by brianirish | |
|---|---|---|
| Stars | ★ 4,068 | ★ 34 |
| 30d uses | 10,239 | — |
| Score | 84 | 45 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | Developer ToolsAI / LLM ToolsOther |
| Language | TypeScript | Python |
| Last commit | this month | this month |
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
laravel-mcp-companion · Summary
An MCP server providing comprehensive Laravel documentation aggregation and navigation with multi-version support, learning paths, and package discovery.
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
laravel-mcp-companion · Use cases
- Learning Laravel with structured documentation paths by skill level
- Finding the right Laravel packages for specific functionality needs
- Accessing up-to-date documentation offline during development
- Cross-referencing documentation across Laravel core and packages
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"]
}
}
}laravel-mcp-companion · Install
Claude Desktop
- Open Claude Desktop Settings
- Click Claude menu → Settings → Developer → Edit Config
- Add to your configuration file:
``json { "mcpServers": { "laravel-mcp-companion": { "command": "docker", "args": ["run", "--rm", "-i", "ghcr.io/brianirish/laravel-mcp-companion:latest"] } } } ``
- Restart Claude Desktop for changes to take effect
Claude Code
Use the claude mcp add command:
# Add with Docker
claude mcp add laravel-mcp-companion -- docker run --rm -i ghcr.io/brianirish/laravel-mcp-companion:latest
# Or add to project-specific config
claude mcp add laravel-mcp-companion --scope project -- docker run --rm -i ghcr.io/brianirish/laravel-mcp-companion:latest