Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
45 changes: 45 additions & 0 deletions servers/com.stripe-mcp-http.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
{
"$schema": "../schemas/server-definition.schema.json",
"id": "com.stripe-mcp-http",
"name": "Stripe (Remote)",
"alias": "stripe-remote",
"description": "Interact with Stripe APIs through Stripe's official remote MCP server. Manage payments, customers, subscriptions, and more with OAuth Dynamic Client Registration.",
"icon": "https://avatars.githubusercontent.com/u/856813?v=4",
"schema_version": "2.1",
"categories": ["cloud", "developer-tools"],
"tags": ["stripe", "payments", "billing", "subscriptions", "fintech", "api"],

"transport": {
"type": "http",
"url": "https://mcp.stripe.com",
"metadata": {
"inputs": []
}
},

"auth": {
"type": "oauth",
"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."
},

"contributor": {
"name": "Stripe",
"github": "stripe",
"url": "https://stripe.com"
},

"links": {
"repository": "https://github.com/stripe/agent-toolkit",
"homepage": "https://stripe.com",
"documentation": "https://docs.stripe.com/mcp"
},

"platforms": ["all"],

"capabilities": {
"tools": true,
"resources": false,
"prompts": false,
"read_only_mode": false
}
}
63 changes: 63 additions & 0 deletions servers/com.stripe-mcp.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,63 @@
{
"$schema": "../schemas/server-definition.schema.json",
"id": "com.stripe-mcp",
"name": "Stripe (Local)",
"alias": "stripe",
"description": "Interact with Stripe APIs locally through the official Stripe MCP package. Manage payments, customers, subscriptions, and more using your Stripe secret key.",
"icon": "https://avatars.githubusercontent.com/u/856813?v=4",
"schema_version": "2.1",
"categories": ["cloud", "developer-tools"],
"tags": ["stripe", "payments", "billing", "subscriptions", "fintech", "api"],

"transport": {
"type": "stdio",
"command": "npx",
"args": ["-y", "@stripe/mcp", "--tools=all", "--api-key", "${input:STRIPE_SECRET_KEY}"],
"metadata": {
"inputs": [
{
"id": "STRIPE_SECRET_KEY",
"label": "Stripe Secret Key",
"description": "Your Stripe secret API key. Use a test key (sk_test_) for development or a live key (sk_live_) for production.",
"type": "password",
"required": true,
"secret": true,
"placeholder": "sk_test_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx",
"obtain": {
"url": "https://dashboard.stripe.com/apikeys",
"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",
"button_label": "Get API Key"
}
}
]
}
},

"auth": {
"type": "api_key",
"instructions": "Get your Stripe secret key from the Stripe Dashboard at https://dashboard.stripe.com/apikeys"
},

"contributor": {
"name": "Stripe",
"github": "stripe",
"url": "https://stripe.com"
},

"links": {
"repository": "https://github.com/stripe/agent-toolkit",
"homepage": "https://stripe.com",
"documentation": "https://docs.stripe.com/mcp"
},

"platforms": ["all"],

"capabilities": {
"tools": true,
"resources": false,
"prompts": false,
"read_only_mode": false
},

"changelog_url": "https://github.com/stripe/agent-toolkit/releases"
}