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 uses | — | 10,239 |
| Score | 36 | 84 |
| Official | — | — |
| Categories | SearchAI / LLM ToolsDeveloper Tools | AI / LLM ToolsDeveloper ToolsProductivity |
| Language | TypeScript | TypeScript |
| Last commit | 17 mo ago | this 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 claudeManual Installation
- Install dependencies:
``bash npm install ``
- Build the server:
``bash npm run build ``
- 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-chartFor 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"]
}
}
}