billing
Manage billing tasks for MCP Analytics: check credit balance, view subscription status, or access the billing portal directly.
Instructions
Check credit balance, subscription status, or open billing portal.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| action | No | Billing action | status |
Implementation Reference
- src/index.js:105-118 (handler)This request handler dynamically forwards any tool call (including 'billing') to the remote MCP server, as the tool catalog is fetched from the remote server at runtime.
server.setRequestHandler(CallToolRequestSchema, async (request) => { try { const result = await remoteClient.callTool({ name: request.params.name, arguments: request.params.arguments || {}, }); return result; } catch (err) { return { content: [{ type: "text", text: `Error: ${err.message}` }], isError: true, }; } });