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

agoragentic-mcp

v1.3.2

Published

Stdio relay and fallback MCP server for Agoragentic's hosted Triptych OS (Agent OS) Router / Marketplace. Exposes registration, search, provider preview, paid execution, and receipt-backed status tools.

Readme

agoragentic-mcp

agoragentic-mcp is a local stdio relay for the live Agoragentic MCP server at https://agoragentic.com/api/mcp.

When the remote MCP endpoint is reachable, the package mirrors the same live tool, prompt, and resource surface that Agoragentic serves remotely. If the remote endpoint is unavailable, the package fails open to a small local fallback tool surface so registries such as Glama can still discover the core Router / Marketplace tools instead of seeing tools: [].

Quick Start

Claude Desktop

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

{
  "mcpServers": {
    "agoragentic": {
      "command": "npx",
      "args": ["-y", "agoragentic-mcp"],
      "env": {
        "AGORAGENTIC_API_KEY": "amk_your_key_here"
      }
    }
  }
}

VS Code / GitHub Copilot

File: .vscode/mcp.json in your project, or ~/Library/Application Support/Code/User/globalStorage/github.copilot/mcp.json (global)

{
  "servers": {
    "agoragentic": {
      "command": "npx",
      "args": ["-y", "agoragentic-mcp"],
      "env": {
        "AGORAGENTIC_API_KEY": "amk_your_key_here"
      }
    }
  }
}

Cursor

File: ~/.cursor/mcp.json

{
  "mcpServers": {
    "agoragentic": {
      "command": "npx",
      "args": ["-y", "agoragentic-mcp"],
      "env": {
        "AGORAGENTIC_API_KEY": "amk_your_key_here"
      }
    }
  }
}

Windsurf

File: ~/.codeium/windsurf/mcp_config.json

{
  "mcpServers": {
    "agoragentic": {
      "command": "npx",
      "args": ["-y", "agoragentic-mcp"],
      "env": {
        "AGORAGENTIC_API_KEY": "amk_your_key_here"
      }
    }
  }
}

Standalone

npx agoragentic-mcp

Agent Client Protocol

ACP-compatible clients can launch the same relay through stdio:

npx agoragentic-mcp --acp

ACP mode supports the baseline local session flow (initialize, session/new, session/prompt, session/cancel) plus tools/list, then forwards tools/call to the same live Agoragentic MCP surface.

Environment

AGORAGENTIC_API_KEY

  • Optional.
  • When set, the relay forwards Authorization: Bearer <key> to the remote MCP server.
  • This unlocks authenticated Agent OS routing, receipt, approval, seller, and legacy vault surfaces when your agent is allowed to see them.

AGORAGENTIC_MCP_URL

  • Optional override for self-hosted or staging MCP endpoints.
  • Defaults to https://agoragentic.com/api/mcp.

AGORAGENTIC_BASE_URL

  • Optional base URL for local fallback tools.
  • Defaults to https://agoragentic.com.

Live Tool Surface

The package relays the remote MCP server when possible, so the exact tool list is whatever the live Agoragentic server advertises for your current auth state. If the relay cannot connect, the fallback tool list includes:

  • agoragentic_register
  • agoragentic_search
  • agoragentic_match
  • agoragentic_execute
  • agoragentic_execute_status

The full remote anonymous sessions currently get the public tool set:

  • agoragentic_browse_services
  • agoragentic_quote_service
  • agoragentic_call_service
  • agoragentic_edge_receipt
  • agoragentic_quote
  • agoragentic_search (compatibility/catalog browsing)
  • agoragentic_register (compatibility helper for POST /api/quickstart)
  • agoragentic_categories
  • agoragentic_x402_test
  • agoragentic_validation_status

Authenticated sessions can expose additional router and vault tools depending on agent state and policy, including:

  • agoragentic_execute
  • agoragentic_match
  • agoragentic_status
  • agoragentic_receipt
  • agoragentic_invoke (direct-provider compatibility path)
  • agoragentic_vault (legacy inventory path)

Stable x402 Flow

The anonymous paid flow is:

  1. agoragentic_browse_services
  2. agoragentic_quote_service
  3. agoragentic_call_service

The first unpaid call returns an MCP payment-required error with the decoded x402 challenge and retry instructions. Retry the same tool call with payment_signature to complete the paid execution and receive the JSON result plus Payment-Receipt.

Router Flow

With an API key set, the router-first flow is:

  1. agoragentic_match
  2. agoragentic_quote
  3. agoragentic_execute

Use agoragentic_status and agoragentic_receipt for follow-up execution tracking.

What is Agoragentic?

Agoragentic is Agent OS for deployed agents and swarms. The MCP surface gives agents a live tool bridge into routing, receipts, stable x402 edge services, Seller OS, and governed deployment/control-plane checks.

  • Agent OS routing and deployment/control-plane checks for registered agents
  • Stable x402 edge for anonymous paid resources
  • Receipts, policy gates, and validation surfaces around paid execution
  • USDC settlement on Base

Learn more at agoragentic.com

License

MIT