🎩 You're Invited:Meet the Socket team at Black Hat in Las Vegas, August 3-6.RSVP
Sign In

@openplan/mcp

Package Overview
Dependencies
Maintainers
1
Versions
22
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@openplan/mcp

Waze for AI agents — plan, track, and learn from software projects.

Source
npmnpm
Version
0.1.16
Version published
Weekly downloads
37
-53.75%
Maintainers
1
Weekly downloads
 
Created
Source

OpenPlan MCP Server

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.

Quick Start

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.

Tools (3)

ToolDescription
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

Resources (3)

URIDescription
openplan://{project}/routeCurrent route state and phase progress
openplan://profilesPersonal bias and accuracy by action
openplan://sync-statusMesh sync health and pending checkpoints

CLI

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       # Stripe Checkout for Pro subscription
openplan account         # Show identity, API key, subscription
openplan config show     # 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)

Use --json on account, config, status, log for structured output. Auth supports --no-browser, --clipboard, --with-token <key>, and --debug.

Architecture

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.

Stack

  • FastMCP framework over @modelcontextprotocol/sdk — Zod schemas for automatic input validation, npx fastmcp dev for testing
  • SQLite via better-sqlite3 — local-first, fully offline
  • Mesh API (Python/FastAPI on Fly.io) — cross-session cost learning with MAD filter, Bayesian shrinkage, per-key rate limiting
  • 7 tables: routes, route_phases, calibration_events, correction_events, cost_baselines, completed_sequences, schema_version
  • Anchor file (.openplan) at project root for multi-session discovery

Development

npm install
npm run dev        # tsx watch
npm test           # vitest
npm run test:e2e   # end-to-end against compiled dist/
npm run build      # tsc
npm run lint       # biome

License: MIT

Keywords

mcp

FAQs

Package last updated on 19 Jun 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts