|
| 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