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

astrapay-mcp

v1.1.0

Published

AstraPay MCP server — let AI agents create payments, manage products, and configure webhooks

Downloads

672

Readme

astrapay-mcp

MCP (Model Context Protocol) server for the AstraPay crypto payment API. Lets AI agents — Claude, ChatGPT, Cursor, Copilot, and others — create payments, manage products, and configure webhooks through natural language.

Quick Start

Claude Desktop

Add to claude_desktop_config.json:

{
  "mcpServers": {
    "astrapay": {
      "command": "npx",
      "args": ["-y", "astrapay-mcp"],
      "env": {
        "ASTRAPAY_API_KEY": "sk_live_..."
      }
    }
  }
}

Cursor

Add to .cursor/mcp.json:

{
  "mcpServers": {
    "astrapay": {
      "command": "npx",
      "args": ["-y", "astrapay-mcp"],
      "env": {
        "ASTRAPAY_API_KEY": "sk_live_..."
      }
    }
  }
}

VS Code

Add to .vscode/mcp.json:

{
  "servers": {
    "astrapay": {
      "command": "npx",
      "args": ["-y", "astrapay-mcp"],
      "env": {
        "ASTRAPAY_API_KEY": "sk_live_..."
      }
    }
  }
}

Tools

Payments

| Tool | Description | |------|-------------| | create_payment | Create a crypto payment, returns checkout URL | | get_payment | Get payment status by ID | | list_payments | List payments with optional status filter | | cancel_payment | Cancel a pending payment |

Products

| Tool | Description | |------|-------------| | create_product | Create a product with price | | list_products | List all products | | update_product | Update a product | | delete_product | Delete a product |

Webhooks

| Tool | Description | |------|-------------| | create_webhook | Register a webhook URL for payment events | | get_webhook | Get webhook details by ID | | list_webhooks | List registered webhooks | | update_webhook | Update a webhook's URL, events, or status | | delete_webhook | Delete a webhook |

Environment Variables

| Variable | Required | Default | Description | |----------|----------|---------|-------------| | ASTRAPAY_API_KEY | Yes | — | Your AstraPay API key | | ASTRAPAY_API_URL | No | https://apipay.byastra.ai | API base URL | | ASTRAPAY_API_PREFIX | No | /v1 | API route prefix |

Example Prompts

Once connected, you can say things like:

  • "Create a $25 USDC payment on Base for [email protected]"
  • "List all pending payments"
  • "Create a product called 'Pro Plan' for $49"
  • "Set up a webhook at https://example.com/hooks for payment completions"
  • "Cancel payment abc123"

API Key Scopes

Your API key needs these scopes:

  • payments:create — create and cancel payments
  • payments:read — list and get payments
  • products:manage — CRUD products
  • webhooks:manage — CRUD webhooks

Generate an API key at pay.byastra.ai/settings → API Keys.

Development

cd packages/mcp
yarn install
yarn build

Test locally:

ASTRAPAY_API_KEY=test_key node build/index.js