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

agent-services-platform

v1.1.0

Published

MCP server exposing AI agent services — research, contract analysis, code review & data enrichment — with x402 micropayments on Base L2

Readme

AiScale Agent Services — MCP Server

Give any AI agent real-world skills: deep research, contract analysis, code review, and data enrichment — paid per-request via x402 micropayments in USDC on Base L2. No API keys, no subscriptions.

This package ships an MCP server that exposes the AiScale Agent Services platform as tools to Claude Desktop, Cursor, VS Code, and any other MCP-compatible client.

npx agent-services-platform

Install

Add to your MCP client config:

{
  "mcpServers": {
    "aiscale": {
      "command": "npx",
      "args": ["-y", "agent-services-platform"]
    }
  }
}

Config file locations:

  • Claude Desktop~/Library/Application Support/Claude/claude_desktop_config.json (macOS) · %APPDATA%\Claude\claude_desktop_config.json (Windows)
  • Cursor~/.cursor/mcp.json (or Settings → MCP)
  • VS Code (Copilot).vscode/mcp.json

Restart your client, then ask it to list_services to discover everything available.

Tools

| Tool | What it does | Price | |------|--------------|-------| | synthesize_research | AI research brief with citations | $0.15 | | analyze_contract | Contract risk analysis (PDF/text) | $0.10 | | review_code | Security + quality code review | $0.05 | | get_company_profile | Company data by domain | $0.005 | | extract_structured_data | URL/HTML → clean JSON | $0.004 | | get_news_summary | Summarized news for a topic | $0.003 | | get_sentiment | Stock ticker sentiment score | $0.002 | | enrich_email | Email → person/company details | $0.008 | | list_services | Discover all services + pricing | free |

Configuration

All optional. The server targets the live API by default.

| Variable | Default | Description | |----------|---------|-------------| | PLATFORM_URL | https://agents.aiscale.pro | Platform API base URL | | MCP_PRIVATE_KEY | (empty) | Wallet private key (0x...) with USDC on Base. Set this to enable paid calls. |

With payment enabled:

{
  "mcpServers": {
    "aiscale": {
      "command": "npx",
      "args": ["-y", "agent-services-platform"],
      "env": {
        "MCP_PRIVATE_KEY": "0xYOUR_PRIVATE_KEY"
      }
    }
  }
}

How payments work

Without MCP_PRIVATE_KEY, calling a paid tool returns 402 Payment Required with payment details. To enable automatic payments:

  1. Get USDC on Basebridge.base.org (mainnet) or faucet.circle.com (testnet)
  2. Set MCP_PRIVATE_KEY — each call signs a unique x402 payment automatically
  3. Your key never leaves your machine

You can also use the aiscale-pay CLI for one-off calls:

MCP_PRIVATE_KEY=0x... aiscale-pay sentiment AAPL     # $0.002
MCP_PRIVATE_KEY=0x... aiscale-pay company stripe.com  # $0.005
MCP_PRIVATE_KEY=0x... aiscale-pay research "State of AI" --depth deep  # $0.15

Links

  • Live API: https://agents.aiscale.pro
  • Source: https://github.com/ry4ever/ai-agent
  • x402 protocol: https://x402.org

License

MIT