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

dev-team-mcp-server

v0.1.3

Published

Multi-agent development team system for Claude Code — orchestrate PM, Leader, and Member roles via MCP with WezTerm integration

Readme

dev-team-mcp-server

npm version License: MIT

Multi-agent development team system for Claude Code — orchestrate PM, Leader, and Member roles via MCP with WezTerm integration.

Multiple Claude Code instances work as a "development team" with a hierarchical structure (PM → Leader → Members), event-driven file-based communication, and zero API consumption during idle.

Prerequisites

  • Node.js 18+
  • WezTerm 20230326+ (terminal multiplexer)
  • Claude Code CLI v2.1.0+
  • Windows OS

Install

npm install -g dev-team-mcp-server

Quick Start

1. Initialize project

dev-team init /path/to/your-project

This creates the .dev-team/ directory structure with workspace configurations.

2. Configure MCP

Add to your ~/.mcp.json:

{
  "mcpServers": {
    "dev-team": {
      "command": "dev-team-mcp-server",
      "args": []
    }
  }
}

3. Start the team

dev-team start /path/to/your-project "Implement user authentication"

This opens WezTerm panes for each role (PM, Leader, Member-01, Member-02) and starts the team session.

4. Manage the team

# Add members
dev-team add-member /path/to/your-project --count 1

# Remove members
dev-team remove-member /path/to/your-project --count 1

# Stop the team
dev-team stop /path/to/your-project

Environment Variables

Set automatically by dev-team start. Manual configuration is not required.

| Variable | Description | Example | |----------|-------------|---------| | DEV_TEAM_ROLE | Agent role | pm, leader, member-01 | | DEV_TEAM_PROJECT_PATH | Project path | /path/to/project | | DEV_TEAM_LOG_LEVEL | Log level (optional) | debug, info, warn, error |

Tools

Basic Operations

| Tool | Who | Description | |------|-----|-------------| | check_queue | All | Check task queue for incoming messages | | send_task | All (restricted) | Send task/message to another role | | get_dashboard | All | Get project progress dashboard | | health_check | All | Check system status |

Task Management

| Tool | Who | Description | |------|-----|-------------| | assign_task | Leader | Assign structured task to a member | | distribute_tasks | Leader | Distribute multiple subtasks at once | | submit_plan | Member | Submit implementation plan for review | | approve_plan | Leader | Approve member's plan | | reject_plan | Leader | Reject member's plan with feedback | | submit_test | Member | Submit test code for review (strict mode) | | approve_test | Leader | Approve member's test code | | reject_test | Leader | Reject member's test code | | update_task_status | PM, Leader | Update task status |

Backlog

| Tool | Who | Description | |------|-----|-------------| | add_backlog | PM | Add task to backlog | | get_backlog | All | Get backlog task list | | update_backlog | PM | Update backlog task status |

Memory & Context

| Tool | Who | Description | |------|-----|-------------| | save_memory | All | Save decisions and notes | | recall_memory | All | Search and retrieve memories | | get_project_context | All | Get project context | | update_project_context | PM, Leader | Update project context |

Approval

| Tool | Who | Description | |------|-----|-------------| | request_approval | PM | Request approval from user | | process_approval | PM | Process approval request |

Configuration

| Tool | Who | Description | |------|-----|-------------| | configure_modes | PM | Configure review mode and task split approval |

Member Management

| Tool | Who | Description | |------|-----|-------------| | request_member_increase | Leader | Request member increase | | request_member_decrease | Leader | Request member decrease |

Agent Control

| Tool | Who | Description | |------|-----|-------------| | compact_agent | PM, Leader | Send /compact to a role | | clear_agent | PM, Leader | Send /clear to a role | | compact_all | PM, Leader | Send /compact to all roles | | archive_all_tasks | PM | Archive all tasks |

CLI Commands

| Command | Description | |---------|-------------| | dev-team init [path] | Initialize project structure | | dev-team start <path> [task] | Start team session | | dev-team stop <path> | Stop team session | | dev-team add-member <path> | Add members to session | | dev-team remove-member <path> | Remove members from session | | dev-team --version | Show version |

License

MIT

Links