silverbullet

Verified·Scanned 2/18/2026

Provides an MCP server for SilverBullet that lists, reads, writes, deletes, appends, and searches markdown pages. Uses the SILVERBULLET_URL env var and performs HTTP requests to http://localhost:3000; installation scripts invoke shell commands like uv venv and uv pip install -e ..

from clawhub.ai·v1.0.0·27.3 KB·0 installs
Scanned from 1.0.0 at 67ebe09 · Transparency log ↗
$ vett add clawhub.ai/ramonitor/silverbullet

SilverBullet MCP Server

An MCP (Model Context Protocol) server for interacting with SilverBullet note-taking app.

Works with Claude Desktop, Claude Code, Cursor, Moltbot, and any MCP-compatible client.

Features

  • list_files - List all files in your SilverBullet space
  • read_page - Read markdown content from a page
  • write_page - Create or update pages
  • delete_page - Remove pages
  • append_to_page - Append content to existing pages
  • search_pages - Search pages by name
  • get_page_metadata - Get page metadata without content
  • ping_server - Check server availability
  • get_server_config - Get server configuration

Installation

Using uv (Recommended)

# Clone or download this repository
cd silverbullet-skill

# Create virtual environment and install
uv venv
source .venv/bin/activate  # or .venv\Scripts\activate on Windows
uv pip install -e .

Using pip

pip install -e .

Configuration

Set your SilverBullet server URL:

export SILVERBULLET_URL="http://localhost:3000"

Running the Server

Stdio Transport (Default)

For use with Claude Desktop, Claude Code, etc:

python server.py
# or
uv run server.py

HTTP/SSE Transport (For Moltbot/Daemon Mode)

python server.py --http --port 8080

Integration

Claude Desktop

Add to ~/Library/Application Support/Claude/claude_desktop_config.json:

{
  "mcpServers": {
    "silverbullet": {
      "command": "uv",
      "args": [
        "--directory",
        "/ABSOLUTE/PATH/TO/silverbullet-skill",
        "run",
        "server.py"
      ],
      "env": {
        "SILVERBULLET_URL": "http://localhost:3000"
      }
    }
  }
}

Claude Code

Add to your project's .claude/settings.json or global settings:

{
  "mcpServers": {
    "silverbullet": {
      "command": "python",
      "args": ["/path/to/silverbullet-skill/server.py"],
      "env": {
        "SILVERBULLET_URL": "http://localhost:3000"
      }
    }
  }
}

Moltbot (via mcporter)

Option 1: Stdio Transport

Add to ~/.mcporter/mcporter.json:

{
  "servers": {
    "silverbullet": {
      "command": "python",
      "args": ["/path/to/silverbullet-skill/server.py"],
      "transport": "stdio",
      "env": {
        "SILVERBULLET_URL": "http://localhost:3000"
      }
    }
  }
}

Then use via mcporter:

mcporter call silverbullet.list_files
mcporter call silverbullet.read_page path:"index.md"
mcporter call silverbullet.write_page path:"test.md" content:"# Hello World"

Option 2: HTTP Transport (Daemon Mode)

  1. Start the server as a daemon:
python server.py --http --port 8080 &
  1. Configure mcporter:
{
  "servers": {
    "silverbullet": {
      "url": "http://localhost:8080/sse",
      "transport": "sse"
    }
  }
}

Cursor

Add to Cursor's MCP settings:

{
  "mcpServers": {
    "silverbullet": {
      "command": "python",
      "args": ["/path/to/silverbullet-skill/server.py"],
      "env": {
        "SILVERBULLET_URL": "http://localhost:3000"
      }
    }
  }
}

Available Tools

ToolDescriptionParameters
list_filesList all files in spacebase_url?
read_pageRead page contentpath, base_url?
write_pageCreate/update pagepath, content, base_url?
delete_pageDelete a pagepath, base_url?
append_to_pageAppend to pagepath, content, base_url?
search_pagesSearch by namequery, base_url?
get_page_metadataGet metadata onlypath, base_url?
ping_serverCheck availabilitybase_url?
get_server_configGet server configbase_url?

All tools accept an optional base_url parameter to override the default server URL.

Moltbot Skill (Legacy)

The original curl-based skill is still available in SKILL.md for simpler setups.

Development

# Install with dev dependencies
uv pip install -e ".[dev]"

# Run tests
pytest

License

MIT