silverbullet-mcp vs mcp-server-chart
Side-by-side comparison to help you pick between these two MCP servers.
silverbullet-mcp by Ahmad-A0 | mcp-server-chart by antvis | |
|---|---|---|
| Stars | ★ 31 | ★ 4,068 |
| 30d uses | — | 10,239 |
| Score | 44 | 84 |
| Official | — | — |
| Categories | ProductivityKnowledge GraphAI / LLM Tools | AI / LLM ToolsDeveloper ToolsProductivity |
| Language | TypeScript | TypeScript |
| Last commit | 1 mo ago | this month |
silverbullet-mcp · Summary
A TypeScript MCP server enabling LLMs to interact with SilverBullet notes via tools and resources.
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
silverbullet-mcp · Use cases
- Let AI assistants create and analyze notes within SilverBullet
- Automate knowledge management tasks using LLM capabilities
- Connect SilverBullet to AI-powered workflows and 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
silverbullet-mcp · Install
Installation
- **Clone the repository:**
``bash git clone <repository-url> cd <repository-name> ``
- **Create environment file:**
``bash cp .env.example .env # Update with your values ``
- **Build and run:**
``bash docker-compose up --build ``
Claude Desktop Configuration
{
"mcpServers": {
"silverbullet-mcp": {
"command": "npx",
"args": [
"mcp-remote",
"http://localhost:4000/mcp",
"--transport",
"http-only",
"--header",
"Authorization:Bearer ${MCP_SERVER_TOKEN}"
],
"env": {
"MCP_SERVER_TOKEN": "your_actual_mcp_token_from_dotenv"
}
}
}
}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"]
}
}
}