Skip to main content
Glama
CynaCons

powerplan

by CynaCons

powerplan

PLAN.md as the operational backbone of agentic development.

powerplan is a standalone MCP server that gives coordinators and worker agents a human-language API over your project’s PLAN.md: show progress, create iterations, complete tasks, keep the header truthful — without freeform file thrash.

Server name

powerplan

Status

v0.2.2 — create_plan, mutations, lifecycle, check_plan (PLAN.md)

PRD

PRD.md

Site

GitHub Pages

Pairs with

PowerSpawn (optional submodule)


Why

Agents often edit PLAN.md by hand. Headers drift, “COMPLETE” gets stamped without proof, and multi-agent swarms step on each other. powerplan is the single writer: tolerant reader, surgical writer, optional [agent: …] tags.


Related MCP server: plane-mcp-server

Install

Option A — clone + editable install

git clone https://github.com/CynaCons/powerplan.git
cd powerplan
pip install -e ".[dev]"

Option B — via PowerSpawn (submodule)

Projects that already use PowerSpawn can pull powerplan automatically:

git submodule update --init --recursive   # if PowerSpawn vendors powerplan/

Then point MCP at powerplan/powerplan_server.py or python -m powerplan with PYTHONPATH including the submodule root.

Option C — path-only (no install)

python /path/to/powerplan/powerplan_server.py

MCP registration

Claude Code / project .mcp.json

{
  "mcpServers": {
    "powerplan": {
      "command": "python",
      "args": ["-m", "powerplan"],
      "env": {
        "PYTHONIOENCODING": "utf-8",
        "PYTHONUNBUFFERED": "1"
      }
    }
  }
}

Grok (~/.grok/config.toml or project config)

[mcp_servers.powerplan]
command = "python"
args = ["-m", "powerplan"]
env = { PYTHONUNBUFFERED = "1" }
enabled = true

Alongside PowerSpawn

{
  "mcpServers": {
    "powerplan": {
      "command": "python",
      "args": ["-m", "powerplan"]
    },
    "powerspawn": {
      "command": "python",
      "args": ["-m", "powerspawn.mcp_server"]
    }
  }
}

Register both as separate servers — nesting in a monorepo does not merge MCPs.


Tools (v0.2.2)

Every tool accepts optional plan_path (relative or absolute). Default: walk up from cwd to the nearest PLAN.md.

Tool

Behavior

create_plan

Bootstrap ./PLAN.md (or plan_path) when missing; force to overwrite

get_current_iteration

Preferred for agents — scoped JSON for current work

get_iteration

JSON for one version (tasks, progress)

list_iterations / find_task / get_backlog

Navigate without full-file reads

create_major / create_iteration / add_task / …

Surgical mutations

complete_task / reopen_task

Checkbox updates; optional [agent: id]

start_iteration / close_iteration

ACTIVE/current vs COMPLETE lifecycle

check_plan

Structure lint

show_plan / show_current_iteration

Compact human skim (not a full dump)

Agent rule: prefer get_current_iteration / get_iteration over reading all of PLAN.md. If no plan exists → create_plan first.


Managed plan format

Construct

Pattern

Major

## vX.Y — Title

Iteration

### vX.Y.Z — Title

Goal

**Goal:** …

Tasks

- [ ] / - [x]

Backlog

## Backlog

Phase-like headers and other prose are preserved as opaque blocks (tolerant reader). See PRD for principles (single writer, no evidence journal in the tool).


Development

pip install -e ".[dev]"
pytest -q
python -m powerplan   # stdio MCP (use with an MCP client)

Landing page:

cd site && npm ci && npm run dev

License

MIT — see LICENSE.

A
license - permissive license
-
quality - not tested
A
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

  • MCP server for generating rough-draft project plans from natural-language prompts.

  • MCP server for AI agents to plan, verify, and deploy Cloudflare-native apps.

  • A MCP server built for developers enabling Git based project management with project and personal…

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/CynaCons/powerplan'

If you have feedback or need assistance with the MCP directory API, please join our Discord server