Requirements
- Target platform
- OpenClaw
- Install method
- Manual import
- Extraction
- Extract archive
- Prerequisites
- OpenClaw
- Primary doc
- SKILL.md
MCP server for SilverBullet note-taking app - read, write, search, and manage markdown pages
MCP server for SilverBullet note-taking app - read, write, search, and manage markdown pages
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Then review README.md for any prerequisites, environment setup, or post-install checks. Tell me what you changed and call out any manual steps you could not complete.
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run.
This skill provides an MCP server for interacting with SilverBullet, a self-hosted markdown-based note-taking app.
clawdhub install silverbullet
cd ~/.clawdbot/skills/silverbullet uv venv source .venv/bin/activate uv pip install -e .
export SILVERBULLET_URL="http://localhost:3000" Or add to your shell profile (~/.zshrc / ~/.bashrc).
Add to ~/.mcporter/mcporter.json: { "servers": { "silverbullet": { "command": "python", "args": ["{baseDir}/server.py"], "transport": "stdio", "env": { "SILVERBULLET_URL": "http://localhost:3000" } } } } Replace {baseDir} with the actual skill path (e.g., ~/.clawdbot/skills/silverbullet).
mcporter list silverbullet Should show all available tools.
ToolDescriptionlist_filesList all files in the SilverBullet spaceread_pageRead markdown content from a pagewrite_pageCreate or update a pagedelete_pageDelete a pageappend_to_pageAppend content to an existing pagesearch_pagesSearch pages by name patternget_page_metadataGet page metadata (modified, created, permissions)ping_serverCheck if SilverBullet server is availableget_server_configGet server configuration
mcporter call silverbullet.list_files
mcporter call silverbullet.read_page path:"index.md" mcporter call silverbullet.read_page path:"journal/2024-01-15.md"
mcporter call silverbullet.write_page path:"notes/meeting.md" content:"# Meeting Notes\n\n- Item 1\n- Item 2"
mcporter call silverbullet.append_to_page path:"journal/today.md" content:"## Evening Update\n\nFinished the project."
mcporter call silverbullet.search_pages query:"meeting"
mcporter call silverbullet.delete_page path:"drafts/old-note.md"
mcporter call silverbullet.ping_server
Once configured, you can ask Moltbot: "List all my SilverBullet pages" "Read my index page from SilverBullet" "Create a new page called 'Project Ideas' with a list of features" "Search for pages containing 'meeting' in the name" "Append today's notes to my journal" "What's the last modified date of my TODO page?" "Is my SilverBullet server running?"
Check if SilverBullet is running: curl http://localhost:3000/.ping Verify SILVERBULLET_URL is set correctly Check firewall/network settings
SilverBullet pages can be read-only. Check the X-Permission header or use get_page_metadata to verify permissions.
Verify mcporter config: cat ~/.mcporter/mcporter.json Test server directly: python {baseDir}/server.py (should start without errors) Check Python/uv installation: which python3 uv
See SilverBullet HTTP API for full documentation of the underlying REST API.
Code helpers, APIs, CLIs, browser automation, testing, and developer operations.
Largest current source with strong distribution and engagement signals.