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

@vxavierr-mindo/teamsmcp

v1.0.2

Published

Multi-agent orchestration MCP server — discovers and spawns project agents in isolated sessions

Readme

Teams MCP

Multi-agent orchestration MCP server for Claude Code. Discovers agent definitions in your project and spawns them in isolated sessions — not incrementally in your current context.

Quick Start

npx teamsmcp init    # auto-registers via `claude mcp add`
# Restart Claude Code

Or register manually:

claude mcp add teamsmcp -- npx -y teamsmcp@latest serve

What It Does

  • Auto-discovers agent .md files in agents/, .agents/, .claude/agents/
  • Spawns agents in isolated sessions via Claude Code's Agent tool — clean context every time
  • 12 built-in AIOX agents available out of the box (dev, qa, devops, architect, etc.)
  • AIOX framework integration when .aiox-core/ is detected — full authority enforcement, 100+ task aliases

Usage

Generic (any project)

teams_discover()                                    # List available agents
teams_run(agent: "reviewer", task: "review auth")   # Get prompt for isolated spawn
teams_prompt(agent: "reviewer")                     # Raw prompt only

AIOX mode (when .aiox-core/ exists)

aiox(task: "develop", story: "path/to/story.md")
aiox(task: "qa-gate", story: "path/to/story.md")
aiox(task: "push")

Agent File Format

Place .md files in agents/ (or .agents/, .claude/agents/):

---
name: reviewer
description: Code review specialist
model: sonnet
tools: [Read, Grep, Glob]
---
You are a code reviewer. Analyze code for bugs, security issues...

Frontmatter is optional. Without it, the filename becomes the agent name.

Built-in Agents (AIOX)

| Name | Persona | Domain | Model | |------|---------|--------|-------| | dev | Dex | Implementation, debugging, tests | sonnet | | qa | Quinn | Code review, QA gates, verdicts | sonnet | | devops | Gage | git push, PRs, CI/CD, releases | sonnet | | architect | Aria | System architecture, tech selection | opus | | pm | Morgan | PRDs, epics, requirements | opus | | po | Pax | Story validation, backlog | sonnet | | sm | River | Story creation | sonnet | | analyst | Atlas | Research, brainstorming | opus | | data-engineer | Dara | Schema, migrations, RLS | sonnet | | ux-design-expert | Uma | Wireframes, UI analysis | sonnet | | squad-creator | Craft | Agent squad design | sonnet | | aiox-master | Orion | Orchestration, routing | opus |

CLI Commands

teamsmcp init     # Configure Teams MCP in current project
teamsmcp serve    # Start MCP server (stdio)
teamsmcp status   # Show engine mode and stats

Prerequisites

  • Node.js >= 18
  • Build tools for native modules (better-sqlite3):
    • macOS: Xcode Command Line Tools
    • Linux: build-essential
    • Windows: Visual Studio Build Tools

License

MIT