Skip to main content
Glama

Vibe Board MCP (ve-vibe-board)

MCP server on Glama Glama Score License: MIT Node

기억하는 에이전트. Claude Code(및 모든 MCP 지원 에이전트)에 세션 간 지속적인 메모리를 제공하는 Firestore 기반 MCP 서버입니다. 컨텍스트 압축이나 세션 종료 후에도 작업, 진행 상황, 결정 사항 및 핸드오프 메모가 유지됩니다.

관련 저장소: HuntsDesk/ve-kit — Claude Code를 위한 Vibe Coding 프레임워크 및 지속적 메모리. ve-kit은 이 MCP 서버, RIPER-CAT 워크플로우, 리뷰 게이트 훅, 선택적 Docker 워커를 번들로 제공합니다.

Vibe Entrepreneurs의 일부 — AI와 함께 실제 작업을 수행하는 모든 바이브 코더를 위한 커뮤니티입니다. 인사하러 오세요: vibeentrepreneurs.com.


왜 필요한가요?

익숙한 상황인가요?

  • 리팩토링 중 도구 호출을 6번 정도 했습니다. 컨텍스트가 압축됩니다. 에이전트가 돌아오지만 계획은 사라졌습니다.

  • 내일 새 세션을 시작합니다. 에이전트가 같은 파일을 다시 읽고, 같은 질문을 다시 하고, 이미 결정한 사항을 다시 결정합니다.

  • 완벽한 TodoWrite 체크리스트를 작성하는 것을 보았지만, 대화가 끝나자 체크리스트도 함께 사라졌습니다.

  • 세 개의 에이전트를 동시에 열었습니다. 서로 무엇을 했는지 전혀 모릅니다.

이것이 실제 환경에서 상태 비저장(statelessness)이 의미하는 바입니다. 에이전트는 한 시간 동안은 뛰어나지만 그 이후에는 기억상실증에 걸립니다.

Vibe Board는 상태가 저장되는 곳입니다. 대화 컨텍스트가 아닌 Firestore에 위치하며, 단일 대화에 종속되지 않는 공유 작업 및 세션 보드입니다.

  • 에이전트가 계획 단계에서 작업을 생성하면 세션이 종료되어도 유지됩니다.

  • 실행 중에 진행 상황이 추적되며 다음 실행 시에도 확인할 수 있습니다.

  • 세션이 종료될 때 핸드오프 메모가 작성되며, 여전히 열려 있는 작업에 대한 참조가 포함됩니다.

  • 다음 세션에서 board_create_session을 호출하면 핸드오프를 읽고 마지막으로 중단된 지점부터 재개합니다.

결과: 월요일에 하던 일을 기억하고 화요일에 나타나는 에이전트. 다시 설명할 필요도, 잃어버린 계획도, TodoWrite의 무덤도 없습니다.

Firebase 무료 티어에서 무료로 실행할 수 있습니다.


Related MCP server: backlog

14개의 MCP 도구

카테고리

도구

프로젝트

board_get_projects, board_create_project, board_update_project

작업

board_get_tasks, board_get_task, board_create_task, board_update_task (프로젝트 간 이동 지원), board_bulk_update_tasks (한 번에 1-100개), board_delete_task (안전 장치 포함)

세션

board_create_session (마지막 세션의 핸드오프 반환), board_end_session, board_get_handoff

활동

board_log_activity, board_get_activity (커서 페이지네이션, 필터링 가능)

14개의 도구, 하나의 목적: 대화가 아닌 곳에 상태를 저장할 공간을 에이전트에게 제공합니다.


설치

1. 복제 및 빌드

git clone https://github.com/HuntsDesk/ve-vibe-board.git
cd ve-vibe-board
npm install
npm run build

2. Firebase 설정

Firebase 프로젝트를 생성합니다(무료 티어 가능). Native 모드에서 Firestore를 활성화합니다. roles/datastore.user 권한이 있는 서비스 계정을 생성하고 키 JSON을 다운로드합니다.

GOOGLE_APPLICATION_CREDENTIALS는 키 JSON의 파일 경로(표준) 또는 원시 JSON 내용 인라인(Glama의 브라우저 MCP Inspector, CI 시크릿 또는 Cloud Run의 인라인 시크릿 패턴에 유용)을 허용합니다.

또한 Firestore 복합 인덱스를 배포합니다. 저장소에는 5개의 필수 인덱스(세션, 작업, 프로젝트, 활동 로그)를 선언하는 firestore.indexes.json이 포함되어 있습니다. 다음 명령어로 배포하세요:

# From the ve-vibe-board repo root (contains firebase.json + firestore.indexes.json)
firebase use YOUR_PROJECT_ID
firebase deploy --only firestore:indexes

