用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/duclm1x1/Dive-Ai --skill silverbullet命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
基于 SOC 职业分类
| 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\"\nuv venv\nsource .venv/bin/activate\nuv pip install -e .\n"}]}} |
| 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.