silverbullet-mcp vs everything
Side-by-side comparison to help you pick between these two MCP servers.
silverbullet-mcp by Ahmad-A0 | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 31 | ★ 85,748 |
| 30d uses | — | — |
| Score | 44 | 77 |
| Official | — | ✓ |
| Categories | ProductivityKnowledge GraphAI / LLM Tools | Developer ToolsAI / LLM ToolsOther |
| 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.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
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
everything · Use cases
- Testing MCP client implementations against all protocol features
- Learning MCP protocol capabilities through a reference server
- Validating client compatibility with different transport methods
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"
}
}
}
}everything · Install
NPX (recommended)
{
"mcpServers": {
"everything": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-everything"]
}
}
}On Windows, use cmd /c:
{
"mcpServers": {
"everything": {
"command": "cmd",
"args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
}
}
}Docker
{
"mcpServers": {
"everything": {
"command": "docker",
"args": ["run", "-i", "--rm", "mcp/everything"]
}
}
}Global install
npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everything