Vibe Board VE
The Vibe Board VE MCP server provides persistent memory and task management for AI agents across sessions, using Firestore as a shared state store. It addresses the statelessness problem by storing tasks, progress, decisions, and notes outside the conversational context.
Projects
Create, list, and update top-level project containers with name, description, metadata, and status (active/completed/archived)
Tasks
Create, retrieve, update, and delete tasks with title, description, status (
backlog,todo,in_progress,blocked,review,done), priority, RIPER workflow phase, agent assignment, parent/subtask relationships, and dependenciesBulk update up to 100 tasks simultaneously (all-or-nothing)
Safety guard: tasks must be
donebefore deletion (overridable)
Cross-Session Continuity (Handoffs)
Start sessions with a handoff from the previous session (summary, active tasks, recent activity)
End sessions with progress summaries, notes, and structured artifacts (files modified, decisions, blockers, next steps)
Retrieve handoff context without starting a new session
Activity Logging
Append structured audit entries (observations, decisions, blockers, comments) tied to tasks, sessions, or agents
Query the activity log filtered by task, session, agent, or action type (up to 200 entries, newest-first)
Supports optional Docker worker deployment as part of the Vibe Coding Framework bundle, providing containerized execution environment for the MCP server.
Provides Firestore-backed persistent memory storage for AI agents, enabling tasks, progress, decisions, and handoff notes to survive across sessions through Firestore database integration.
Vibe Board MCP (ve-vibe-board)
Your agent, but it remembers. Firestore-backed MCP server that gives Claude Code (and any MCP-speaking agent) persistent memory across sessions — tasks, progress, decisions, and handoff notes that survive context compaction and session death.
Companion repo: HuntsDesk/ve-kit — Vibe Coding Framework & Persistent Memory for Claude Code. ve-kit bundles this MCP server, a RIPER-CAT workflow, review-gate hooks, and an optional Docker worker.
Part of Vibe Entrepreneurs — a community for any vibe coders shipping real work with AI. Come say hi: vibeentrepreneurs.com.
Why this exists
Sound familiar?
You're six tool calls into a refactor. Context compacts. The agent comes back with vibes but no plan.
You start a new session tomorrow. It re-reads the same files, re-asks the same questions, re-decides things you already decided.
You watched it write a perfect TodoWrite checklist — then the conversation ended, and the checklist evaporated with it.
You opened three agents in parallel. None of them know what the others did.
This is what statelessness feels like in practice. The agent is brilliant for an hour and amnesiac forever after.
Vibe Board is where the state goes instead. It's a shared task + session board that lives outside any single conversation — in Firestore, not in context.
Agents create tasks during planning — they survive the session
Progress gets tracked during execution — visible to the next run
Handoff notes get written when sessions end — with references to the exact tasks still open
The next session calls
board_create_session, reads the handoff, and resumes where the last one stopped
What you get: an agent that shows up on Tuesday knowing what it was doing on Monday. No re-explaining. No lost plans. No TodoWrite graveyard.
Free to run on Firebase's free tier.
14 MCP tools
Category | Tools |
Projects |
|
Tasks |
|
Sessions |
|
Activity |
|
Fourteen tools, one job: give the agent a place to put state that isn't the conversation.
Install
1. Clone + build
git clone https://github.com/HuntsDesk/ve-vibe-board.git
cd ve-vibe-board
npm install
npm run build2. Set up Firebase
Create a Firebase project (free tier works). Enable Firestore in Native mode. Create a service account with roles/datastore.user and download the key JSON.
GOOGLE_APPLICATION_CREDENTIALS accepts either a file path to the key JSON (canonical) or the raw JSON contents inline (handy for sandboxed environments like Glama's browser MCP Inspector, CI secrets, or Cloud Run's inlined-secret pattern).
Also create 2 composite indexes:
gcloud firestore indexes composite create \
--project=YOUR_PROJECT_ID \
--collection-group=sessions \
--field-config field-path=project_id,order=ascending \
--field-config field-path=status,order=ascending \
--field-config field-path=ended_at,order=descending
gcloud firestore indexes composite create \
--project=YOUR_PROJECT_ID \
--collection-group=tasks \
--field-config field-path=project_id,order=ascending \
--field-config field-path=status,order=ascendingWait 1-5 min for indexes to build.
3. Configure Claude Code
Add to your project's .mcp.json:
{
"mcpServers": {
"vibe-board": {
"command": "node",
"args": ["/absolute/path/to/ve-vibe-board/dist/index.js"],
"env": {
"GOOGLE_APPLICATION_CREDENTIALS": "/absolute/path/to/your-key.json"
}
}
}
}Allow the tools in .claude/settings.local.json:
{
"permissions": {
"allow": [
"mcp__vibe-board__board_get_projects",
"mcp__vibe-board__board_create_project",
"mcp__vibe-board__board_update_project",
"mcp__vibe-board__board_get_tasks",
"mcp__vibe-board__board_get_task",
"mcp__vibe-board__board_create_task",
"mcp__vibe-board__board_update_task",
"mcp__vibe-board__board_bulk_update_tasks",
"mcp__vibe-board__board_delete_task",
"mcp__vibe-board__board_create_session",
"mcp__vibe-board__board_end_session",
"mcp__vibe-board__board_get_handoff",
"mcp__vibe-board__board_log_activity",
"mcp__vibe-board__board_get_activity"
]
},
"enabledMcpjsonServers": ["vibe-board"]
}4. Verify
Start a new Claude Code session and call board_get_projects. Empty array = success.
Agent rules (paste into CLAUDE.md)
## Vibe Board
Persistent task tracking across sessions via MCP tools (`board_*`).
**Mandatory for every substantive session.**
### Use board tasks, NOT TodoWrite
TodoWrite is ephemeral — dies when the session ends. Board tasks persist.
When you would reach for TodoWrite to track multi-step work, use
`board_create_task` instead.
### Session lifecycle
1. Call `board_create_session` at session start — returns last session's handoff
2. Create/update board tasks as you work
3. Call `board_end_session` with progress summary + handoff notes before stoppingFull rule set (proactive triggers, process gates, review protocol) is in HuntsDesk/ve-kit → docs/ve-kit/02-VIBE-BOARD.md.
License
MIT. See LICENSE.
Related
HuntsDesk/ve-kit— full Vibe Coding Framework that bundles this MCP serverHuntsDesk/ve-gws— VE Google Workspace MCP (sibling in the ve-* family)
Latest Blog Posts
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/HuntsDesk/ve-vibe-board'
If you have feedback or need assistance with the MCP directory API, please join our Discord server