mcp-server-chart vs mcp-onesearch-api-poc
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | mcp-onesearch-api-poc by bdobyns | |
|---|---|---|
| Stars | ★ 4,068 | ★ 0 |
| 30d uses | 10,239 | — |
| Score | 84 | 21 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | SearchAI / LLM ToolsDeveloper Tools |
| Language | TypeScript | TypeScript |
| Last commit | this month | 1 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-onesearch-api-poc · Summary
Proof of concept MCP server implementing onesearch-api with various search tools and filters.
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-onesearch-api-poc · Use cases
- Enabling LLMs to perform complex searches through a MCP server interface
- Providing structured access to onesearch-api features through MCP tools
- Demonstrating integration patterns between search APIs and MCP protocol
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"]
}
}
}mcp-onesearch-api-poc · Install
- Clone the repository:
git clone https://github.com/bdobyns/mcp-onesearch-api-poc.git - Install dependencies:
npm install - Run the server:
npm start
For Claude Desktop, add to your config.json:
{
"mcpServers": {
"onesearch-api": {
"command": "node",
"args": ["path/to/mcp-onesearch-api-poc/server.js"]
}
}
}