MCP Catalogs
Home

mcp-graph-workflow

by DiegoNogueiraDev·41·Score 45

MCP server that transforms PRD documents into persistent task graphs for agentic workflows.

developer-toolsai-llmknowledge-graph
8
Forks
13
Open issues
this month
Last commit
2d ago
Indexed

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:

you:AI development teams using PRDs to maintain structured workflow traces
you:Agentic systems that need persistent memory across sessions
you:TDD-driven development with automated task progression
you:Does this require cloud services or API keys?
you:Can this integrate with my existing IDE?

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 README
  • import_prd

    Reads PRD text file and creates tasks with acceptance criteria in the graph

  • start_task

    Starts working on a specific task from the graph with compressed context

  • finish_task

    Finishes a task after validating done criteria and updates status

  • next

    Gets the next available task for the agent to work on

  • status

    Shows the current state of the task graph

Comparable tools

agentic-workflowstask-mcpgraph-mcp

Installation

npm install -g @mcp-graph-workflow/mcp-graph

Add 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 init

FAQ

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

GitHub →

Last updated · Auto-generated from public README + GitHub signals.