프로젝트에 roles/datastore.indexAdmin 권한이 있는 계정으로 인증된 Firebase CLI(npm install -g firebase-tools)가 필요합니다. 인덱스가 빌드될 때까지 1-5분 정도 기다리세요.

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=ascending

gcloud firestore indexes composite create \
  --project=YOUR_PROJECT_ID \
  --collection-group=tasks \
  --field-config field-path=project_id,order=ascending \
  --field-config field-path=assigned_agent,order=ascending \
  --field-config field-path=status,order=ascending

gcloud firestore indexes composite create \
  --project=YOUR_PROJECT_ID \
  --collection-group=projects \
  --field-config field-path=status,order=ascending \
  --field-config field-path=updated_at,order=descending

gcloud firestore indexes composite create \
  --project=YOUR_PROJECT_ID \
  --collection-group=activity_log \
  --field-config field-path=task_id,order=ascending \
  --field-config field-path=created_at,order=descending

3. Claude Code 구성

프로젝트의 .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"
      }
    }
  }
}

.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. 확인

새 Claude Code 세션을 시작하고 board_get_projects를 호출하세요. 빈 배열이 나오면 성공입니다.


에이전트 규칙 (CLAUDE.md에 붙여넣기)

프로젝트의 CLAUDE.md(또는 이에 상응하는 에이전트 지침 파일)에 이 내용을 추가하세요. ve-kit 프레임워크가 제공하는 것과 동일한 프로토콜이며, 독립형 MCP 설치를 위해 압축되었습니다. MCP 서버는 에이전트에게 상태를 저장할 공간을 제공하며, 이 규칙들은 에이전트가 실제로 그것을 사용하도록 가르칩니다.

## Vibe Board

Persistent task tracking across sessions via Firebase Firestore MCP tools (`board_*`).
**Mandatory for every substantive session** (any session where you read, write, plan, debug, or deploy code).

### Use Board Tasks, NOT TodoWrite

TodoWrite is ephemeral — it dies when the session ends. Board tasks persist forever and enable cross-session handoff. When you would reach for TodoWrite to track multi-step work, use `board_create_task` instead.

**Nothing exists unless it's on the board.** If an action item, future phase, recommendation, or follow-up is mentioned in conversation or discovered in a document but has no board task, it WILL be forgotten. The board is the single source of truth for "what needs to be done." Conversation text, plan docs, and strategy docs are reference material — the board is the task list. When in doubt, create the task. A redundant board task costs nothing; a forgotten action item costs real work.

### Proactive Triggers

These are condition → action pairs. When the condition is true, take the action immediately.

