Skip to content

Quick Start

Get Workflow MCP running in your project in just a few minutes.

  • Node.js 18 or later
  • pnpm, npm, or yarn
  • Claude Desktop or another MCP client
  1. Install the stdio package globally:

    Terminal window
    npm install -g @blackmesa/workflow-mcp-stdio
  2. Configure Claude Desktop by adding to .mcp.json:

    {
    "mcpServers": {
    "workflow": {
    "command": "npx",
    "args": ["@blackmesa/workflow-mcp-stdio"],
    "cwd": "/path/to/your/project"
    }
    }
    }
  3. Restart Claude Desktop to load the new server.

Once installed, you can start using workflow commands with Claude:

/workflow:research MY-TOPIC

Claude will:

  1. Create a session log file
  2. Begin gathering information
  3. Log findings with Entry-IDs
  4. Generate a handoff for the next phase

During a session, Claude uses the MCP tools to log structured entries:

mcp__workflow__log_entry({
tag: "finding",
fields: {
title: "Key Architecture Decision",
type: "Technical",
content: "The system uses event sourcing...",
evidence: "src/events/store.ts:42"
}
})
/workflow:end

This generates a summary and handoff message for the next phase.

CommandPurposeDefault DPS
/workflow:researchGather information4 (flexible)
/workflow:planDesign implementation1 (strict)
/workflow:implementWrite code1 (strict)
/workflow:reviewIdentify gaps3 (moderate)
/workflow:debugRoot cause analysis4 (flexible)