MCP Catalogs
Home

mcp-servers-kagi vs mcp-server-chart

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

mcp-servers-kagi
by ac3xx
mcp-server-chart
by antvis
Stars★ 44★ 4,068
30d uses10,239
Score3684
Official
Categories
SearchAI / LLM ToolsDeveloper Tools
AI / LLM ToolsDeveloper ToolsProductivity
LanguageTypeScriptTypeScript
Last commit17 mo agothis month

mcp-servers-kagi · Summary

A TypeScript MCP server that integrates with Kagi's Search API to provide web search capabilities.

mcp-server-chart · Summary

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

mcp-servers-kagi · Use cases

  • Enable AI assistants to perform web searches using Kagi's API
  • Provide real-time information retrieval capabilities for AI models
  • Serve as a foundation for extending Kagi's functionality in AI workflows

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-servers-kagi · Install

Installation

Via Smithery

npx @smithery/cli install kagi-server --client claude

Manual Installation

  1. Install dependencies:

``bash npm install ``

  1. Build the server:

``bash npm run build ``

  1. Add to Claude Desktop configuration:
{
  "mcpServers": {
    "kagi-server": {
      "command": "/path/to/kagi-server/build/index.js",
      "env": {
        "KAGI_API_KEY": "your_api_key_here"
      }
    }
  }
}

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"]
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.