pulse-mcp
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@pulse-mcpStart a new engagement and guide me through the Discovery phase"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
@agentpulselabs/pulse
Portable, contract-enforced build discipline for coding agents.
Pulse is a discipline engine — a phase state machine (Discovery → Stories → Architecture → Build → Deliver)
a pluggable architecture contract + JSON schemas + a validator + a gate runner. It ships the brain; your coding agent (Claude Code, Cursor, Codex, Windsurf, Cline) provides the model, the UI, and the human.
The point: an AI agent driving Pulse produces code that is provably inside your platform's architectural
rules — because "done" is a deterministic gate command (npm run check), and a proposal that breaks an
invariant is rejected by code, not by review.
Formerly the Claude-Code-only "SEAP". Pulse ports the method to any host via MCP + a CLI plugin.
How it works — brain vs. nervous system
@agentpulselabs/pulse (BRAIN, pure) your coding agent (NERVOUS SYSTEM)
· phase state machine · runs the LLM (its model)
· contract (the rules) ── MCP ──▶ · renders progress (native UI)
· schemas + validator ◀── CLI ── · holds the human gate
· gate runner (npm run check) · edits files · owns PM-tool MCPsPulse never calls an LLM. pulse_next emits a work-list (prompts + a JSON schema per task); your agent
runs them on its model; pulse_submit validates the results against the schema and the contract;
pulse_gate locks decisions and advances; pulse_verify runs the gate command. The discipline travels; the
reasoning is the host's.
Related MCP server: ControlKeel
State lives in the repo (.pulse/)
Durable, git-tracked, travels across agents and humans, validatable offline:
.pulse/
pulse.config.json which contract governs + the gate command
engagement.json phase · status
board.json THE project board (machine truth)
BOARD.md rendered kanban (regenerated — don't hand-edit)
STATUS.md one-glance dashboard
sync.json optional PM-tool sync intent (Jira/GitHub/Asana)
decisions/product/ human decisions
decisions/architecture/ platform-dictated ADRs (each cites the invariant)
design/ working design docs (graduate to docs/DESIGN_*.md on gate)Two ways to drive it
1. MCP (primary — every agent): run the pulse-mcp stdio server. Requires the optional peer dep:
npm i @agentpulselabs/pulse @modelcontextprotocol/sdkRegister it with your agent (example — Claude Code .mcp.json):
{ "mcpServers": { "pulse": { "command": "npx", "args": ["pulse-mcp"] } } }Tools: pulse_start · pulse_next · pulse_submit · pulse_gate · pulse_verify · pulse_status · pulse_board_update · pulse_claim · pulse_sync.
2. CLI plugin (fallback): the published agentpulse CLI can install a pulse topic:
agentpulse plugins install @agentpulselabs/cli-plugin-pulse
agentpulse pulse start --requirements "…"(The plugin is a thin shim that imports this core — see the parent design doc §4b.)
The contract is pluggable
// .pulse/pulse.config.json
{ "contract": "agentpulse", "gates": "npm run check && npm run check:types" }contract: "agentpulse"→ the built-in reference contract (10 non-negotiables + 8 invariants + deep checks for table categories, migration-free schema, secrets-in-settings, no-DB-blobs).contract: "generic"→ point at your ownpulse.contract.md+ agatescommand. Pulse enforces schema-validity + the DAG + your gate; add your own deep checks with a JS contract (advanced).
What Pulse guarantees (and what it doesn't)
Guarantees (deterministic): schema validity, contract-invariant compliance, an acyclic work-item DAG, and that "done" = your gate command exited 0. Never delegated to an LLM.
Does NOT guarantee: insight. Reasoning quality is your host model's. On a weak model, Discovery is shallow — Pulse keeps it correct, not brilliant.
Develop
npm test # node --test — pure, no network, no MCP SDK neededThis server cannot be installed
Maintenance
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
- AlicenseAqualityCmaintenanceProvides plan state management and phase gate enforcement for AI development loops. It tracks task progress and coordinates the lifecycle of agents by requiring specific evidence before advancing through development phases.10MIT
- FlicenseAqualityAmaintenanceGovernance/control plane for MCP-enabled coding-agent workflows with validation, findings, approvals, budgets, and proof bundles.5511
- Alicense-qualityDmaintenanceTransforms AI agents into spec-driven product engineers by managing the software project lifecycle through requirements, design, implementation, and archiving phases with state-aware MCP tools.13MIT
- AlicenseCqualityAmaintenanceA disciplined-sprint MCP server for AI coding agents, providing structured sprint management with immutable append-only ledger, programmatic close-gates, and live dashboard.29309Apache 2.0
Related MCP Connectors
Control plane for autonomous software labor. Agents claim objectives over MCP with audit trail.
Preflight, approve, and prove consequential agent actions with signed evidence and x402 tools.
The project brain for AI coding agents — memory, decisions, sprints, knowledge base via MCP.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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/ashishcloud/agentpulse-pulse'
If you have feedback or need assistance with the MCP directory API, please join our Discord server