MCP server for SilverBullet note-taking app - read, write, search, and manage markdown pages
数据来源:ClawHub。 在 ClawSkills 查看
选择你使用的 Agent
方法一:命令行安装(推荐)
推荐(无需提前安装 clawhub)
npx clawhub@latest --dir ~/.claude/skills install silverbullet-skill或使用 clawhub CLI(需提前安装)
clawhub --dir ~/.claude/skills install silverbullet-skill⚠️ 需要 Node.js 18+,没有 Node?请使用下方方法二直接下载 ZIP。 安装 Node.js →
方法二:手动下载安装(无需 Node)
下载 ZIP,解压后将文件夹放到以下路径,重启 Agent 即可:
安装路径
~/.claude/skills/silverbullet-skill/💡解压后将文件夹放到上方路径,重启 Agent 即可生效
--- name: silverbullet description: MCP server for SilverBullet note-taking app - read, write, search, and manage markdown pages homepage: https://silverbullet.md version: 1.0.0 metadata: clawdbot: requires: bins: ["python3", "uv"] install: - kind: script label: "Install SilverBullet MCP server" script: | cd "$SKILL_DIR" uv venv source .venv/bin/activate uv pip install -e . allowed-tools: "mcporter(silverbullet:*)" ---
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.
| Tool | Description | |------|-------------| | list_files | List all files in the SilverBullet space | | read_page | Read markdown content from a page | | write_page | Create or update a page | | delete_page | Delete a page | | append_to_page | Append content to an existing page | | search_pages | Search pages by name pattern | | get_page_metadata | Get page metadata (modified, created, permissions) | | ping_server | Check if SilverBullet server is available | | get_server_config | Get 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:
curl http://localhost:3000/.pingSILVERBULLET_URL is set correctlySilverBullet pages can be read-only. Check the X-Permission header or use get_page_metadata to verify permissions.
cat ~/.mcporter/mcporter.jsonpython {baseDir}/server.py (should start without errors)which python3 uvSee SilverBullet HTTP API for full documentation of the underlying REST API.
安装 SilverBullet API 后,可以对 AI 说这些话来触发它
Help me get started with SilverBullet API
Explains what SilverBullet API does, walks through the setup, and runs a quick demo based on your current project
Use SilverBullet API to silverBullet note-taking app - read, write, search, and manage mark...
Invokes SilverBullet API with the right parameters and returns the result directly in the conversation
What can I do with SilverBullet API in my documents & notes workflow?
Lists the top use cases for SilverBullet API, with example commands for each scenario
将技能文件夹放到 ~/.claude/skills/silverbullet-skill/ 目录(个人级,所有项目可用),或 .claude/skills/silverbullet-skill/(项目级)。重启 AI 客户端后,用 /silverbullet-skill 主动调用,或让 AI 根据上下文自动发现并使用。
SilverBullet API 支持 Claude、Cursor、OpenClaw,可与这些 AI 平台无缝集成,扩展其能力。
SilverBullet API 可免费安装使用。请查阅仓库了解许可证信息。
MCP server for SilverBullet note-taking app - read, write, search, and manage markdown pages
SilverBullet API 属于「Documents & Notes」分类,该分类的技能帮助 AI 智能体在此领域执行专业任务。
Automate my documents & notes tasks using SilverBullet API
Identifies repetitive steps in your workflow and sets up SilverBullet API to handle them automatically