silverbullet-mcp vs ultimate_mcp_server
Side-by-side comparison to help you pick between these two MCP servers.
silverbullet-mcp by Ahmad-A0 | ultimate_mcp_server by Dicklesworthstone | |
|---|---|---|
| Stars | ★ 31 | ★ 149 |
| 30d uses | — | — |
| Score | 44 | 85 |
| Official | — | — |
| Categories | ProductivityKnowledge GraphAI / LLM Tools | AI / LLM ToolsBrowser AutomationFile System |
| Language | TypeScript | Python |
| Last commit | 1 mo ago | 2 mo ago |
silverbullet-mcp · Summary
A TypeScript MCP server enabling LLMs to interact with SilverBullet notes via tools and resources.
ultimate_mcp_server · Summary
Comprehensive MCP server providing dozens of capabilities for AI agents including LLM delegation, browser automation, document processing, and cognitive memory systems.
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
ultimate_mcp_server · Use cases
- Complex document processing and analysis with OCR and structured data extraction
- Web automation and research across multiple sites with browser control
- Cost-optimized AI workflows through intelligent task delegation between models
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"
}
}
}
}ultimate_mcp_server · Install
Installation
- Clone the repository:
git clone https://github.com/Dicklesworthstone/ultimate_mcp_server.git
cd ultimate_mcp_server- Install dependencies:
pip install -e .- For Claude Desktop integration, add to your claude_desktop_config.json:
{
"mcpServers": {
"ultimate-mcp": {
"command": "python",
"args": ["-m", "ultimate_mcp_server"],
"env": {
"PYTHONPATH": "."
}
}
}
}- Run the server:
python -m ultimate_mcp_server