mcp-server-chart vs symfony-mcp-server
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | symfony-mcp-server by klapaudius | |
|---|---|---|
| Stars | ★ 4,068 | ★ 30 |
| 30d uses | 10,239 | — |
| Score | 84 | 44 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | Developer ToolsAI / LLM ToolsCommunication |
| Language | TypeScript | PHP |
| 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.
symfony-mcp-server · Summary
A Symfony package for building enterprise-grade MCP servers with real-time communication and AI agent capabilities.
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
symfony-mcp-server · Use cases
- Building intelligent code review agents that can analyze code for security vulnerabilities and performance issues
- Creating data analysis agents that can process complex datasets and generate insights
- Developing customer support agents with context-aware responses and personalized recommendations
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"]
}
}
}symfony-mcp-server · Install
Installation
- Install the package via Composer:
composer require klapaudius/symfony-mcp-server- Configure the bundle in your
config/bundles.php:
return [
// ...
Klapaudius\SymfonyMcpServer\SymfonyMcpServerBundle::class => ['all' => true],
];- Configure the MCP server in your
config/packages/symfony_mcp_server.yaml:
symfony_mcp_server:
transport: 'sse' # or 'streamable_http'
tools:
- App\Tools\IntelligentAnalyzer
- App\Tools\CodeReviewAgent- Start the server:
php bin/console server:startFor Claude Desktop integration, add to your claude_desktop_config.json:
{
"mcpServers": {
"symfony-mcp": {
"command": "php",
"args": ["bin/console", "mcp:server"],
"env": {
"APP_ENV": "dev"
}
}
}
}