Skip to content

Commit bc444a5

Browse files
committed
feat: add Stripe MCP server definitions (remote + local)
- com.stripe-mcp-http: Remote HTTP with OAuth DCR at mcp.stripe.com - com.stripe-mcp: Local stdio via npx @stripe/mcp with API key https://claude.ai/code/session_013AxurW8hPAfnUNvik354Xx
1 parent 7c243a3 commit bc444a5

2 files changed

Lines changed: 108 additions & 0 deletions

File tree

servers/com.stripe-mcp-http.json

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
{
2+
"$schema": "../schemas/server-definition.schema.json",
3+
"id": "com.stripe-mcp-http",
4+
"name": "Stripe (Remote)",
5+
"alias": "stripe-remote",
6+
"description": "Interact with Stripe APIs through Stripe's official remote MCP server. Manage payments, customers, subscriptions, and more with OAuth Dynamic Client Registration.",
7+
"icon": "https://avatars.githubusercontent.com/u/856813?v=4",
8+
"schema_version": "2.1",
9+
"categories": ["cloud", "developer-tools"],
10+
"tags": ["stripe", "payments", "billing", "subscriptions", "fintech", "api"],
11+
12+
"transport": {
13+
"type": "http",
14+
"url": "https://mcp.stripe.com",
15+
"metadata": {
16+
"inputs": []
17+
}
18+
},
19+
20+
"auth": {
21+
"type": "oauth",
22+
"instructions": "Connect via OAuth when prompted by your MCP client. Stripe supports Dynamic Client Registration. You will be redirected to Stripe to authorize access via browser."
23+
},
24+
25+
"contributor": {
26+
"name": "Stripe",
27+
"github": "stripe",
28+
"url": "https://stripe.com"
29+
},
30+
31+
"links": {
32+
"repository": "https://github.com/stripe/agent-toolkit",
33+
"homepage": "https://stripe.com",
34+
"documentation": "https://docs.stripe.com/mcp"
35+
},
36+
37+
"platforms": ["all"],
38+
39+
"capabilities": {
40+
"tools": true,
41+
"resources": false,
42+
"prompts": false,
43+
"read_only_mode": false
44+
}
45+
}

servers/com.stripe-mcp.json

Lines changed: 63 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,63 @@
1+
{
2+
"$schema": "../schemas/server-definition.schema.json",
3+
"id": "com.stripe-mcp",
4+
"name": "Stripe (Local)",
5+
"alias": "stripe",
6+
"description": "Interact with Stripe APIs locally through the official Stripe MCP package. Manage payments, customers, subscriptions, and more using your Stripe secret key.",
7+
"icon": "https://avatars.githubusercontent.com/u/856813?v=4",
8+
"schema_version": "2.1",
9+
"categories": ["cloud", "developer-tools"],
10+
"tags": ["stripe", "payments", "billing", "subscriptions", "fintech", "api"],
11+
12+
"transport": {
13+
"type": "stdio",
14+
"command": "npx",
15+
"args": ["-y", "@stripe/mcp", "--tools=all", "--api-key", "${input:STRIPE_SECRET_KEY}"],
16+
"metadata": {
17+
"inputs": [
18+
{
19+
"id": "STRIPE_SECRET_KEY",
20+
"label": "Stripe Secret Key",
21+
"description": "Your Stripe secret API key. Use a test key (sk_test_) for development or a live key (sk_live_) for production.",
22+
"type": "password",
23+
"required": true,
24+
"secret": true,
25+
"placeholder": "sk_test_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx",
26+
"obtain": {
27+
"url": "https://dashboard.stripe.com/apikeys",
28+
"instructions": "1. Go to the Stripe Dashboard\n2. Navigate to Developers > API keys\n3. Copy your Secret key (starts with sk_test_ or sk_live_)\n4. For testing, use the test mode key",
29+
"button_label": "Get API Key"
30+
}
31+
}
32+
]
33+
}
34+
},
35+
36+
"auth": {
37+
"type": "api_key",
38+
"instructions": "Get your Stripe secret key from the Stripe Dashboard at https://dashboard.stripe.com/apikeys"
39+
},
40+
41+
"contributor": {
42+
"name": "Stripe",
43+
"github": "stripe",
44+
"url": "https://stripe.com"
45+
},
46+
47+
"links": {
48+
"repository": "https://github.com/stripe/agent-toolkit",
49+
"homepage": "https://stripe.com",
50+
"documentation": "https://docs.stripe.com/mcp"
51+
},
52+
53+
"platforms": ["all"],
54+
55+
"capabilities": {
56+
"tools": true,
57+
"resources": false,
58+
"prompts": false,
59+
"read_only_mode": false
60+
},
61+
62+
"changelog_url": "https://github.com/stripe/agent-toolkit/releases"
63+
}

0 commit comments

Comments
 (0)