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

zuora-mcp-test

v2.0.0-beta.1

Published

Zuora Developer MCP

Readme

Zuora Developer MCP (Model Context Protocol) – Beta Preview

The Zuora Developer MCP Server connects your AI IDE directly to Zuora, giving you access to Zuora tools, resources, and prompts from within Claude Desktop, Cursor, Windsurf, and other MCP-compatible clients.

⚠️ Breaking Changes in 2.0.0-beta.1

This release is a major change. If you depend on previous behavior, pin to [email protected] (see Pinning a version).

| Change | Previous (≤ 1.0.0-beta.7) | Current (≥ 2.0.0-beta.1) | |--------|---------------------------|--------------------------| | Approval process | zuora_approval tool enforced approval for mutating operations | Removed. All operations execute immediately. | | Auth required | zuora_codegen and sdk_upgrade worked without credentials | All tools require ZUORA_BASE_URL, ZUORA_CLIENT_ID, and ZUORA_CLIENT_SECRET | | Tool availability | Fixed set of tools | Dynamically discovered — tools update automatically |

Pinning a version

To keep using the previous behavior, specify the version in your MCP config:

{
  "mcpServers": {
    "zuora-developer-mcp": {
      "command": "npx",
      "args": ["-y", "[email protected]"],
      "env": {
        "ZUORA_BASE_URL": "{baseUrl}",
        "ZUORA_CLIENT_ID": "{clientId}",
        "ZUORA_CLIENT_SECRET": "{clientSecret}"
      }
    }
  }
}

🔐 Prerequisites

  • Node.js and npm installed on your local machine.
  • Valid Zuora API credentials.
  • An IDE that supports MCP configuration (e.g. Cursor, Windsurf, Claude Desktop).

⚙️ Environment Variables

Required

  • ZUORA_BASE_URL: Your Zuora base URL or MCP endpoint. Accepts either format:

    • REST base URL: https://rest-staging2.zuora.com (appends /mcp automatically)
    • MCP endpoint: https://apisandbox.zuora.com/mcp (used as-is)

    You can find your base URL here. For backward compatibility, BASE_URL is also supported but deprecated.

  • ZUORA_CLIENT_ID: Your Zuora API client ID.

  • ZUORA_CLIENT_SECRET: Your Zuora API client secret.

Optional

  • ZUORA_VERSION: Zuora API version header.
  • ZUORA_ENTITY_IDS: Entity ID(s) for Zuora Multi-Entity setups (comma-separated).
  • ZUORA_ORG_IDS: Org ID(s) for Zuora Multi-Org environments (comma-separated).
  • REMOTE_MCP_TIMEOUT_MS: Per-request timeout in milliseconds (default: 120000).

🚀 Quick Start

Add to Cursor

Add the following to your MCP config:

{
  "mcpServers": {
    "zuora-developer-mcp": {
      "command": "npx",
      "args": ["-y", "zuora-mcp"],
      "env": {
        "ZUORA_BASE_URL": "{baseUrl}",
        "ZUORA_CLIENT_ID": "{clientId}",
        "ZUORA_CLIENT_SECRET": "{clientSecret}"
      }
    }
  }
}

For detailed setup guides, see:

Add the MCP rules to Cursor's User Rules. See cursor_rules.md for details.

📘 Changelog

2.0.0-beta.1 ⚠️ Breaking

  • Removed approval process — all operations execute immediately.
  • All tools now require Zuora credentials.
  • Tools, resources, and prompts update automatically.
  • OAuth tokens refresh automatically.

1.0.0-beta.7

  • Added manage_billing_previews tool for previewing billing before invoice generation.
  • Added manage_billing_documents tool for managing billing document PDF and email operations.
  • Added org scoping support via the ZUORA_ORG_IDS environment variable.
  • Renamed tools to follow plural naming convention.
  • Renamed BASE_URL to ZUORA_BASE_URL (BASE_URL still supported but deprecated).

1.0.0-beta.6

  • Added renew_subscriptions tool.
  • Added get_account_summary tool.
  • Added entity scoping support via the ZUORA_ENTITY_IDS environment variable.

1.0.0-beta.5

  • Added cancel_subscriptions tool.
  • Added manage_revenue_reports tool for Zuora Revenue (RevPro) report management.

1.0.0-beta.4

  • Internal improvements.

1.0.0-beta.3

  • Split zuora_workflow tool into run_workflows and manage_workflows.

1.0.0-beta.2

  • Added run_reports, manage_reports, and run_workflows tools.

1.0.0-beta.1

  • Added query_objects, create_products, create_product_rate_plans, create_product_rate_plan_charges, create_subscriptions.

Previous Alpha Versions

  • API knowledge base, SDK upgrades, Cursor workspace rules, and telemetry improvements.