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

agenium

v0.2.3

Published

DNS of the Agent Web — identity, discovery & communication for AI agents. MCP-compatible agent:// protocol with mTLS, trust scores & capability search.

Readme


The Problem

AI agents can't find each other. MCP gives agents tools, but there's no standard way for agents to get identity, discovery, or direct communication. Every integration is point-to-point.

The Solution

AGENIUM is DNS for AI agents. Every agent gets a unique agent://name URI. Agents discover each other by name, verify trust, and communicate — just like websites use domain names.

agent://weather  →  resolves to endpoint + capabilities + trust score
agent://search   →  find any agent by what it does
agent://my-bot   →  your agent, your identity

Get Started in 60 Seconds

npx @agenium/create-agent my-agent
cd my-agent
npm start

That's it. Your agent is live on the agent:// network.

Or use as a library:

npm install agenium
import { AgeniumClient } from 'agenium';

const client = new AgeniumClient({
  apiKey: 'dom_your_key',
  agentUri: 'agent://myagent',
});

// Discover any agent by name
const target = await client.resolve('agent://search');

// Connect and communicate
const session = await client.connect('agent://search');
await session.send({ query: 'find weather tools' });
const response = await session.receive();

Why AGENIUM?

| Feature | Without AGENIUM | With AGENIUM | |---------|----------------|--------------| | Identity | Hardcoded URLs | agent://name URIs | | Discovery | Manual config | DNS-style resolution | | Communication | REST/WebSocket patchwork | Stateful sessions + mTLS | | Trust | None | Capability manifests + trust scores | | MCP Integration | Tools only | Tools → discoverable agents |

Features

  • agent:// Protocol — Unique identity via URI scheme (like https:// for agents)
  • DNS Resolutionagent://name → endpoint + capabilities
  • MCP Bridge — Any MCP server → discoverable agent (@agenium/mcp-server)
  • Stateful Sessions — SQLite-backed persistent conversations
  • HTTP/2 + mTLS — Secure transport with mutual TLS
  • At-Least-Once Delivery — Outbox pattern with retries
  • Capability Manifests — Agents declare what they can do
  • 56 Tests — Unit, integration, and E2E coverage

Ecosystem

| Package | What it does | |---------|-------------| | agenium | Core client SDK | | @agenium/create-agent | Scaffold agents in 60 seconds | | @agenium/mcp-server | Bridge MCP servers → agent:// network | | discord-agenium | Discord bot gateway | | slack-agenium | Slack app gateway | | n8n-nodes-agenium | n8n automation nodes | | agenium (PyPI) | Python SDK |

Architecture

Your Agent                              Remote Agent
agent://mybot                          agent://weather
     │                                      │
     ├── resolve("agent://weather") ───────►│
     │   (DNS via AGENIUM network)          │
     │◄── endpoint + capabilities ──────────┤
     │                                      │
     ├── connect (HTTP/2 + mTLS) ──────────►│
     │   (stateful session)                 │
     │◄── response ─────────────────────────┤

🔍 Find MCP Servers

Search 2,000+ MCP servers →

Looking for AI tools to connect to? Search by capability, language, or use case.

Links

License

MIT © AGENIUM