briefkasten-mcp
Click on "Install 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., "@briefkasten-mcpwrite a note from workshop to architect about the review"
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.
briefkasten-mcp
MCP server for passing notes ("Zettel") between Claude rooms on one machine (project chat, Desktop, Claude Code in the editor, and so on). File-based: each Zettel is a single Markdown file in a mailbox folder that lives outside the repo. Part of a small series of personal MCP servers — see nerdaxe-mcp and bitcoin-node-mcp.
Built with the official MCP Python SDK (mcp, FastMCP), served over stdio.
German terms
Tool and field names are German. This glossary maps them to English:
German | English |
Briefkasten | mailbox |
Zettel | note |
zettel_liste | list notes |
zettel_lesen | read note |
zettel_schreiben | write note |
von / an / inhalt | from / to / content |
dateiname | filename |
Von / An / Datum | From / To / Date (the Zettel header) |
gelesen/ | read (archive folder) |
zettel_abraeumen | clear notes |
Related MCP server: Markdown Notes MCP Server
Tools
zettel_liste(an=None)— list unread Zettel (filename, sender, recipient, timestamp, age), newest first. Optional recipient filter.zettel_lesen(dateiname)— return the content of one Zettel.zettel_schreiben(von, an, inhalt)— create a new Zettel and return its filename.inhaltis the message body only; theVon/An/Datumheader is added automatically. Never overwrites, never deletes.zettel_abraeumen(dateinamen)— move the named Zettel intogelesen/. Always a list, even for one Zettel; there is no "clear all" mode, since a blanket clear could disappear post nobody ever read. A bad or missing name never stops the run — it's reported and the rest of the list still gets processed.
Zettel format
Filename: YYYY-MM-DD_HHMM_<von>-an-<an>.md
The body is free-form (handover, report, question — whatever the rooms need); only the header is fixed, and the server writes it itself. Example of a session handover:
Von: workshop
An: architect
Datum: 2026-07-12 14:30
Working on: ...
Your call: ...
Next: ...Security model
The server is deliberately narrow about what it can touch:
One folder, nothing else. Every operation stays inside
BRIEFKASTEN_PATH. The path comes from.env; the folder (and itsgelesen/subfolder) is created on first start if missing.Every name is validated against a fixed schema. Room names (
von,an) are 1–32 lowercase letters and digits — no separators, no hyphen. Filenames handed tozettel_lesenmust match the exact Zettel scheme. That rejects path separators,.., absolute paths and drive letters, control characters, and Windows device names (con,nul, …) in one step, because none of them fit the pattern. A resolved-path check backs it up: the target must resolve to a direct child of the mailbox.Write is create-only. New Zettel are opened in
"x"mode, so an existing file is never overwritten; a same-minute name collision gets a_2,_3, … suffix. Empty content is rejected.No delete tool by design. The server can list, read, create, and move into
gelesen/. Removing a Zettel is a manual act, not something the model can do.Errors surface as messages, not tracebacks. Expected failures — missing config, an invalid name, a missing or unreadable Zettel, a folder that can't be created, a write that can't complete — are caught and returned as a plain explanation instead of raising.
Setup
Requires Python 3.10 or newer.
Windows:
py -m venv .venv
.venv\Scripts\pip install -r requirements.txtLinux / macOS:
python3 -m venv .venv
.venv/bin/pip install -r requirements.txtThen copy .env.example to .env and set BRIEFKASTEN_PATH to an absolute
path for the mailbox folder (outside the repo).
Usage
Run directly for local testing:
.venv\Scripts\python server.pyOr wire it into an MCP client config as briefkasten, using the absolute
path to the venv's Python and to server.py.
Testing
Verified along the build's review chain:
Direct function calls covering the normal case, edge cases, and forced error paths (missing
BRIEFKASTEN_PATH, invalid names, path-escape attempts, name collisions, empty content, an already-cleared or nowhere-found Zettel, a failed move).A programmatic MCP client over stdio, exercising the tools through the real protocol (
tests/test_zettel_abraeumen.py).A cold closing review through an isolated reviewer (2× Sonnet, correctness and security). Four findings were fixed.
Limits
Single mailbox on one machine, no networking.
No delete tool and no bulk-clear —
zettel_abraeumenonly moves the Zettel it's told by name, one at a time.If a Zettel of the same name already sits in
gelesen/, the original is left in the mailbox and keeps showing up inzettel_liste. Resolving that is a manual act, since the server never deletes anything.No search or full-text index;
zettel_listelists,zettel_lesenreads.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- FlicenseNot gradedqualityDmaintenanceManages markdown notes in a specified directory, allowing users to create, read, update, and list notes through the Model Context Protocol.1
- FlicenseNot gradedqualityNot gradedmaintenanceEnables reading and managing markdown note files from a specified directory through natural language interactions.
- FlicenseNot gradedqualityDmaintenanceEnables Claude Code to save, list, and read markdown notes directly from conversations, eliminating manual file management for project ideas, debugging notes, and meeting summaries.
- AlicenseNot gradedqualityAmaintenanceEnables AI assistants to search, read, create, update, and remove personal markdown notes stored locally, providing persistent memory across sessions.132MIT
Related MCP Connectors
Read and write your Fresh Jots notes from Claude, Cursor, and any MCP client.
Search, read, and write your Apple Notes from ChatGPT/Claude via a local Mac agent + MCP relay.
Markdown-based note-taking with a hosted MCP server. Your notes serve you and your AI.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/andy-builds-ai/briefkasten-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server