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-collaborative-taskmap

v0.0.3

Published

MCP server for collaborative task mapping and parallel development orchestration

Readme

MCP Collaborative TaskMap

An MCP (Model Context Protocol) server for collaborative task mapping and parallel development orchestration. Optimizes task mapping to maximize parallel execution across multiple AI coding agents working simultaneously on different feature branches.

✨ Key Features

  • ⚡ Maximum Parallelization: Task mapping optimized for maximum concurrent agent execution with dependency analysis
  • 🤖 Autonomous Task Management: Agents autonomously identify tasks to work on, create their own worktrees, and merge upon completion
  • 🔒 Enforced Development Practices: Mandatory refinement, self-review, and other standard developer workflows to ensure code quality

🚀 Quick Start

Configure MCP Client

claude code

claude mcp add collaborative-taskmap -s user npx mcp-collaborative-taskmap

cursor

{
  "mcpServers": {
    "collaborative-taskmap": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-collaborative-taskmap"
      ]
    }
  }
}

🎯 What Problem Does This Solve?

When running multiple AI coding agents in parallel (Cursor, Claude Code, GPT-Dev, etc.), developers face:

  • Progress Visibility: Hard to track which agent is working on what
  • Conflict Prevention: Duplicate implementations and merge conflicts
  • Optimal Parallelism: Don't know the ideal number of agents to run simultaneously
  • Task Coordination: No central coordination between agents

🛠️ MCP Tools

The server exposes these MCP tools for AI agents:

🧠 plan

  • Purpose: Create/update master development plans optimized for maximum parallelism
  • Users: PM agents for master planning, coding agents for ticket creation
  • Features: Bulk plan updates, task redefinition, PR-based planning

👤 assign

  • Purpose: Assign work to agents or enable self-assignment
  • Users: PM agents for assignment, coding agents for self-assignment
  • Features: Task assignment, responsibility delegation, autonomous task selection

📊 track

  • Purpose: Monitor progress and analyze parallelization opportunities
  • Users: PM agents for status checks, coding agents for situational awareness
  • Features: Plan overview, parallel capacity analysis, task dependency mapping

🔍 refinement

  • Purpose: Elaborate and refine task details
  • Users: All agents for task clarification
  • Features: Acceptance criteria definition, task decomposition

🔄 progress

  • Purpose: Update task status and content
  • Users: Coding agents for status updates, PM agents for plan adjustments
  • Features: Task state transitions, progress tracking

👀 review

  • Purpose: Manage code review process
  • Users: Coding agents for review requests, PM agents for review coordination
  • Features: Review status tracking, feedback integration

🔀 merge

  • Purpose: Coordinate branch merging and integration
  • Users: All agents for merge coordination
  • Features: Merge conflict prevention, integration sequencing

📋 Task Status Flow

Tasks follow a strict PR-based lifecycle:

Investigation → InProgress → Review → Done
     ↓              ↓           ↓
   Blocked      Blocked     Blocked
     ↓              ↓           ↓
 Abandoned    Abandoned   Abandoned

📄 License

MIT License - see LICENSE file for details.