mcp-server-chart vs mcp-obsidian
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | mcp-obsidian by Piotr1215 | |
|---|---|---|
| Stars | ★ 4,068 | ★ 22 |
| 30d uses | 10,239 | — |
| Score | 84 | 42 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | File SystemKnowledge GraphProductivity |
| Language | TypeScript | JavaScript |
| Last commit | this month | 3 mo ago |
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
mcp-obsidian · Summary
An MCP server for secure, direct access to Obsidian vaults without the Obsidian app.
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
mcp-obsidian · Use cases
- Accessing and searching Obsidian notes from AI assistants without opening the Obsidian app
- Building automated knowledge management workflows that interact with Obsidian vaults
- Creating AI agents that can navigate and understand the structure of Obsidian-based knowledge graphs
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"]
}
}
}mcp-obsidian · Install
# Install dependencies
npm install
# Add to Claude Desktop
claude mcp add obsidian -s user -- node /path/to/mcp-obsidian/src/index.js /path/to/your/vaultConfiguration in Claude Desktop's config file (e.g., ~/.claude.json):
{
"mcpServers": {
"obsidian": {
"command": "node",
"args": ["/path/to/mcp-obsidian/src/index.js", "/path/to/your/vault"]
}
}
}