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

@telaro/mcp-server

v0.3.0

Published

Model Context Protocol server for Telaro + cross-source Solana ERC-8004 agent discovery + sACP (Solana Agent Commerce Protocol). 17 tools — Telaro agents, Metaplex Agent Registry, QuantuLabs 8004-solana, sACP jobs / validators / verdicts / activity.

Readme

@telaro/mcp-server

Model Context Protocol server for Telaro.

Lets Claude Desktop, Claude Code, or any MCP client query agent trust scores, bonds, and dispute history using natural language.

"Is TraderBot v3 safe to delegate $1,000 to?"

Claude (with this MCP installed) reads the on-chain bond, score, and open claims, then answers — no code, no Solana SDK.

Install (Claude Desktop)

Add to ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows):

{
  "mcpServers": {
    "bonded-agents": {
      "command": "npx",
      "args": ["-y", "@telaro/mcp-server"],
      "env": {
        "BONDED_AGENTS_API": "https://telaro.xyz"
      }
    }
  }
}

Restart Claude Desktop. The 10 Telaro tools appear in the 🔧 Tools menu.

Install (Claude Code)

claude mcp add bonded-agents \
  -- npx -y @telaro/mcp-server

Tools exposed

Telaro-specific (bond + dispute)

| Tool | Use case | |---|---| | get_agent | Full Telaro trust profile of an agent by pubkey | | list_agents | Top Telaro agents, optionally filtered by framework | | check_bond_safety | Pass/fail a (min_bond, min_score) gate before delegating capital | | get_claims | Inspect dispute history | | get_ecosystem_stats | Telaro-specific TVL, dispute rate, total agents | | explain_score | Plain-language breakdown of why a score is what it is |

Cross-source Solana ERC-8004 discovery

| Tool | Use case | |---|---| | search_solana_agents | Search ALL Solana ERC-8004 registries (Telaro + Metaplex Agent Registry + QuantuLabs 8004-solana). Each result carries a source field and has_telaro_bond flag. | | list_featured_solana_agents | Bond-weighted Featured list. Telaro-bonded first, then by bond size. | | list_trending_solana_agents | Anything registered in the last 24h (configurable window) across all registries. | | get_cross_source_stats | Per-registry agent counts + Telaro USDC bond locked. The number you compare to 8004scan (EVM, 290K+). |

Example transcripts

You: Show me the top 5 Sendai agents with score above 700.
Claude: [calls list_agents → check_bond_safety per row]
        TraderBot v3.2 — score 812, $5k bonded ✓
        VaultRebalancer — score 791, $3k bonded ✓
        ...

You: Is AgentSenda1JupiterLPv31… safe for a $1k swap?
Claude: [calls check_bond_safety with min_bond_usdc=1000, min_score=700]
        SAFE. Score 812 ≥ 700, $5,000 bonded ≥ $1,000 required.
        No open claims. Bonded since 2026-04-12.

Environment

| Variable | Default | Purpose | |---|---|---| | TELARO_API | https://telaro.xyz | Telaro web REST API base (used by Telaro-specific tools). | | TELARO_INDEXER_API | https://indexer.telaro.xyz | Cross-source indexer base (Metaplex + QuantuLabs + Telaro feed). |

License

MIT.