mcp-server-chart vs NornicDB
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | NornicDB by orneryd | |
|---|---|---|
| Stars | ★ 4,068 | ★ 734 |
| 30d uses | 10,239 | — |
| Score | 84 | 52 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | DatabaseKnowledge GraphAI / LLM Tools |
| Language | TypeScript | Go |
| 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.
NornicDB · Summary
NornicDB is a distributed graph+vector database with native MCP server support for AI applications.
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
NornicDB · Use cases
- Agent memory and Graph-RAG systems
- Knowledge graphs with temporal versioning
- AI applications requiring hybrid graph and vector operations
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"]
}
}
}NornicDB · Install
Docker Installation
# Apple Silicon
docker run -d --name nornicdb -p 7474:7474 -p 7687:7687 -v nornicdb-data:/data timothyswt/nornicdb-arm64-metal-bge:latest
# AMD64 / CPU only
docker run -d --name nornicdb -p 7474:7474 -p 7687:7687 -v nornicdb-data:/data timothyswt/nornicdb-amd64-cpu-bge:latestFrom Source
git clone https://github.com/orneryd/NornicDB.git
cd NornicDB
go build -o nornicdb ./cmd/nornicdb
./nornicdb serveClaude Desktop Configuration
To use the MCP server with Claude Desktop, add to your claude_desktop_config.json:
{
"mcpServers": {
"nornicdb": {
"command": "nornicdb",
"args": ["mcp"]
}
}
}