MCP Catalogs
Home

mcp-server-chart vs mcp-flight-search

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

mcp-server-chart
by antvis
mcp-flight-search
by arjunprabhulal
Stars★ 4,068★ 42
30d uses10,239
Score8436
Official
Categories
AI / LLM ToolsDeveloper ToolsProductivity
AI / LLM ToolstravelSearch
LanguageTypeScriptPython
Last committhis month14 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-flight-search · Summary

Python MCP server for flight search using SerpAPI, providing tools to search for flights and check server status.

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-flight-search · Use cases

  • Travel assistants that need real-time flight information
  • AI chatbots integrated with travel booking systems
  • Claude Desktop users requiring flight search capabilities

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-flight-search · Install

Install the package:

pip install mcp-flight-search

Start the MCP server:

mcp-flight-search --connection_type http

For Claude Desktop integration, add to your Claude Desktop configuration:

{
  "mcpServers": {
    "flight-search": {
      "command": "mcp-flight-search",
      "args": ["--connection_type", "http"],
      "env": {
        "SERP_API_KEY": "your-api-key-here"
      }
    }
  }
}

Set the SerpAPI key as an environment variable:

export SERP_API_KEY="your-api-key-here"
Comparison generated from public README + GitHub signals. Last updated automatically.