MCP Catalogs
Home

mcp-server-chart vs python

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

mcp-server-chart
by antvis
python
by mcp-auth
Stars★ 4,068★ 57
30d uses10,239
Score8443
Official
Categories
AI / LLM ToolsDeveloper ToolsProductivity
SecurityDeveloper ToolsAI / LLM Tools
LanguageTypeScriptPython
Last committhis month9 mo ago

mcp-server-chart · Summary

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

python · Summary

A Python SDK providing plug-and-play OAuth 2.1 authentication for MCP servers.

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

python · Use cases

  • Securely connecting Python MCP servers to external services using OAuth 2.1
  • Rapid implementation of authentication in MCP servers without deep security expertise
  • Standardizing authentication across multiple MCP servers using a single SDK

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

python · Install

pip install mcpauth

Add to your MCP server implementation:

from mcpauth import AuthMiddleware

# Initialize with your provider configuration
auth = AuthMiddleware(
    provider="your_provider",
    client_id="your_client_id",
    client_secret="your_client_secret"
)

# Apply to your MCP server
server = YourMCPServer()
server.with_auth(auth)
Comparison generated from public README + GitHub signals. Last updated automatically.