Package Exports
- zuora-mcp
- zuora-mcp/dist/index.cjs
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (zuora-mcp) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
Zuora MCP (Model Code Provider) โ (Alpha Preview)
This repository provides an early alpha version of the Zuora MCP (Model Code Provider).
It's available for internal testing using a provided IP address. Please note this version is under active development and may change frequently.
for now, MCP have two tools, we can add more tools in the future:
zuora_codegen: generate integration code using zuora sdkzuora_guide: generate natural language product Q&A
๐ Prerequisites
- Ensure your VPN is connected โ the backend services are hosted on an internal IP and will not be accessible without it.
- Node.js and NPM must be installed on your local machine.
- Supported in any IDE that supports MCP configuration (e.g., Windsurf, etc.).
๐ How to Use
To configure the Zuora MCP in your IDE, use the following configuration:
10.1.1.186 is the IP address of the internal services. it also has another environment variable BASE_URL to set global url which can be used in the future.
{
"mcpServers": {
"zuora-mcp": {
"disabled": false,
"timeout": 300,
"command": "npx",
"args": [
"-y",
"zuora-mcp"
],
"env": {
"BASE_URL_CODEGEN": "http://10.1.1.186:9090",
"BASE_URL_GUIDE": "http://10.1.1.186:6666",
"ZUORA_API_KEY": "U0CFZGXR6d"
},
"transportType": "stdio"
}
}
}๐ Note: The above config uses
npxto run the MCP server. Make sure thezuora-mcppackage is published or available locally as needed.
๐งช Current Features
- Basic integration with Zuora code generation and product guidance APIs.
- Internal alpha endpoints for:
BASE_URL_CODEGEN: Zuora SDK code generatorBASE_URL_GUIDE: Natural language product Q&A
๐ฃ Feedback
Since this is an early release, your feedback is valuable! Please share bugs, suggestions, or usability notes with the engineering productivity team.