Ori-Mnemos vs mcp-server-chart
Side-by-side comparison to help you pick between these two MCP servers.
Ori-Mnemos by aayoawoyemi | mcp-server-chart by antvis | |
|---|---|---|
| Stars | ★ 301 | ★ 4,068 |
| 30d uses | — | 10,239 |
| Score | 52 | 84 |
| Official | — | — |
| Categories | AI / LLM ToolsKnowledge GraphDeveloper Tools | AI / LLM ToolsDeveloper ToolsProductivity |
| Language | TypeScript | TypeScript |
| Last commit | this month | this month |
Ori-Mnemos · Summary
Local-first persistent memory system for AI agents with recursive memory harness and MCP integration.
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
Ori-Mnemos · Use cases
- Persistent memory for AI agents across sessions and clients
- Knowledge management with wiki-link graph structure
- Retrieval-augmented generation for complex reasoning tasks
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
Ori-Mnemos · Install
npm install -g ori-memory
ori init my-agent
cd my-agentFor MCP integration:
{
"mcpServers": {
"ori": {
"command": "ori",
"args": ["serve", "--mcp", "--vault", "/path/to/brain"],
"env": { "ORI_VAULT": "/path/to/brain" }
}
}
}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"]
}
}
}