---
title: AI Builder Integrations
description: 'Add stablecoin payments to any AI-built app: Lovable, v0, Bolt, Replit, Cursor, Claude Code. Copy-paste prompts, MCP server, Agent Skills, and a REST API.'
navigation:
  order: 0
faq:
  - q: How do I add stablecoin payments to an app built with an AI coding tool?
    a: Connect your AI builder to BlindPay using one of three surfaces: the MCP server (npx -y @blindpaylabs/blindpay-mcp), Agent Skills (npx skills add blindpaylabs/blindpay-skills), or the REST API. Then paste a BlindPay prompt into the builder describing the payout, on-ramp, or virtual-account flow you want. Each integration guide includes a ready-to-paste prompt.
  - q: Which AI builders and agents work with BlindPay?
    a: BlindPay works with Lovable, v0, Bolt.new, Replit, Cursor, Claude Code, Windsurf, GitHub Copilot, OpenAI Codex, Devin, Base44, Leap, and any MCP-compatible host or tool that can call a REST API.
  - q: What is agentic payments?
    a: Agentic payments means AI agents initiating and managing real money movement: quotes, payouts, on-ramps, and virtual accounts: through natural language and tool calls instead of manual API integration. BlindPay exposes its full stablecoin payments API as MCP tools and Agent Skills so agents can move money compliantly.
---

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

## The three integration surfaces

::c-steps

### MCP Server

The Model Context Protocol server exposes the BlindPay API as tools. Works with 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"
```

::

::c-alert{icon="circle-info"}
Get your API key and instance ID from the [BlindPay dashboard](https://app.blindpay.com/sign-up){target="_blank"}. See the [AI page](/ai) for the full MCP, Skills, and CLI overview.
::

## Next steps

- [Quick start: stablecoin to fiat](/docs/getting-started/quick-start)
- [API reference](https://api.blindpay.com/reference)
- [BlindPay for AI agents](/ai)
