MCP Catalogs
Home

mcp-server-chart vs mcp

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

mcp-server-chart
by antvis
mcp
by yandex-cloud
Stars★ 4,068★ 30
30d uses10,239
Score8444
Official
Categories
AI / LLM ToolsDeveloper ToolsProductivity
Ops & InfraDeveloper ToolsCloud Storage
LanguageTypeScript
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.

mcp · Summary

A collection of MCP servers for managing Yandex Cloud infrastructure including deployment, serverless, and data platform services.

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

mcp · Use cases

  • Managing Yandex Cloud infrastructure through conversational AI interfaces
  • Automating cloud deployments and configurations using AI assistants
  • Searching and accessing Yandex Cloud documentation and web resources
  • Developing and deploying serverless applications with AI guidance

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

mcp · Install

Installation

Choose one of the following authentication methods:

NPM Client (Stdio)

  1. Install Node.js 18.0.0 or higher
  2. Install Yandex Cloud CLI (optional, for CLI authentication)
  3. Configure your MCP client (e.g. Claude Desktop):
{
  "mcpServers": {
    "yandex-cloud-toolkit": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y", "@yandex-cloud/mcp",
        "-s", "toolkit"
      ]
    }
  }
}

Streamable HTTP

  1. Get an IAM token using Yandex Cloud CLI:

- yc iam create-token for user account - yc iam create-token --impersonate-service-account-id <service-account-id> for service account

  1. Configure your MCP client:
{
  "mcpServers": {
    "yandex-cloud-toolkit": {
      "type": "streamableHttp",
      "url": "https://toolkit.mcp.cloud.yandex.net/mcp",
      "headers": {
        "Authorization": "Bearer <YC IAM Token>"
      }
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.