---
url: /docs/integrations.md
description: >-
  Add stablecoin payments to any AI-built app: Lovable, v0, Bolt, Replit, Codex,
  Cursor, Claude Code. Copy-paste prompts, MCP server, Agent Skills, and a REST
  API.
---

Ship stablecoin payments in apps built with AI coding tools and agents. BlindPay exposes its full payments API through three surfaces that drop into any AI builder: an **MCP server**, **Agent Skills**, and a **REST API**.

## Pick your builder

* **[Lovable](/integrations/lovable)**: add stablecoin payouts and on-ramps to a Lovable app.
* **[v0 by Vercel](/integrations/v0)**: generate a Next.js payments flow with BlindPay.
* **[Bolt.new](/integrations/bolt)**: wire BlindPay into a StackBlitz Bolt project.
* **[Replit](/integrations/replit)**: build with Replit Agent and BlindPay.
* **[Codex](/integrations/codex)**: use the BlindPay MCP server and Skills with OpenAI's coding agent.
* **[Cursor](/integrations/cursor)**: use the BlindPay MCP server and Skills inside Cursor.
* **[Claude Code](/integrations/claude-code)**: move money from the terminal with Claude Code.
* **[OpenClaw](/integrations/openclaw)**: let the autonomous agent run payouts via the BlindPay MCP server.
* **[Hermes Agent](/integrations/hermes)**: connect the Nous Research agent to BlindPay over MCP.

## The three integration surfaces

### MCP Server

The Model Context Protocol server exposes the BlindPay API as tools. Works with Codex, Claude, Cursor, Claude Code, and any MCP-compatible host.

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

### Agent Skills

A packaged knowledge layer that teaches any agent BlindPay's rails, corridors, fees, and API patterns.

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

### REST API

For builders that generate code (Lovable, v0, Bolt, Replit), call the REST API directly.

```bash [cURL]
curl https://api.blindpay.com/v1/instances/in_000000000000/payouts \
  -H "Authorization: Bearer YOUR_SECRET_TOKEN"
```

Get your API key and instance ID from the [BlindPay dashboard](https://app.blindpay.com/sign-up). See the [AI page](/build-with-ai) for the full MCP, Skills, and CLI overview.

## Next steps

* [Quick start: stablecoin to fiat](/stablecoin/quickstart)
* [API reference](https://api.blindpay.com/reference)
* [BlindPay for AI agents](/build-with-ai)
