From 51ea01060fcd930fc5014ef132977369b1375b3f Mon Sep 17 00:00:00 2001 From: Signal Date: Wed, 29 Jul 2026 22:59:42 +0000 Subject: [PATCH 1/2] Add community.sapph1re-billing-gateway-mcp-http Signed-off-by: Signal --- ...ity.sapph1re-billing-gateway-mcp-http.json | 52 +++++++++++++++++++ 1 file changed, 52 insertions(+) create mode 100644 servers/community.sapph1re-billing-gateway-mcp-http.json diff --git a/servers/community.sapph1re-billing-gateway-mcp-http.json b/servers/community.sapph1re-billing-gateway-mcp-http.json new file mode 100644 index 0000000..85f2eeb --- /dev/null +++ b/servers/community.sapph1re-billing-gateway-mcp-http.json @@ -0,0 +1,52 @@ +{ + "$schema": "../schemas/server-definition.schema.json", + "id": "community.sapph1re-billing-gateway-mcp-http", + "name": "MCP Billing Gateway", + "alias": "billing-gateway-mcp", + "description": "Open-source billing infrastructure for MCP server developers — register services, define pricing plans, track per-tool usage, and validate client access tokens with Stripe-backed subscriptions.", + "logo": "https://avatars.githubusercontent.com/u/5317413?v=4", + "schema_version": "2.1", + "categories": [ + "developer-tools" + ], + "tags": [ + "billing", + "payments", + "stripe", + "monetization", + "mcp", + "subscriptions", + "api-management", + "saas" + ], + "transport": { + "type": "http", + "url": "https://mcp-billing-gateway-production.up.railway.app/mcp/", + "metadata": { + "inputs": [] + } + }, + "auth": { + "type": "api_key", + "instructions": "Requires a Billing Gateway API key. Deploy your own instance from https://github.com/sapph1re/mcp-billing-gateway-sdk, then pass your API key as the Authorization Bearer token." + }, + "contributor": { + "name": "sapph1re", + "github": "sapph1re", + "url": "https://github.com/sapph1re" + }, + "links": { + "repository": "https://github.com/sapph1re/mcp-billing-gateway-sdk", + "homepage": "https://github.com/sapph1re/mcp-billing-gateway-sdk", + "documentation": "https://github.com/sapph1re/mcp-billing-gateway-sdk#readme" + }, + "platforms": [ + "all" + ], + "capabilities": { + "tools": true, + "resources": false, + "prompts": false, + "read_only_mode": false + } +} From 3d0314145ce56c953fcd69b5d3e8d2f26b4358d3 Mon Sep 17 00:00:00 2001 From: Signal Date: Thu, 13 Aug 2026 00:07:57 +0000 Subject: [PATCH 2/2] Define BILLING_GATEWAY_API_KEY input per maintainer feedback MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Add transport.headers and metadata.inputs with full input definition for the API key — id, label, description, secret, required, and obtain instructions linking to the setup guide. --- ...ity.sapph1re-billing-gateway-mcp-http.json | 21 +++++++++++++++++-- 1 file changed, 19 insertions(+), 2 deletions(-) diff --git a/servers/community.sapph1re-billing-gateway-mcp-http.json b/servers/community.sapph1re-billing-gateway-mcp-http.json index 85f2eeb..554909e 100644 --- a/servers/community.sapph1re-billing-gateway-mcp-http.json +++ b/servers/community.sapph1re-billing-gateway-mcp-http.json @@ -22,13 +22,30 @@ "transport": { "type": "http", "url": "https://mcp-billing-gateway-production.up.railway.app/mcp/", + "headers": { + "Authorization": "Bearer ${input:BILLING_GATEWAY_API_KEY}" + }, "metadata": { - "inputs": [] + "inputs": [ + { + "id": "BILLING_GATEWAY_API_KEY", + "type": "text", + "label": "Billing Gateway API Key", + "description": "API key for your MCP Billing Gateway instance. Deploy your own from https://github.com/sapph1re/mcp-billing-gateway-sdk and generate a key via the /admin/keys endpoint.", + "secret": true, + "required": true, + "obtain": { + "url": "https://github.com/sapph1re/mcp-billing-gateway-sdk#readme", + "instructions": "1. Deploy MCP Billing Gateway from https://github.com/sapph1re/mcp-billing-gateway-sdk\n2. Set your ADMIN_API_KEY environment variable\n3. POST to /admin/keys to create a client API key\n4. Paste the key here", + "button_label": "View setup guide" + } + } + ] } }, "auth": { "type": "api_key", - "instructions": "Requires a Billing Gateway API key. Deploy your own instance from https://github.com/sapph1re/mcp-billing-gateway-sdk, then pass your API key as the Authorization Bearer token." + "instructions": "Requires a Billing Gateway API key. Deploy your own instance from https://github.com/sapph1re/mcp-billing-gateway-sdk, then paste your API key above." }, "contributor": { "name": "sapph1re",