mcp-server-chart vs ontosphere
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | ontosphere by ThHanke | |
|---|---|---|
| Stars | ★ 4,068 | ★ 59 |
| 30d uses | 10,239 | — |
| Score | 84 | 46 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | Knowledge GraphDeveloper ToolsAI / LLM Tools |
| Language | TypeScript | TypeScript |
| Last commit | this month | this month |
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
ontosphere · Summary
Browser-based RDF knowledge graph editor with MCP server integration for AI agent 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
ontosphere · Use cases
- AI agents analyzing and querying large RDF knowledge graphs
- Automated ontology development and knowledge graph refinement
- Visualizing and reasoning about complex semantic relationships
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"]
}
}
}ontosphere · Install
Installation
Ontosphere is a client-side browser application with no backend requirements:
- Clone the repository:
``sh git clone https://github.com/ThHanke/ontosphere.git cd ontosphere ``
- Install dependencies:
``sh npm install ``
- Start the development server:
``sh npm run dev ``
- Open http://localhost:8080 in your browser
Claude Desktop Integration
Add the following to your Claude Desktop configuration (claude_desktop_config.json):
"mcpServers": {
"ontosphere": {
"command": "npx",
"args": ["@thhanke/ontosphere-mcp"]
}
}