@godpowers/mcp
v3.14.0
Published
Read-only MCP server for Godpowers runtime status, routing, gates, artifact linting, and requirement tracing.
Maintainers
Readme
@godpowers/mcp
- [DECISION]
@godpowers/mcpis the first-party read-only MCP companion package for Godpowers. - [DECISION] The main
godpowerspackage stays dependency-free at runtime, and the MCP SDK dependency lives only in this companion package. - [DECISION] Version 3.14.0 exposes eight read-only tools:
status,next,gate_check,lint_artifact,trace_requirement,work_report,route, andverification_history. - [DECISION] Mutation tools are intentionally absent through the 3.14.0 release.
Install
npm install -g godpowers @godpowers/mcpRun
godpowers-mcp serve --project=.Codex Setup
godpowers-mcp setup --host=codex --project=.
godpowers-mcp setup --host=codex --project=. --write- [DECISION] The first command prints a registration plan without writing files.
- [DECISION] The second command writes a managed
[mcp_servers.godpowers]block to~/.codex/config.toml. - [DECISION] No automatic host registration runs during package install.
Tool Boundary
- [DECISION]
statuswrapslib/dashboard.jsand returns rendered dashboard text plus structured status. - [DECISION]
nextwrapslib/dashboard.jsand returns the recommended next command from disk state. - [DECISION]
gate_checkwrapslib/gate.jsand returns the executable tier gate verdict. - [DECISION]
lint_artifactwrapslib/artifact-linter.jsfor one file inside the project root. - [DECISION]
trace_requirementwrapslib/requirements.jsand returns requirement, roadmap, linkage, and ledger evidence. - [DECISION]
work_reportwrapslib/work-report.jsand returns the verification play-by-play (read-only; never advances the report cursor). - [DECISION]
routewrapslib/quarterback.jsand classifies a prompt into an entry play without mutating state. - [DECISION]
verification_historywrapslib/evidence.jsand returns ledger records, optionally filtered to one substep.
