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

mcp-proabono

v1.0.0

Published

MCP Server for ProAbono API - Manage subscriptions, customers, invoices and more

Downloads

9

Readme

mcp-proabono

MCP (Model Context Protocol) Server for the ProAbono API. Enables AI assistants to manage subscriptions, customers, invoices and more through ProAbono.

Installation

npx mcp-proabono

Or install globally:

npm install -g mcp-proabono

Configuration

The server requires the following environment variables:

| Variable | Description | |----------|-------------| | PROABONO_ID_BUSINESS | Your ProAbono Business ID (found in your ProAbono URL) | | PROABONO_API_KEY | Your ProAbono API Key | | PROABONO_API_SECRET | Your ProAbono API Secret |

Usage with Claude Desktop

Add this to your Claude Desktop configuration file (claude_desktop_config.json):

{
  "mcpServers": {
    "proabono": {
      "command": "npx",
      "args": ["-y", "mcp-proabono"],
      "env": {
        "PROABONO_ID_BUSINESS": "your-business-id",
        "PROABONO_API_KEY": "your-api-key",
        "PROABONO_API_SECRET": "your-api-secret"
      }
    }
  }
}

Available Tools

Customers

| Tool | Description | |------|-------------| | proabono_create_customer | Create a new customer | | proabono_get_customer | Retrieve a customer by reference | | proabono_list_customers | List all customers | | proabono_get_billing_address | Get customer billing address | | proabono_update_billing_address | Update customer billing address | | proabono_get_payment_settings | Get customer payment settings | | proabono_update_payment_settings | Update customer payment settings | | proabono_anonymize_customer | Anonymize customer data (GDPR) | | proabono_revoke_customer_links | Revoke customer portal links |

Usages

| Tool | Description | |------|-------------| | proabono_get_usages | Get all usages for a customer | | proabono_get_usage | Get specific feature usage | | proabono_update_usage | Update usage (increment/set) |

Features

| Tool | Description | |------|-------------| | proabono_get_features | Get features for a customer | | proabono_get_feature | Get a specific feature |

Offers

| Tool | Description | |------|-------------| | proabono_get_offers | List all offers | | proabono_get_offer | Get a specific offer |

Subscriptions

| Tool | Description | |------|-------------| | proabono_create_subscription | Create a subscription | | proabono_get_subscription | Get subscription by ID | | proabono_list_subscriptions | List subscriptions | | proabono_update_subscription_term_date | Update term date | | proabono_suspend_subscription | Suspend a subscription | | proabono_start_subscription | Start/restart a subscription | | proabono_upgrade_subscription | Upgrade to another offer | | proabono_terminate_subscription | Terminate a subscription |

Pricing

| Tool | Description | |------|-------------| | proabono_compute_pricing_usage | Compute pricing for usage update | | proabono_compute_pricing_subscription | Compute pricing for new subscription | | proabono_compute_pricing_subscription_start | Compute pricing for starting subscription | | proabono_compute_pricing_subscription_upgrade | Compute pricing for upgrade |

Balance & Billing

| Tool | Description | |------|-------------| | proabono_create_balance_line | Create a balance line | | proabono_list_balance_lines | List balance lines | | proabono_bill_customer | Generate invoice from balance |

Invoices

| Tool | Description | |------|-------------| | proabono_list_invoices | List invoices | | proabono_get_invoice | Get invoice by ID |

Example Usage

Once configured, you can ask Claude:

  • "List all my ProAbono customers"
  • "Create a new customer with email [email protected]"
  • "What subscriptions does customer 12345 have?"
  • "Upgrade subscription 789 to the premium plan"
  • "Show me the invoices for customer 12345"

API Documentation

For more information about the ProAbono API, visit:

License

MIT