| Condition | Action |
|-----------|--------|
| Session starts (substantive work) | `board_create_session` before any other work |
| Context compacted / continuation session | `board_create_session` IMMEDIATELY — compaction loses the active session ID |
| Multi-step task (3+ steps) | `board_create_task` for each step |
| Batch of items (fix 5 bugs, review 3 files) | Parent task + subtask per item via `board_create_task` |
| New work discovered during execution | `board_create_task` immediately |
| Significant decision or blocker | `board_log_activity` |
| Start working on a task | `board_update_task` → `in_progress` + set `assigned_agent` to your name |
| Finish a task | `board_update_task` → `done` |
| Review/audit produces findings | Parent task per severity tier + subtask per finding |
| Deploying a new service for the first time | `board_create_task` for: verify deployment, create CI/CD trigger, push to prod |
| Committing + pushing code | `board_log_activity` with commit hash; update related tasks |
| Read a doc/plan with unbuilt phases or pending items | `board_create_task` for each actionable item not already on the board |
| Mention a future action item in conversation | `board_create_task` immediately — conversation text is ephemeral, board tasks are permanent |
| A sub-agent reports a finding or recommendation | `board_create_task` if it requires future work (don't let it exist only in conversation) |
| User says "handoff" or signals session end | Create board tasks for ALL pending next steps, THEN `board_end_session` |
| Session ending OR context getting long | `board_end_session` with handoff notes |

**The test**: If this session died right now, could the next session reconstruct what you were doing from the board alone? If not, you haven't been proactive enough.

**The second test**: If a documented plan has unchecked items, unbuilt phases, or "pending" status markers — and there's no corresponding board task — that's a gap. Every actionable item in every plan doc should have a board task. Plans without board tasks get forgotten.

### Session Lifecycle

**Starting a session** (before any other work — **including after context compaction**):

**Context compaction destroys the active session ID.** If you're continuing from a compacted conversation, you MUST call `board_create_session` before doing anything else. This is the #1 failure mode — compaction preserves your behavioral patterns but loses board state.

1. Call `board_get_projects` to see all active projects
2. **Match work to the correct project** — read project names/descriptions and pick the best fit. Do NOT default to one project for everything. Use a general catch-all project only when no specific project fits.
3. Call `board_create_session` with the matched `project_id`
   - This auto-abandons any stale sessions and returns handoff context
   - Read the handoff carefully — it contains what the last session accomplished and what's next
4. Review active tasks via the handoff response or `board_get_tasks`

**During a session:**
- **Planning**: Create all tasks on the board immediately with status `todo`. This ensures the plan survives even if the session crashes before execution.
- **Reviewing**: Review the *task list on the board*, not just prose. Call `board_get_tasks`, then use `board_log_activity` with `task_id` and `action: "commented"` to attach review comments to specific tasks. ALL review output MUST go through the board — conversation text disappears when sessions end.
- **Review findings → board tasks**: When a review produces findings, every finding must become a board task — not just an activity log comment. Create one parent task per severity tier (e.g., "Tier 1: BLOCKING items"), then subtasks for each finding using `parent_task_id`. Map priorities: BLOCKING/FAIL → `critical`, HIGH/WARN → `high`, LOW/INFO → `low`. Include enough context in each subtask's description to fix the issue without re-reading the review.
- **Executing**: Move tasks to `in_progress` as work begins, then `done` when complete. `started_at` is set automatically on first move to `in_progress` — work duration = `completed_at - started_at`.
- **Committing**: Log the commit hash via `board_log_activity` on related tasks. When deploying a new service for the first time, create follow-up tasks: (1) verify deployment, (2) create CI/CD trigger, (3) push to production. These are predictable follow-ups — don't wait for the user to ask.
- **Tracking your own work**: The board isn't just for project plans — it tracks what YOU are doing right now. When you receive a batch of items, create a **parent task** for the batch and **subtasks** for each item using `parent_task_id`. Move each subtask to `in_progress` → `done` as you work. This creates a recoverable checkpoint: if the session dies mid-batch, the next agent sees exactly which items are done and which remain.
- **Sub-agent delegation**: When spawning specialist sub-agents that produce detailed findings, instruct them to write results directly to the board. Include the `project_id` and parent task ID in the prompt. The sub-agent returns only a brief summary. This keeps the main agent's context lean while preserving full detail on the board. Pattern: `"Write all findings to the Vibe Board (project: PROJECT_ID, parent task: TASK_ID). Return only a 1-sentence summary to me."`
- **All modes**: Log notable events via `board_log_activity`. Create additional tasks as new work is discovered — the board should always reflect the current state of work.

**Ending a session** (before the session ends or when the user signals they're done):
1. **Scan your tasks**: Check for any tasks still `in_progress` that you own — mark them `done` if complete, or add a `board_log_activity` comment explaining what remains.
2. **Create tasks for all next steps**: Every pending follow-up must exist as a board task BEFORE ending. Do not list future work only in handoff prose — if it's worth mentioning as a next step, it's worth tracking as a task.
3. Call `board_end_session` with progress_summary, handoff_notes (referencing task IDs, not just prose), and context_artifacts.

**This is the most critical step.** A session without handoff notes is a session whose context is lost forever.

**Proactive ending**: If you sense the conversation is getting long or you are approaching context limits, call `board_end_session` immediately — even a partial handoff is infinitely better than an abandoned session with no notes.

### Task Status Flow

backlog → todo → in_progress → review → done
                       ↓
                    blocked

### Priority Levels

- **critical**: Blocking other work, needs immediate attention
- **high**: Important, should be next
- **medium**: Standard priority (default)
- **low**: Nice to have, do when time allows

더 많은 정보를 원하시나요?

위 내용은 독립형 프로토콜입니다. RIPER-CAT 운영 모드, 위임된 다중 전문가 작업을 위한 processor 에이전트, 리뷰 게이트 훅, 자율 Docker 워커 등 더 넓은 프레임워크를 원하시면 HuntsDesk/ve-kitdocs/ve-kit/02-VIBE-BOARD.md에서 표준 참조 및 나머지 키트를 확인하세요.


라이선스

MIT. LICENSE를 참조하세요.


관련 항목

  • HuntsDesk/ve-kit — 이 MCP 서버를 번들로 제공하는 전체 Vibe Coding 프레임워크

  • HuntsDesk/ve-gws — VE Google Workspace MCP (ve-* 제품군의 형제)

Install Server
A
license - permissive license
A
quality
C
maintenance

Maintenance

Maintainers
Response time
Release cycle
1Releases (12mo)
Commit activity

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

View all related MCP servers

Related MCP Connectors

  • Persistent context for Claude. Your AI always knows your projects and next actions across sessions.

  • Hosted memory for AI agents that learns and forgets — one key across Claude, Cursor & ChatGPT.

  • Cross-agent artifact workspace with provenance across Claude Code, Codex, Cursor, LangGraph.

View all MCP Connectors

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