mcp-server-silverbullet
Click on "Deploy Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@mcp-server-silverbulletfind notes containing 'MCP server'"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
mcp-server-silverbullet
English · 한국어
An MCP server that connects a SilverBullet space over
its HTTP filesystem API (/.fs) and exposes only a chosen prefix to AI
agents. It provides five tools plus resources, so you can attach your notes to an
agent without handing over the whole space. Runs with npx — no install needed.
Features
Prefix scoping — the agent sees only what lives under one prefix (the folder's contents plus its namesake page). Enforced in code, not in the prompt.
Scope gating — allow
readonly, or addwrite/delete. Tools that aren't allowed are never registered in the first place.Path hardening — absolute paths,
.., encoded traversal, and anything outside the prefix are all rejected.Token isolation — the SilverBullet token stays in the server environment and is never exposed to the LLM.
Note — this is a guardrail for the LLM, not a multi-tenant security boundary. SilverBullet's
SB_AUTH_TOKENgrants full space access (there are no prefix-scoped tokens), so use it only in an environment you control.
Related MCP server: Bruin
Setup
Requires Node.js ≥ 20 and a SilverBullet instance with SB_AUTH_TOKEN configured.
Add the following to your MCP client (Claude Code, Cursor, Claude Desktop, etc.):
{
"mcpServers": {
"silverbullet": {
"command": "npx",
"args": ["-y", "@bong-u/mcp-server-silverbullet@0.1.0"],
"env": {
"SILVERBULLET_MCP_BASE_URL": "https://notes.example.com",
"SILVERBULLET_MCP_TOKEN": "<SB_AUTH_TOKEN>",
"SILVERBULLET_MCP_PREFIX": "projects/work",
"SILVERBULLET_MCP_SCOPES": "read"
}
}
}
}Variable | Required | Default | Description |
| ✅ | — | SilverBullet instance URL. |
| ✅ | — |
|
| — | whole space | Subpath the agent may access, e.g. |
| — |
| Allowed operations (must include |
| — |
| Request timeout (ms). |
| — |
| Max file size |
| — |
|
|
If a required variable is missing or malformed, the server exits immediately with a clear error.
Tools
Paths keep the prefix's top segment (notes.md, notes/todo.md). Feed a path
returned by list_files straight into read_file.
Tool | Scope | Description |
|
| List files under the prefix (optionally within a subpath). |
|
| Read a file — text as |
|
| Create or replace a file. |
|
| Delete a file. |
|
| Substring search over file names and text content. |
Files are also exposed as resources: silverbullet://notes/todo.md.
Development
npm install
cp .env.example .env # fill in instance URL + token
npm run dev # run straight from source (tsx), loading .env
npm run lint # biome
npm run typecheck # tsc --noEmit
npm test # vitest
npm run build # compile to dist/CI runs lint · typecheck · test · build on Node 20, 22, and 24.
License
MIT
This server cannot be deployed
Maintenance
Related MCP Connectors
Nifty's MCP server — exposes tasks, projects, messages, and files as tools for AI agents.
Markdown-based note-taking with a hosted MCP server. Your notes serve you and your AI.
Agent-native MCP server over the public saagarpatel.dev corpus. Read-only, stateless.
Google Keep-style notes app with an MCP server for AI agents to read/write notes.
Related MCP Servers
- AlicenseNot gradedqualityDmaintenanceProvides an MCP server that allows AI assistants to interact with Obsidian vaults, enabling reading/writing notes, managing metadata, searching content, and working with daily notes.37MIT
- AlicenseNot gradedqualityCmaintenanceMCP server for AI agents to read, write, and organize notes in a local-first, human-in-the-loop note-taking app.1 npm2MIT
- AlicenseNot gradedqualityDmaintenanceRemote MCP server that gives AI agents read/write access to your Obsidian vaults, supporting both local desktop vaults and headless mode.2,547 npmMIT
- AlicenseNot gradedqualityAmaintenanceAn MCP server that enables AI agents to read, search, and write to your Obsidian vault.4 npmMIT