MCP Catalogs
Home

mcp-server-chart vs open-ontologies

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

mcp-server-chart
by antvis
open-ontologies
by fabio-rovai
Stars★ 4,068★ 110
30d uses10,239
Score8449
Official
Categories
AI / LLM ToolsDeveloper ToolsProductivity
Knowledge GraphDeveloper ToolsAI / LLM Tools
LanguageTypeScriptRust
Last committhis monththis month

mcp-server-chart · Summary

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

open-ontologies · Summary

AI-native ontology engine Rust MCP server with 43 tools for building, validating, and querying RDF/OWL ontologies using Oxigraph triple store.

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

open-ontologies · Use cases

  • AI-assisted ontology development and knowledge modeling
  • Validation and reasoning over RDF/OWL knowledge graphs
  • Automated ontology generation from natural language descriptions

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"]
    }
  }
}

open-ontologies · Install

Installation

**Pre-built binaries:**

# macOS (Apple Silicon)
curl -LO https://github.com/fabio-rovai/open-ontologies/releases/latest/download/open-ontologies-aarch64-apple-darwin
chmod +x open-ontologies-aarch64-apple-darwin && mv open-ontologies-aarch64-apple-darwin /usr/local/bin/open-ontologies

# Linux (x86_64)
curl -LO https://github.com/fabio-rovai/open-ontologies/releases/latest/download/open-ontologies-x86_64-unknown-linux-gnu
chmod +x open-ontologies-x86_64-unknown-linux-gnu && mv open-ontologies-x86_64-unknown-linux-gnu /usr/local/bin/open-ontologies

**Connect to Claude Desktop:** Add to ~/Library/Application Support/Claude/claude_desktop_config.json:

{
  "mcpServers": {
    "open-ontologies": {
      "command": "/path/to/open-ontologies",
      "args": ["serve"]
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.