Reference
Configuration
Configuration options for Workflow MCP
Configuration
Workflow MCP is configured through environment variables and command configuration.
Command Configuration
Each command has built-in configuration:
| Command | File Prefix | Output Directory | Entry Prefix | Default DPS |
|---|---|---|---|---|
/research | RESEARCH | projects/research/ | RES | 4 |
/plan | PLAN | projects/plans/ | PLN | 1 |
/implement | IMPL | projects/implementations/ | IMP | 1 |
/review | REVIEW | projects/reviews/ | GAP-RP | 3 |
/debug | DEBUG | projects/debug/ | DBG | 4 |
/refactor | RESEARCH_REFACTOR | projects/research/ | RES-REFACTOR | 3 |
/archive | ARCHIVE | projects/.archived/ | ARC | 0 |
Project Structure
Session files are created relative to the working directory:
your-project/
+-- .claude/
| +-- workflow/
| +-- .session-state.json # Current session state
+-- projects/
+-- research/
| +-- RESEARCH_TOPIC_DATE.md
+-- plans/
| +-- PLAN_TOPIC_DATE.md
+-- implementations/
| +-- IMPL_TOPIC_DATE.md
+-- reviews/
| +-- REVIEW_TOPIC_DATE.md
+-- debug/
| +-- DEBUG_TOPIC_DATE.md
+-- .archived/
+-- archive-logs/Input Files
Some commands read input from previous phases:
| Command | Input Directories |
|---|---|
/plan | research, interactions, backlog |
/implement | plans, research |
/review | research, plans, implementations |
/debug | research, plans, implementations |
/refactor | archived/completed, implementations |
/archive | research, plans, implementations, reviews |
Customizing Configuration
Configuration is built into the package. Future versions may support external configuration files or environment variable overrides for these settings.