mcp-server-chart vs ogham-mcp
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | ogham-mcp by ogham-mcp | |
|---|---|---|
| Stars | ★ 4,068 | ★ 104 |
| 30d uses | 10,239 | — |
| Score | 84 | 49 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | AI / LLM ToolsDeveloper ToolsKnowledge Graph |
| Language | TypeScript | Python |
| 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.
ogham-mcp · Summary
Ogham MCP is a persistent, searchable shared memory system for AI coding agents across clients.
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
ogham-mcp · Use cases
- Preserving code context and decisions across different AI coding sessions
- Sharing knowledge between team members using different AI coding tools
- Creating a persistent memory of troubleshooting solutions and architectural patterns
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"]
}
}
}ogham-mcp · Install
Installation
Quick Start with uvx (recommended)
uvx --from ogham-mcp ogham initThis runs a setup wizard that walks you through database setup and client configuration.
Manual Setup
- Set up a database (Supabase or Neon recommended)
- Configure environment variables:
export SUPABASE_URL=https://your-project.supabase.co
export SUPABASE_KEY=your-service-role-key
export EMBEDDING_PROVIDER=openai
export OPENAI_API_KEY=sk-...- Add to your MCP client:
**Claude Code:**
claude mcp add ogham -- uvx ogham-mcp**OpenCode:** Add to ~/.config/opencode/opencode.json:
{
"mcp": {
"ogham": {
"type": "local",
"command": ["uvx", "ogham-mcp"],
"environment": {
"SUPABASE_URL": "https://your-project.supabase.co",
"SUPABASE_KEY": "{env:SUPABASE_KEY}",
"EMBEDDING_PROVIDER": "openai",
"OPENAI_API_KEY": "{env:OPENAI_API_KEY}"
}
}
}
}