MCP Catalogs
Home

mcp-server-chart vs jetski

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

mcp-server-chart
by antvis
jetski
by hyprmcp
Stars★ 4,068★ 209
30d uses10,239
Score8450
Official
Categories
AI / LLM ToolsDeveloper ToolsProductivity
MonitoringSecurityDeveloper Tools
LanguageTypeScriptTypeScript
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.

jetski · Summary

An MCP analytics and authentication platform with zero code changes that provides OAuth2.1, real-time logs, and client onboarding.

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

jetski · Use cases

  • Monitoring and analyzing MCP server usage patterns across different clients
  • Implementing OAuth2.1 authentication for MCP servers without code changes
  • Generating client-specific setup instructions to reduce onboarding friction
  • Debugging MCP server issues with real-time logs and analytics

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

jetski · Install

Installation

Quick Start with Cloud

Get started with the fully managed HyprMCP Cloud at [https://app.hyprmcp.com](https://app.hyprmcp.com/).

Local Development

  1. Clone the repository:
git clone https://github.com/hyprmcp/jetski.git
cd jetski
  1. Install dependencies:
mise trust
mise install
pnpm i
cp .dex.secret.env.example .dex.secret.env
docker compose up -d
  1. Add host file entry:
echo -e "\n127.0.0.1    host.minikube.internal\n" | sudo tee -a /etc/hosts
  1. Start the platform:

Terminal 1 - Backend:

mise run serve

Terminal 2 - Frontend:

pnpm run start

Generate demo data:

mise run generate

Access at http://localhost:4200 with credentials: admin@example.com / password

Claude Desktop Configuration

To use with Claude Desktop, configure the following in your claude_desktop_config.json:

{
  "mcpServers": {
    "hyprmcp": {
      "command": "npx",
      "args": ["@hyprmcp/mcp-gateway"],
      "env": {
        "HYPRMCP_SERVER_URL": "https://your-server.com",
        "HYPRMCP_CLIENT_ID": "your-client-id"
      }
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.