MCP Catalogs
Home

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 uses10,239
Score8444
Official
Categories
AI / LLM ToolsDeveloper ToolsProductivity
Developer ToolsAI / LLM ToolsCommunication
LanguageTypeScriptPHP
Last committhis month1 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-chart

For 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

  1. Install the package via Composer:
composer require klapaudius/symfony-mcp-server
  1. Configure the bundle in your config/bundles.php:
return [
    // ...
    Klapaudius\SymfonyMcpServer\SymfonyMcpServerBundle::class => ['all' => true],
];
  1. 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
  1. Start the server:
php bin/console server:start

For Claude Desktop integration, add to your claude_desktop_config.json:

{
  "mcpServers": {
    "symfony-mcp": {
      "command": "php",
      "args": ["bin/console", "mcp:server"],
      "env": {
        "APP_ENV": "dev"
      }
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.