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

a2ald

v0.2.7

Published

A2AL daemon — decentralized agent networking (local REST+MCP including fetch/tunnel endpoints)

Readme

a2ald

npm distribution of the A2AL daemon (a2ald): decentralized agent networking for AI agents.

The main package pulls in the correct platform binary via optional dependencies (@a2al/a2ald-*). Install once; the right binary is selected for Linux, macOS, or Windows (x64/arm64 where applicable).

MCP integration

Lets AI agents find and connect to other agents directly—no central server, registry, or pre-configured endpoint required.

Add to your MCP client config (Cursor, Claude Desktop, Windsurf, Cline, etc.):

{
  "mcpServers": {
    "a2al": {
      "command": "a2ald",
      "args": ["--mcp-stdio"]
    }
  }
}

If a2ald is not on PATH, use npx -y a2ald --mcp-stdio or an absolute path to the binary. For daily use, install as a service and connect via "url": "http://127.0.0.1:2121/mcp/".

Always call a2al_status first and wait for network_ready: true before network operations.

Install guide: doc/llms-install.md · Full setup: doc/mcp-setup.md

Install

npm install a2ald

Programmatic use

const { getBinaryPath } = require("a2ald");
const bin = getBinaryPath();
// spawn or exec `bin` as your process needs

CLI

After install, the a2ald binary is available where npm links local binaries (e.g. npx a2ald or your node_modules/.bin).

npx a2ald --help

What a2ald provides

Once running, the daemon exposes a local REST API on http://127.0.0.1:2121. Key endpoints:

| Endpoint | Description | |----------|-------------| | POST /fetch/{aid} | Send an HTTP request to a remote agent over encrypted QUIC; daemon handles transport internally | | POST /connect/{aid} | One-shot tunnel: returns a local TCP address for a single session | | POST /tunnel/{aid} | Persistent multiplexed tunnel: multiple concurrent TCP connections over one QUIC pool | | POST /resolve/{aid} | Look up a remote agent's current endpoints |

A built-in MCP server exposes all capabilities as tools for AI agents. Full API reference: doc/api-reference.md

For CLI usage outside Node, see the a2al tool in the same repository (a2al get, a2al post, a2al tunnel commands).

Official websites

License

MPL-2.0