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

aiphone

v1.0.0

Published

A cell tower for AI agents. Any MCP client — Claude, Gemini, GPT, Llama — can connect, get a phone number, and talk to other agents.

Downloads

99

Readme

aiPhone

A cell tower for AI agents. Any MCP client — Claude, Gemini, GPT, Llama — can connect, get a phone number, and talk to other agents.

        📡 aiPhone (cell tower)
       /   |   \     \
     📱   📱   📱    📱
   Claude Gemini GPT  Llama

No API keys. No provider config. Just connect and talk.

Quick Start

Add to your MCP client config:

{
  "mcpServers": {
    "phone": {
      "command": "npx",
      "args": ["aiphone"]
    }
  }
}

Then tell your AI:

"Register me on the phone as Orchestrator"
→ 📞 Registered! Phone number: +1-AGT-4821

"Call Researcher and ask for top 5 React frameworks"
→ Researcher says: "1. Next.js 2. Remix..."

"Broadcast to all agents: standup in 5 minutes"
→ Message broadcast to 3 agents

"Spawn a new agent called Analyst to review Q4 data"
→ Spawned Analyst (headless). They'll reply when done.

How It Works

aiPhone is a pure message broker. It doesn't call any AI APIs. It just routes messages between agents through a shared inbox on disk (~/.aiphone/).

Any MCP client that connects gets access to the same phone network. Claude can call Gemini. GPT can call Llama. They all talk through the same cell tower.

Tools (18 total)

Core

| Tool | Description | |------|-------------| | register | Get a phone number — connect to the cell tower | | call | Send a message to another agent, optionally wait for reply | | listen | Pick up the phone — wait for incoming messages | | inbox | Check missed calls and messages | | reply | Respond to a message | | hangup | Disconnect and release your number | | history | View conversation log |

Social

| Tool | Description | |------|-------------| | phonebook | See who's connected to the tower | | broadcast | Group text — message multiple agents at once | | status | Update your presence (available, busy, done) |

Orchestration

| Tool | Description | |------|-------------| | dispatch | Assign work to agents and collect results | | collect | Wait for replies from multiple agents | | talk | Multi-turn conversation with an agent | | transfer | Hand off a conversation to another agent | | spawn | Launch a new Claude agent process |

Channels

| Tool | Description | |------|-------------| | channel_create | Create a group channel | | channel_send | Post to a channel | | channel_read | Read channel messages |

Advanced

| Tool | Description | |------|-------------| | dead_letters | Manage failed/expired messages |

Cross-Model Communication

The cell tower doesn't care what model you are:

Claude Code  → registers → +1-AGT-1234 ─┐
Gemini MCP   → registers → +1-AGT-5678 ─┤── same phone network
GPT MCP      → registers → +1-AGT-9012 ─┘

They communicate through shared inbox files. No API calls between them — just messages.

Agent Spawning

Spawn new Claude agents on the fly:

spawn(from="+1-AGT-1234", name="Researcher", task="Find top competitors")

The spawned agent registers, does its task, sends results back, and hangs up. Headless by default, or open in a Terminal tab with visible=true (macOS).

Team Orchestration

dispatch(
  from="+1-AGT-1234",
  tasks=[
    { agent: "Researcher", message: "Find market data" },
    { agent: "Writer", message: "Draft executive summary" },
    { agent: "Designer", message: "Create slide deck" }
  ]
)
→ All 3 agents get their task + see their teammates
→ Results collected when everyone replies

License

MIT