ProPlan
MCP server for project planning inside Claude. It tracks progress, knows your codebase, and resumes exactly where you left off every session.
README
<div align="center">
<a href="https://modelcontextprotocol.io"><img src="https://img.shields.io/badge/ProPlan-MCP-6366f1?style=for-the-badge" alt="ProPlan MCP" /></a>
ProPlan
Your project roadmap lives inside Claude.
It tracks progress, knows your codebase, and resumes exactly where you left off — every single session.
Quick Start · How It Works · Dashboard · Tools · Manual Setup
</div>
The Problem
Every time you open Claude Code, it's a blank slate. You re-explain the project. You re-describe what's done. You remind it what's next.
ProPlan fixes this with one word:
You: continue
Claude: I see we were working on the auth middleware. Last session you finished
JWT validation but left the refresh token logic incomplete. 3 tasks are
in progress across Phase 2. Want to pick up from there?
One word. Full context. Every session.
What Makes ProPlan Different
There are memory tools for Claude. There are project management tools like Linear and Jira. ProPlan is the only one that does both — inside Claude's tool context.
| Linear / Jira / Notion | Claude's built-in memory | ProPlan | |
|---|---|---|---|
| Visual dashboard | ✅ | ❌ | ✅ |
| Lives inside Claude | ❌ | ✅ | ✅ |
| Structured roadmap | ✅ | ❌ | ✅ |
| Reads your codebase | ❌ | ❌ | ✅ |
| Claude updates it | ❌ | ❌ | ✅ |
| Syncs across machines | ✅ | ❌ | ✅ |
Quick Start
npx @proplandev/mcp@latest init
That's it. The setup wizard will:
- Ask local (SQLite, zero config) or cloud (syncs to the web dashboard)
- Write your
.mcp.jsonautomatically - Create a
CLAUDE.mdso Claude knows to callget_project_statuson every session start - Update
.gitignoreso your data isn't accidentally committed - Optionally update your Claude settings to skip approval prompts for read-only tools
Then restart Claude Code and type start.
How It Works
The Flow
flowchart TD
A["Your Repo"] -->|npx init| B["Config files written<br/>.mcp.json · CLAUDE.md · .gitignore"]
B -->|Claude Code starts| C(ProPlan MCP Server)
C -->|new project| D["scan_repo<br/>→ roadmap generated"]
C -->|existing project| E["get_project_status<br/>→ full context instantly"]
C -->|resuming work| F["get_project_status<br/>→ 'last session you were...'"]
classDef server fill:#6366f1,stroke:#4f46e5,color:#ffffff
classDef outcome fill:#f0fdf4,stroke:#86efac,color:#166534
class C server
class D,E,F outcome
Session Lifecycle
Session Start — get_project_status(include_handoff: true)
projectGoal— your north-star goal for the projectlastSession— summary of what was done last timerecentTasks— tasks worked on recentlytech_metadata— codebase structure and stack
During Work — after each task
update_task_status— mark progress with a short note (required)add_note_to_task— log observations without changing status
Session End — add_session_summary
- What was worked on
- Decisions made
- What comes next
Roadmap Structure
Project
└── Phase 1: Foundation
├── Milestone 1.1: Auth System
│ ├── Task: Set up JWT ✓ completed
│ ├── Task: Refresh tokens ◷ in_progress
│ └── Task: Rate limiting ○ pending
└── Milestone 1.2: Database
└── ...
└── Phase 2: Features
└── ...
Dashboard
ProPlan includes a web dashboard at project-planner-7zw4.onrender.com where you can:
- See all your projects and their completion percentage
- Track phases and tasks visually outside of Claude
- Generate your MCP token for cloud sync
- Share progress with teammates or stakeholders
Local → Dashboard
- Run
npx @proplandev/mcp@latest init→ choose local - Use Claude to build your project —
create_project, update tasks as you go - Run
export_to_cloudwith your MCP token from the dashboard Settings - View your projects at project-planner-7zw4.onrender.com
Dashboard → Local
- Sign up at project-planner-7zw4.onrender.com
- Go to Settings → Claude Code Integration → generate an MCP token
- Run
npx @proplandev/mcp@latest init→ choose cloud → paste your token - Open Claude Code — your projects sync automatically on every session start
Tools
Read Tools (auto-approvable)
| Tool | What it does |
|---|---|
get_project_status |
Status for one or all projects. Pass include_handoff: true for full session resume context in one call. |
get_project_roadmap |
Full roadmap. summary_only: true for a lightweight view. |
get_next_tasks |
Next pending or in-progress tasks ordered by phase → milestone. |
get_tasks |
Filter by status, phase, or keyword. Up to 500 results. |
scan_repo |
Directory tree + structural code analysis. Persists tech metadata when project_id provided. Hash-cached. |
Write Tools (approval required)
| Tool | What it does |
|---|---|
create_project |
Create a project with full phase/milestone/task structure. |
update_task_status |
Update status with a required note (max 150 chars). |
add_note_to_task |
Append a note without changing status. |
add_task / add_milestone / add_phase |
Add items to the roadmap. All support dry_run. |
edit_task / edit_milestone / edit_phase |
Rename or update. All support dry_run. |
delete_task / delete_milestone / delete_phase / delete_project |
Delete items. All support dry_run. |
rename_project |
Rename a project. |
set_project_goal |
Set the permanent north-star goal shown on every session start. |
add_session_summary |
Save what was done this session. Capped at 10 — oldest dropped automatically. |
export_to_cloud |
Sync local SQLite projects to the web dashboard. |
Skip Approval Prompts
The init wizard offers to do this automatically. If you skipped it, add this to ~/.claude/settings.json:
{
"allowedTools": [
"mcp__project-planner__get_project_status",
"mcp__project-planner__get_next_tasks",
"mcp__project-planner__get_project_roadmap",
"mcp__project-planner__get_tasks",
"mcp__project-planner__add_session_summary",
"mcp__project-planner__update_task_status",
"mcp__project-planner__add_note_to_task"
]
}
Manual Setup
Prefer to edit .mcp.json yourself?
Local mode (SQLite — recommended to start)
{
"mcpServers": {
"project-planner": {
"command": "npx",
"args": ["-y", "@proplandev/mcp"]
}
}
}
Data lives in .project-planner/db.sqlite in your project. Nothing leaves your machine.
Cloud mode (syncs to the web dashboard)
{
"mcpServers": {
"project-planner": {
"command": "npx",
"args": ["-y", "@proplandev/mcp"],
"env": {
"MCP_TOKEN": "your-mcp-token"
}
}
}
}
Get your MCP_TOKEN from the dashboard Settings page.
Project Structure
mcp-server/
├── cli.js # Entry point — routes init vs MCP server
├── index.js # MCP server — all tool registrations
├── bin/
│ └── init.js # Interactive setup wizard
├── adapters/
│ ├── SqliteAdapter.js # Local SQLite storage
│ └── BackendApiAdapter.js# Cloud API storage
├── tools/ # One file per MCP tool (24 tools)
├── lib/
│ └── fileAnalyzer.js # Structural code analyzer (JS/TS/Python/Go/Rust)
└── tests/ # Jest test suite — 199 tests
Requirements
- Node.js 18+
- Claude Code (or any MCP-compatible client)
- For cloud mode: a free account at project-planner-7zw4.onrender.com
License
Elastic License 2.0 (ELv2) · Built by Solomon Agyire
推荐服务器
Baidu Map
百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
Playwright MCP Server
一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。
Magic Component Platform (MCP)
一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。
Audiense Insights MCP Server
通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。
VeyraX
一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。
graphlit-mcp-server
模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。
Kagi MCP Server
一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。
e2b-mcp-server
使用 MCP 通过 e2b 运行代码。
Neon MCP Server
用于与 Neon 管理 API 和数据库交互的 MCP 服务器
Exa MCP Server
模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。