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

dflowmcp

v1.0.0

Published

DevFlow Command Center MCP Server - Agent integration for Claude Code

Readme

dflowmcp

DevFlow Command Center MCP Server - Agent integration for Claude Code.

npm version License: MIT

This MCP (Model Context Protocol) server enables Claude Code to interact with DevFlow Command Center, providing real-time task management and project context synchronization.

Installation

npm install -g dflowmcp

Quick Setup

The easiest way to configure is using dflowcli:

npm install -g dflowcli
cd your-project
devflow init

This auto-configures Claude Code's MCP settings.

Manual Configuration

Add to your Claude Code MCP config (~/.claude.json or project-level .mcp.json):

{
  "mcpServers": {
    "devflow": {
      "command": "npx",
      "args": ["dflowmcp"],
      "env": {
        "DEVFLOW_PROJECT_ID": "your-project-uuid",
        "DEVFLOW_API_URL": "https://devflow.now/api"
      }
    }
  }
}

Available Tools

Core Task Management

| Tool | Description | |------|-------------| | get_active_task | Get the currently active task from Command Center | | start_task | Start a task (PLANNED/BLOCKED → ACTIVE) | | complete_task | Complete a task with summary (ACTIVE → DONE) | | block_task | Block a task with reason (ACTIVE → BLOCKED) | | log_progress | Log progress updates visible in UI | | add_task_note | Add structured notes (constraint, decision, warning) |

Project Context

| Tool | Description | |------|-------------| | get_project_execution_state | Get full project state: deliverables, tasks, notes | | get_project_activity | Get recent activity events (paginated) | | sync_project_context | Sync all context to local markdown files |

Planning

| Tool | Description | |------|-------------| | create_execution_proposal | Create a proposal with deliverables/tasks for review | | commit_execution_proposal | Commit a proposal (humans only - will fail for agents) |

Advanced

| Tool | Description | |------|-------------| | wait_for_task_activation | Long-poll waiting for task activation (max 120s) |

Workflow

  1. On startup: Claude Code calls get_active_task to check for assigned work
  2. During work: Use log_progress to report updates visible in Command Center
  3. On completion: Call complete_task with a summary of what was accomplished
  4. If blocked: Call block_task with the reason

Context Sync

The MCP server can sync project context to local files:

.devflow-context/
├── ACTIVE.md      - Current task details (auto-synced)
├── PROJECT.md     - PRD, milestones, artifacts
├── CLIENT.md      - Client info, communications
├── EXECUTION.md   - All deliverables and tasks
├── DECISIONS.md   - Decision log
└── ACTIVITY.md    - Recent activity

Environment Variables

| Variable | Required | Description | |----------|----------|-------------| | DEVFLOW_PROJECT_ID | Yes | Your DevFlow project UUID | | DEVFLOW_API_URL | No | API URL (default: https://devflow.now/api) | | DEVFLOW_AGENT_TOKEN | No | Auth token (optional) |

Security & Permissions

Agent Permissions

Agents can:

  • ✅ Read project execution state
  • ✅ Create execution proposals
  • ✅ Start, block, and complete tasks
  • ✅ Add memory notes to tasks
  • ✅ Read activity streams

Agents CANNOT:

  • ❌ Commit execution proposals (HUMAN only)
  • ❌ Access projects outside their workspace
  • ❌ Delete or modify historical activity events

Why? This ensures human oversight of project planning. Agents propose, humans approve.

Real-Time Synchronization

All changes made by agents are instantly visible in:

  • Web UI (devflow.now/command-center)
  • CLI (devflow watch)
  • Other agents (via MCP)

This enables seamless human-agent collaboration.

Links

License

MIT