cc-dash
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., "@cc-dashlist my projects"
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.
cc-dash
🌐 PUBLIC repository — hosted publicly on GitHub. Scrub PII and secrets before every commit.
A local dashboard and Model Context Protocol server for managing a multi-project portfolio whose entire state lives in markdown files.
Projects declare their state in ROADMAP.md, SESSION_PROGRESS.md, and QA.md files
using a small schema. cc-dash reads those files, renders them as boards, timelines, and
queues, and writes changes back to the same markdown. There is no database. The
dashboard is a lens over your files, not a copy of them.
The MCP server exposes the same operations to Claude Code, so an agent can read a roadmap, advance a session, or work a QA queue without anyone opening the UI.
The MCP server
src/mcp/server.ts is a standard MCP server over stdio, with 25 zod-typed tools.
claude mcp add --scope user cc-dash -- npx tsx /path/to/cc-dash/src/mcp/server.tsTools are grouped by what they act on:
Group | Tools |
Portfolio |
|
Roadmap |
|
Sessions |
|
QA |
|
Planning |
|
Every tool validates its input with zod and returns structured content. A tool that cannot do what was asked raises instead of returning a plausible-looking empty result, so an agent cannot silently proceed on bad state.
Related MCP server: Memory Bank MCP Server
Why markdown as the database
Three properties fall out of that constraint, and they are the reason it is worth its cost:
The files stay useful without the app. A
ROADMAP.mdis readable in any editor, diffable in any review, greppable from any shell.Git is the audit log. Every state change is a commit: attributable, revertible, and with no separate migration story.
Agents already understand it. A coding agent can read and edit the source of truth directly, with or without the MCP server.
The cost is that parsing and serialization have to be exact. Round-trip fidelity is enforced by tests: parse a file, serialize it, and the bytes must match.
Features
Project discovery across configured scan directories
Roadmap board with kanban and list views, drag and drop, and bulk status edits
Session tracking for tasks, decisions, and failed attempts across work sessions
QA queues, portfolio-wide and per-project, with a keyboard-driven focus mode
Today's Directions, a generated daily plan with dispatch commands per project
Agent activity feed that attributes commits to the AI agents that co-authored them
Ideas system with a guided capture wizard
Milestone timeline built from roadmap and session events
Setup
Requires Node.js 22 or newer.
npm install
npm run dev # http://localhost:3737
npm run mcp # run the MCP server over stdioCreate ~/.config/cc-dash/config.json:
{
"scan_dirs": ["~/projects"],
"exclude_dirs": ["node_modules", ".git", "vendor"],
"explicit_projects": [],
"scan_depth": 2,
"port": 3737,
"orchestrator_dir": "~/projects"
}orchestrator_dir is the portfolio-level directory your orchestrator agent runs from,
and where TODAYS_DIRECTIONS.md is written. Every machine-specific path lives in this
file, outside the repository, so nothing personal is ever committed.
A project is discovered when it contains a schema file:
---
schema: cc-dash/roadmap@1
project: my-project
description: One-line description
last_updated: 2026-01-01T00:00:00Z
---Roadmap items carry stable IDs in HTML comments, so an item can be reworded without losing its identity:
- <!-- id:r_a1b2c status:planned --> **Item name** - What it doesCommands
Command | Description |
| Dev server |
| Production build |
| MCP server over stdio |
| Full suite, once |
| Watch mode |
| Playwright end-to-end |
| ESLint |
1,666 tests across 148 files.
Constraints
These are enforced, not aspirational:
No database. Markdown files are the only state.
Round-trip fidelity. Parse then serialize must reproduce the file byte for byte.
Atomic writes. Every mutation writes to a
.tmpfile, then renames.Item IDs are permanent. Once assigned, an ID never changes.
Stack
Next.js 15, React 19, TypeScript, Tailwind CSS 4, zod,
@modelcontextprotocol/sdk,
Vitest, Playwright.
License
MIT. See LICENSE.
This server cannot be deployed
Maintenance
Related MCP Connectors
Markdown-based note-taking with a hosted MCP server. Your notes serve you and your AI.
Private-by-default, local-first memory/context/task orchestrator for MCP apps and agents.
Share one project context across ChatGPT, Claude, Telegram and any MCP client.
Durable, shareable and governed project memory with smart triage and explicit project composition.
Related MCP Servers
- AlicenseAqualityAmaintenanceA Model Context Protocol server that converts Markdown text to interactive mind maps with support for rich interactive operations and multi-format exports.1695 npm283MIT
- AlicenseCqualityDmaintenanceMCP protocol server for managing multi-project Markdown documents, supporting project isolation and LLM tool integration.297 npm4MIT
- FlicenseDqualityDmaintenanceA local development server that provides an interface for managing and accessing markdown documents using the Model Context Protocol (MCP).2-
- AlicenseAqualityCmaintenanceAn AI-first business and project management tool that stores data locally in Markdown and JSON files, exposed via the Model Context Protocol (MCP). Enables project, issue, client, contact, and note management through natural language.25MIT