whiteboard-mcp-server
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., "@whiteboard-mcp-servercreate a room for sprint 42 and add the API contract"
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.
whiteboard-mcp-server
Shared context for multiple Claude Code sessions working on the same project.
When multiple Claude Code sessions work on different parts of a project, context gets lost. The whiteboard gives them a direct channel to share contracts, decisions, alerts, and questions — no human relay needed.
The problem
Dev A -> Claude A -> Human A -> Human B -> Claude B -> Dev BThis game of telephone breaks down on every handoff. The whiteboard eliminates the middle:
Claude A <---> Whiteboard <---> Claude BRelated MCP server: memory-bridge
What it does
Rooms with token-based access and configurable TTL (default 24h)
4 board sections: contracts, decisions, alerts, questions
Q&A system: directed questions between sessions with pending/answered tracking
Hub-and-spoke pattern: one context session answers questions from multiple workers
Moderator mode: optionally restrict room closing to the creator
Volatile by design: rooms are deleted when closed — no data accumulates
Quick start
1. Run
git clone https://github.com/thebackpackdevorg/whiteboard-mcp-server.git
cd whiteboard-mcp-server
docker compose up -dThe server starts on port 8080.
2. Register in Claude Code
claude mcp add whiteboard http://localhost:8080/mcp -t httpOr add to ~/.claude/settings.json:
{
"mcpServers": {
"whiteboard": {
"type": "http",
"url": "http://localhost:8080/mcp"
}
}
}3. Use it
Session A creates a room:
Claude A -> room_create(name="payments-risk", description="Sprint 42 integration")
Returns: Token: xK9mQ2pL...Session B joins and sees the board:
Claude B -> room_join(room="payments-risk", token="xK9mQ2pL...", alias="claude-risk")
Returns: board summary + section descriptions + pending questionsBoth sessions read and write to the shared board:
Claude A -> board_write(section="contracts", title="POST /payments schema", content="...")
Claude B -> board_read(room="payments-risk", token="xK9mQ2pL...")Hub-and-spoke pattern
For projects with multiple parallel sessions, use a context session as the central oracle and worker sessions that ask questions when they need context.
Context Session (loop) Worker Session A Worker Session B
├── loads full context ├── works focused ├── works focused
├── board_pending() each iter ├── board_ask() ├── board_ask()
├── board_answer() if any │ when needs ctx │ when needs ctx
└── room_close() when done └── board_pending() └── board_pending()
to see response to see responseContext session prompt template
You are the context session for this project. Your role is:
1. Keep the full project context loaded.
2. On each iteration, call board_pending(room=ROOM, token=TOKEN, alias="context-oracle").
3. If there are pending questions, answer them with board_answer().
4. Continue with your main task.
5. When the session ends, call room_close().
Room: <room_name>
Token: <token>
Alias: context-oracleWorker session prompt template
You are a worker session. Work on your specific module.
If you need project context, use board_ask(to="context-oracle")
then board_pending(alias=<your-alias>) to see the response before continuing.
Room: <room_name>
Token: <token>
Alias: <your-alias>Tools reference
Room management
Tool | Key params | Description |
| (none) | Returns the full usage guide. Call first in every new session. |
|
| Create a room. Returns token (shown only once). |
|
| Join a room. Alias must be unique. Returns board summary + pending questions. |
|
| Room status: participants, TTL remaining, entry counts. |
|
| Extend the TTL before expiration. |
|
| Close and delete the room. Respects moderator setting. |
Board operations
Tool | Key params | Description |
|
| Write an entry. Sections: |
|
| Read entries. Without section returns everything. |
|
| Compact overview with section descriptions. |
Q&A
Tool | Key params | Description |
|
| Post a question directed to an alias. Returns |
|
| Answer a question by ID. |
|
| Check pending questions for your alias. Lightweight — safe for loops. |
Board sections
Section | Purpose |
| API interfaces, schemas, and contracts between modules |
| Architectural decisions with context and rationale |
| Breaking changes, blockers, and changes that affect others |
| Directed questions between participants (via |
Configuration
config.yaml
whiteboard:
data_path: "/data"
default_ttl_hours: 24
server:
host: "0.0.0.0"
port: 8080Environment variables (override config.yaml)
Variable | Default | Description |
|
| Root directory for room storage |
|
| Default room expiration in hours |
|
| Bind address |
|
| Internal port |
Security
Token per room — generated at creation, SHA-256 hashed for storage. Plaintext shown only once.
Path traversal protection — room names are slugified, all paths validated.
Unique aliases — duplicate aliases are rejected on join.
Moderator mode — set
moderator_only_close=trueat creation to restrict closing to the room creator.
Alias conventions
Context session:
context-oracleWorkers:
claude-<module>(e.g.claude-payments,claude-risk,claude-frontend)
Development
# Install locally
pip install -e .
# Run directly
DATA_PATH=./data python -m whiteboard_mcp.serverStack
Python 3.12 + FastMCP
Streamable HTTP transport
Docker +
uvfor fast buildsYAML metadata for rooms, Markdown for board entries
License
MIT
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.
Latest Blog Posts
- 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/thebackpackdevorg/whiteboard-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server