owl-mcp vs mcp-server-chart
Side-by-side comparison to help you pick between these two MCP servers.
owl-mcp by ai4curation | mcp-server-chart by antvis | |
|---|---|---|
| Stars | ★ 15 | ★ 4,068 |
| 30d uses | — | 10,239 |
| Score | 39 | 84 |
| Official | — | — |
| Categories | Knowledge GraphDeveloper ToolsAI / LLM Tools | AI / LLM ToolsDeveloper ToolsProductivity |
| Language | Python | TypeScript |
| Last commit | 12 mo ago | this month |
owl-mcp · Summary
OWL-MCP enables AI assistants to interact with OWL ontologies via standardized MCP protocol.
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
owl-mcp · Use cases
- AI-assisted ontology development and management
- Automated annotation and classification using existing ontologies
- Collaborative knowledge graph building with AI integration
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
owl-mcp · Install
Installation
- Install Goose (Desktop or CLI version) from [goose installation](https://block.github.io/goose/docs/getting-started/installation/)
- Set up an LLM provider (Anthropic recommended)
- Install OWL-MCP extension in Goose:
- Direct install: [Install OWL-MCP](goose://extension?cmd=uvx&arg=owl-mcp&id=owl_mcp&name=OWL%20MCP) - Manual: Add uvx owl-mcp to the Extension section of Goose
- Start using the extension to create and manage OWL ontologies
Claude Desktop Configuration
{
"mcpServers": {
"owl-mcp": {
"command": "uvx",
"args": ["owl-mcp"]
}
}
}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"]
}
}
}