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

@agentoracle.ai/mcp-server

v0.1.0

Published

Model Context Protocol server for AgentOracle — real-time on-chain crypto market data, pay-per-call USDC on Base via x402.

Readme

@agentoracle.ai/mcp-server

Model Context Protocol (MCP) server for AgentOracle — real-time on-chain crypto market data, pay-per-call USDC on Base via x402.

Plug AgentOracle into any MCP-compatible host (Claude Desktop, Cursor, Continue, Cline, Zed, etc.) and your agent can query token prices, volume, liquidity, market cap, top movers, and per-symbol lookups — paying $0.01 USDC per call automatically. No API keys.

Tools exposed

| Tool | Purpose | | --- | --- | | agentoracle_status | Service heartbeat: token count, last ingestion, uptime, version | | agentoracle_list_tokens | List tokens with filters (chain, min liquidity, min volume, min market cap, limit, offset) | | agentoracle_top_tokens | Top N tokens by market cap (limit 1–100, default 20) | | agentoracle_movers | Top 10 gainers + top 10 losers by 24h price change | | agentoracle_get_token | Single-token lookup by ticker (case-insensitive: ETH, BTC, SOL, …) |

Every call costs $0.01 USDC on Base mainnet, settled via the official Coinbase CDP Facilitator.

Install

You don't need to install anything — npx handles it.

Configure: Claude Desktop

Edit your Claude Desktop config:

  • macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
  • Windows: %APPDATA%\Claude\claude_desktop_config.json

Add the agentoracle entry under mcpServers:

{
  "mcpServers": {
    "agentoracle": {
      "command": "npx",
      "args": ["-y", "@agentoracle.ai/mcp-server"],
      "env": {
        "WALLET_PRIVATE_KEY": "0xYOUR_BASE_WALLET_PRIVATE_KEY"
      }
    }
  }
}

Restart Claude Desktop. The five tools will appear in the MCP tool palette.

Configure: Cursor

Cursor → Settings → MCP → Add new MCP server:

{
  "name": "agentoracle",
  "command": "npx",
  "args": ["-y", "@agentoracle.ai/mcp-server"],
  "env": {
    "WALLET_PRIVATE_KEY": "0xYOUR_BASE_WALLET_PRIVATE_KEY"
  }
}

Configure: Continue, Cline, Zed, others

Any MCP host that supports stdio transport works — point it at npx -y @agentoracle.ai/mcp-server and pass WALLET_PRIVATE_KEY in the env block.

Wallet setup

You need a Base mainnet wallet with USDC. Cheap options:

  1. Coinbase Wallet → export private key → fund with $5 of USDC on Base. That's 500 calls.
  2. MetaMask → switch to Base network → bridge USDC from Ethereum or Polygon, or buy directly.
  3. Programmatic — generate a key with viem's generatePrivateKey(), fund via Coinbase Onramp.

The private key never leaves your machine; the MCP server uses it locally to sign EIP-3009 USDC transfers.

Environment variables

| Variable | Required | Default | Purpose | | --- | --- | --- | --- | | WALLET_PRIVATE_KEY | Yes (for paid calls) | — | Hex private key of a Base wallet with USDC. Without it, every call returns HTTP 402. | | AGENTORACLE_BASE_URL | No | https://aiagentoracle.ai | Override the API base URL (useful for self-hosted forks). |

Try it (without payment)

You can list the tools without any wallet:

WALLET_PRIVATE_KEY="" npx -y @agentoracle.ai/mcp-server

Then send {"jsonrpc":"2.0","id":1,"method":"tools/list"} over stdin — every paid tool call will return HTTP 402 explaining what's needed.

Build from source

git clone https://github.com/agentoracle/mcp-server.git
cd mcp-server
npm install
npm run build
node dist/index.js

Pricing

Every call is $0.01 USDC on Base. Settled per request — there are no subscriptions, accounts, or invoices. The pay-to address is published in the canonical x402 manifest at https://aiagentoracle.ai/.well-known/x402.

License

MIT

Links