mcp-graph-workflow
by DiegoNogueiraDev·★ 41·Score 45
MCP server that transforms PRD documents into persistent task graphs for agentic workflows.
Overview
mcp-graph-workflow is a local-first CLI tool that creates SQLite-based task graphs from PRD text files. It provides 54 MCP tools to manage the task lifecycle through 9 phases from ANALYZE to LISTENING. The solution addresses common AI coding problems by providing persistent memory, structured workflows, and traceability without requiring cloud dependencies or API keys.
Try asking AI
After installing, here are 5 things you can ask your AI assistant:
When to choose this
Choose this when developing AI agents that need persistent task management and validation based on PRDs, especially when working offline or with strict privacy requirements.
When NOT to choose this
Avoid this if you need cloud-based collaboration features, as it's designed for local-first workflows with zero cloud dependencies.
Tools this server exposes
5 tools extracted from the READMEimport_prdReads PRD text file and creates tasks with acceptance criteria in the graph
start_taskStarts working on a specific task from the graph with compressed context
finish_taskFinishes a task after validating done criteria and updates status
nextGets the next available task for the agent to work on
statusShows the current state of the task graph
Comparable tools
Installation
npm install -g @mcp-graph-workflow/mcp-graphAdd to your project's .mcp.json (Claude Code, Cursor, Copilot):
{
"mcpServers": {
"mcp-graph": {
"command": "npx",
"args": ["-y", "@mcp-graph-workflow/mcp-graph"]
}
}
}Initialize in your project:
mcp-graph initFAQ
- Does this require cloud services or API keys?
- No, it's designed to be 100% local with zero cloud dependency. LLM integration is opt-in.
- Can this integrate with my existing IDE?
- Yes, it provides 130+ REST endpoints for IDE integration and includes a React dashboard for visualization.
Compare mcp-graph-workflow with
Last updated · Auto-generated from public README + GitHub signals.