---
title: Claude Code + BlindPay
description: 'Connect Claude Code to BlindPay via the MCP server and Agent Skills: run payouts, quotes, and virtual accounts from the terminal in natural language.'
navigation:
  order: 6
faq:
  - q: How do I connect Claude Code to BlindPay?
    a: Run claude mcp add to register the BlindPay MCP server (npx -y @blindpaylabs/blindpay-mcp) with your BLINDPAY_API_KEY and BLINDPAY_INSTANCE_ID. Claude Code can then call BlindPay tools to create quotes, run payouts, and manage customers from the terminal.
  - q: Can Claude Code move money with BlindPay?
    a: Yes. Through the BlindPay MCP server, Claude Code creates quotes, executes payouts across blockchains, creates virtual accounts, and configures webhooks as tool calls: agentic stablecoin payments from the command line.
  - q: Do I also need Agent Skills with Claude Code?
    a: Recommended. Agent Skills give Claude Code structured knowledge of BlindPay's rails, corridors, fees, and API patterns, so generated integrations and money-movement flows are correct.
howto:
  name: "Connect Claude Code to BlindPay"
  steps:
    - name: "Add the MCP server"
      text: "Run claude mcp add with the BlindPay MCP server (npx -y @blindpaylabs/blindpay-mcp) and your API key and instance ID, or add it to .mcp.json."
    - name: "Add Agent Skills"
      text: "Run npx skills add blindpaylabs/blindpay-skills to give Claude Code domain knowledge of rails, corridors, and API patterns."
    - name: "Use it"
      text: "Ask Claude Code to create a payout quote and execute a payout using the BlindPay MCP tools, with confirmation before executing."
---

[Claude Code](https://claude.com/claude-code){target="_blank"} is Anthropic's terminal coding agent. Connect it to BlindPay with the **MCP server** and **Agent Skills** for agentic stablecoin payments from the command line.

## Add the MCP server

```bash [Terminal]
claude mcp add blindpay \
  --env BLINDPAY_API_KEY=your-api-key \
  --env BLINDPAY_INSTANCE_ID=your-instance-id \
  -- npx -y @blindpaylabs/blindpay-mcp
```

Or add it manually to your project's `.mcp.json`:

```json [.mcp.json]
{
  "mcpServers": {
    "blindpay": {
      "command": "npx",
      "args": ["-y", "@blindpaylabs/blindpay-mcp"],
      "env": {
        "BLINDPAY_API_KEY": "your-api-key",
        "BLINDPAY_INSTANCE_ID": "your-instance-id"
      }
    }
  }
}
```

## Add Agent Skills

```bash [Terminal]
npx skills add blindpaylabs/blindpay-skills
```

## Use it

::c-steps

### Get your credentials

Copy your API key and instance ID from the [BlindPay dashboard](https://app.blindpay.com/sign-up){target="_blank"}.

### Ask Claude Code

```text [Claude Code prompt]
Use the BlindPay MCP tools to create a payout quote for 1000 USDC to a USD bank
account, show the fees and FX rate, then execute the payout after I confirm.
```

### Build integrations

With Skills loaded, Claude Code can scaffold full BlindPay integrations in your codebase, not just one-off calls.

::

::c-alert{icon="circle-info"}
The MCP server reads your key from the env you pass to `claude mcp add`. Money-movement tools should require explicit confirmation before executing.
::


## Next steps

- [BlindPay for AI agents](/ai)
- [All AI builder integrations](/docs/integrations)
- [API reference](https://api.blindpay.com/reference)
