Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"io-github-vncsleal-openplan": {
"args": [
"-y",
"@openplan/mcp"
],
"command": "npx"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
Waze for AI agents — plan, track, and learn from software projects.
Run this in your terminal to verify the server starts. Then let us know if it worked — your result helps other developers.
npx -y '@openplan/mcp' 2>&1 | head -1 && echo "✓ Server started successfully"
After testing, let us know if it worked:
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
Checked @openplan/mcp against OSV.dev.
Click any tool to inspect its schema.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in ai-ml
Dynamic problem-solving through sequential thought chains
Persistent memory using a knowledge graph
An autonomous agent that conducts deep research on any data using any LLM providers
🌊 The leading agent orchestration platform for Claude. Deploy intelligent multi-agent swarms, coordinate autonomous workflows, and build conversational AI systems. Features enterprise-grade architecture, distributed swarm intelligence, RAG integration, and native Claude Code / Codex Integration
MCP Security Weekly
Get CVE alerts and security updates for io.github.vncsleal/openplan and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
Waze for AI agents — plan, track, and learn from software projects.
An MCP server that helps AI agents decompose goals into costed execution plans, checkpoint progress with deviation tracking, and learn from past project data.
npx @openplan/mcp
The server auto-creates its config and SQLite database on first run — no setup needed.
Add it to your MCP client:
opencode.json:
{
"mcp": {
"openplan": {
"type": "local",
"command": ["npx", "-y", "@openplan/mcp"]
}
}
}
claude_desktop_config.json:
{
"mcpServers": {
"openplan": {
"command": "npx",
"args": ["-y", "@openplan/mcp"]
}
}
}
Or run openplan install to auto-detect and configure both.
| Tool | Description |
|---|---|
plan(goal, context?, replan?, project?) | Decompose a goal into costed phases with estimates |
checkpoint(phase?, actual_cost?, correct?, route_id?, project?) | Record phase cost, correct data, or check status |
review(route_id?, project?) | Session retrospective with deviations, accuracy, learning |
| URI | Description |
|---|---|
openplan://{project}/route | Current route state and phase progress |
openplan://profiles | Personal bias and accuracy by action |
openplan://sync-status | Mesh sync health and pending checkpoints |
openplan # Start MCP server (stdio mode)
openplan install # Auto-detect and install in MCP clients
openplan auth # Authenticate with Mesh via GitHub OAuth
openplan subscribe # Subscribe to Pro (Stripe Checkout)
openplan portal # Manage subscription (Stripe Customer Portal)
openplan account # Show identity, API key, subscription
openplan config # View current configuration
openplan mesh [on|off] # Show or toggle Mesh sync
openplan status # List routes for a project
openplan log # Show checkpoint trail
openplan export # Export calibration data (Pro)
openplan completion # Generate shell completion script
openplan doctor # Check system health and diagnose issues
Use --json on account, config, status, log, mesh for structured output. Auth supports --no-browser, --clipboard, --with-token <key>, and --debug.
core/ Domain types, pure logic, typed ports
handlers/ MCP tool handlers — validation, wiring
adapters/ Mesh sync, cost probes, config loaders
db/ Drizzle schema, SQLite, DataStore implementation
One rule: Core never imports adapters or handlers. The DataStore port insulates core from Drizzle.
npm install
npm run dev # tsx watch
npm test # vitest (config at vitest.config.ts)
npm run test:e2e # end-to-end against compiled dist/
npm run build # tsc
npm run lint # biome check
GitHub Actions runs lint, test, build on every push/PR. Publish to npm happens automatically on version tags (v*).
better-sqlite3 / Drizzle ORM — 7 tables, local-firstgithub.com/vncsleal/openplan-api) — cross-session cost learningcreateLogger(module) with [openplan:module] prefixLicense: MIT