Skip to content
Open
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
21 changes: 21 additions & 0 deletions tools/modelcontextprotocol/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,27 @@ of if you're using Docker
3. Start Gemini CLI: `gemini`.
4. Go through the OAUTH flow: `/mcp auth stripe`.

### Usage with GitHub Copilot CLI

You can add an MCP server interactively with `/mcp add`, or edit `~/.copilot/mcp-config.json` directly. See [here](https://docs.github.com/en/copilot/how-tos/copilot-cli/use-copilot-cli#add-an-mcp-server).

```
{
"mcpServers": {
"stripe": {
"type": "local",
"command": "npx",
"args": [
"-y",
"@stripe/mcp",
"--tools=all",
"--api-key=STRIPE_SECRET_KEY"
]
}
}
}
```

## Available tools

See the [Stripe MCP documentation](https://docs.stripe.com/mcp#tools) for a list of tools.
Expand Down
Loading