MCP Catalogs
Home

mcp-server-chart vs sympy-mcp

Side-by-side comparison to help you pick between these two MCP servers.

mcp-server-chart
by antvis
sympy-mcp
by sdiehl
Stars★ 4,068★ 70
30d uses10,239
Score8448
Official
Categories
AI / LLM ToolsDeveloper ToolsProductivity
AI / LLM ToolsDeveloper ToolsOther
LanguageTypeScriptPython
Last committhis month2 mo ago

mcp-server-chart · Summary

A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.

sympy-mcp · Summary

A Model Context Protocol server that exposes SymPy's symbolic mathematics capabilities through MCP tool calling for LLMs.

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

sympy-mcp · Use cases

  • Solving differential equations in physics and engineering contexts
  • Performing symbolic integration and differentiation in educational settings
  • Computing tensors for general relativity calculations

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"]
    }
  }
}

sympy-mcp · Install

  1. Install [uv](https://docs.astral.sh/uv/getting-started/installation/) first.
# Setup the project
git clone https://github.com/sdiehl/sympy-mcp.git
cd sympy-mcp
uv sync

# Install the server to Claude Desktop
uv run mcp install server.py

# Run the server
uv run mcp run server.py

For Claude Desktop configuration:

{
  "mcpServers": {
    "sympy-mcp": {
      "command": "/opt/homebrew/bin/uv",
      "args": [
        "run",
        "--with",
        "einsteinpy",
        "--with",
        "mcp[cli]",
        "--with",
        "pydantic",
        "--with",
        "sympy",
        "mcp",
        "run",
        "/ABSOLUTE_PATH_TO_SYMPY_MCP/server.py"
      ]
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.