Skip to content

Commit 598ee4b

Browse files
sapph1reSignal
andauthored
Add community.sapph1re-billing-gateway-mcp-http (#274)
* Add community.sapph1re-billing-gateway-mcp-http Signed-off-by: Signal <signal@cortex.internal> * Define BILLING_GATEWAY_API_KEY input per maintainer feedback 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. --------- Signed-off-by: Signal <signal@cortex.internal> Co-authored-by: Signal <signal@cortex.internal>
1 parent be048a5 commit 598ee4b

1 file changed

Lines changed: 69 additions & 0 deletions

File tree

Lines changed: 69 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,69 @@
1+
{
2+
"$schema": "../schemas/server-definition.schema.json",
3+
"id": "community.sapph1re-billing-gateway-mcp-http",
4+
"name": "MCP Billing Gateway",
5+
"alias": "billing-gateway-mcp",
6+
"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.",
7+
"logo": "https://avatars.githubusercontent.com/u/5317413?v=4",
8+
"schema_version": "2.1",
9+
"categories": [
10+
"developer-tools"
11+
],
12+
"tags": [
13+
"billing",
14+
"payments",
15+
"stripe",
16+
"monetization",
17+
"mcp",
18+
"subscriptions",
19+
"api-management",
20+
"saas"
21+
],
22+
"transport": {
23+
"type": "http",
24+
"url": "https://mcp-billing-gateway-production.up.railway.app/mcp/",
25+
"headers": {
26+
"Authorization": "Bearer ${input:BILLING_GATEWAY_API_KEY}"
27+
},
28+
"metadata": {
29+
"inputs": [
30+
{
31+
"id": "BILLING_GATEWAY_API_KEY",
32+
"type": "text",
33+
"label": "Billing Gateway API Key",
34+
"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.",
35+
"secret": true,
36+
"required": true,
37+
"obtain": {
38+
"url": "https://github.com/sapph1re/mcp-billing-gateway-sdk#readme",
39+
"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",
40+
"button_label": "View setup guide"
41+
}
42+
}
43+
]
44+
}
45+
},
46+
"auth": {
47+
"type": "api_key",
48+
"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."
49+
},
50+
"contributor": {
51+
"name": "sapph1re",
52+
"github": "sapph1re",
53+
"url": "https://github.com/sapph1re"
54+
},
55+
"links": {
56+
"repository": "https://github.com/sapph1re/mcp-billing-gateway-sdk",
57+
"homepage": "https://github.com/sapph1re/mcp-billing-gateway-sdk",
58+
"documentation": "https://github.com/sapph1re/mcp-billing-gateway-sdk#readme"
59+
},
60+
"platforms": [
61+
"all"
62+
],
63+
"capabilities": {
64+
"tools": true,
65+
"resources": false,
66+
"prompts": false,
67+
"read_only_mode": false
68+
}
69+
}

0 commit comments

Comments
 (0)