npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@mcp-graph-workflow/mcp-graph

v13.23.2

Published

AI-Driven Software Engineering, local-first. PRD vira grafo persistente, TDD obrigatório, contexto sobrevive ao reload. AGPL v3.

Readme


mcp-graph is an MCP server — a persistent context layer that plugs into the AI coding tool you already use and gives it structured memory, task tracking, and engineering discipline.

The AI does the work. The server keeps it on track.


The problem

Every AI coding session has the same failure modes:

  • The agent forgets — each new chat starts from zero, the plan gets reinvented
  • PRDs become walls of text — nobody re-reads them, the agent improvises
  • No traceability — you can't tell what was done, what's blocked, or why

How it works

mcp-graph runs as an MCP server that your AI coding tool connects to automatically. Once connected, the AI gains access to 54 MCP tools — persistent task graph, compressed context, lifecycle phases, and structured engineering.

You write a PRD. The AI implements it.

PRD → import_prd (MCP) → task graph → start_task → [TDD] → finish_task → done

The AI calls the MCP tools directly. No manual commands needed.

Setup — once per project

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

mcp-graph init generates the connection config for every supported AI tool automatically:

| AI Tool | Config file generated | |---|---| | Claude Code | .mcp.json | | OpenCode | opencode.json | | GitHub Copilot (VS Code) | .vscode/mcp.json | | Cursor | .mcp.json |

Open your AI tool. It connects to the MCP server automatically. No further configuration needed.

Prerequisites: Node.js ≥ 18. No Docker. No LLM API key.

Tell the AI what to do

Once connected, give your AI tool a PRD and a skill:

"Read PRD.md and implement it using /graph-implement"

The AI will:

  1. Call import_prd (MCP) — parses the PRD, creates tasks with acceptance criteria in the graph
  2. Call start_task (MCP) — picks the next task with compressed context (73% fewer tokens)
  3. Follow TDD: write failing test → implement → make it pass
  4. Call finish_task (MCP) — validates 9 Definition-of-Done checks, marks done, suggests next
  5. Repeat until the backlog is empty

Skills — your interface to the AI

Skills are slash commands that trigger the right MCP workflow for each phase:

| You want to... | Skill | |---|---| | Implement the next task | /graph-implement | | Validate what was built | /graph-validate | | Plan a sprint | /graph-plan | | Review before PR | /graph-review | | Import a PRD | /graph-prd |

Skills are installed by mcp-graph init and appear in the autocomplete of your AI tool (type / in Claude Code, OpenCode, or Copilot).

What the AI gains via MCP

| Capability | What it does | |---|---| | Persistent task graph | SQLite local — survives across sessions, never in the cloud | | Compressed context | 73% token reduction per task — RAG (FTS5 + BM25), no external LLM | | 9-phase lifecycle | ANALYZE → DESIGN → PLAN → IMPLEMENT → VALIDATE → REVIEW → HANDOFF → DEPLOY → LISTENING | | DoD automation | 9 checks per task before marking done (AC quality, TDD, no blockers) | | Knowledge store | Captures decisions, patterns, and context for future sessions |

Privacy

Zero telemetry. Zero phone-home. Runs offline after installation.

All data lives in workflow-graph/graph.db — local SQLite, gitignored, never in the cloud.

Documentation

License

AGPL-3.0-or-later — open source with strong copyleft. Proprietary commercial use: commercial license available.