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

@sideeyelabs/proxagora-mcp

v0.1.0

Published

MCP server for Proxagora — gives Claude access to 20+ data APIs with per-call micropayments

Readme

proxagora-mcp

MCP server for Proxagora — gives Claude access to 20+ data APIs as native tools, with per-call micropayments.

No account setup. No monthly fees. Call what you need, pay per call.

Quick Start (Zero Config)

Just add this to your Claude Desktop config and restart — it auto-creates a free account on first run:

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

{
  "mcpServers": {
    "proxagora": {
      "command": "npx",
      "args": ["-y", "proxagora-mcp"]
    }
  }
}

That's it. Restart Claude Desktop. Every Proxagora API is now a native Claude tool.

Quick Start (With Your Own Key)

# Get a free API key
curl -X POST https://proxagora.com/api/account
{
  "mcpServers": {
    "proxagora": {
      "command": "npx",
      "args": ["-y", "proxagora-mcp"],
      "env": {
        "PROXAGORA_API_KEY": "pak_your_key_here"
      }
    }
  }
}

Available APIs

| API | Cost | Description | |-----|------|-------------| | llm-completion | $0.005 | AI text generation | | dns-lookup | $0.010 | DNS records (A, MX, TXT, NS) | | weather | $0.010 | Current weather by location | | exchange-rates | $0.010 | Live currency exchange rates | | hackernews-search | $0.010 | Search Hacker News stories | | reddit-search | $0.010 | Search Reddit posts | | ip-geo | $0.010 | IP geolocation with ISP/ASN data | | wikipedia-summary | $0.010 | Wikipedia article summary | | grokipedia-summary | $0.020 | Deep AI-enhanced Wikipedia summary | | github-stats | $0.020 | GitHub repo stats | | email-validation | $0.020 | Email deliverability check | | reddit-thread | $0.020 | Full Reddit thread with comments | | youtube-metadata | $0.020 | YouTube video info, views, tags | | whois | $0.030 | WHOIS domain registration data | | vat-validation | $0.030 | EU VAT number validation | | news-search | $0.030 | Live news search | | webpage-content | $0.040 | Scrape and extract webpage text | | domain-reputation | $0.050 | Domain risk and threat scoring | | youtube-transcript | $0.050 | Full YouTube video transcript |

APIs are loaded dynamically — new ones appear automatically as Proxagora adds them.

Built-in Tools

Beyond the per-API tools, proxagora-mcp registers these utility tools:

  • proxagora_discover — Search and filter available APIs
  • proxagora_account — Check your credit balance
  • proxagora_call — Call any API by ID (advanced/generic)

Credits & Pricing

  • New accounts get free starter credits
  • Top up at proxagora.com/dashboard
  • Prices are per call, in USD (e.g. $0.01 per DNS lookup)
  • No minimum spend, no subscription

Development

git clone https://github.com/sideEyeLabs/proxagora-mcp
cd proxagora-mcp
npm install
npm run build

# Run with your key
PROXAGORA_API_KEY=pak_... npm start

# Or without a key — auto-provisions a free account
npm start

License

MIT — github.com/sideEyeLabs/proxagora-mcp