---
title: "Talk to Your Payment API"
description: "BlindPay MCP Server: Connect AI coding assistants to global payment infrastructure. Execute payments, manage customers, and process transactions using natural language instead of API calls."
date: "2026-01-13"
categories: ["product", "engineering", "guide"]
author: "Eric Viana"
thumbnail: "/images/blog/mcp.png"
isBlog: true
faq:
  - q: "What is the BlindPay MCP Server?"
    a: "The BlindPay MCP Server is a Model Context Protocol bridge that connects AI coding assistants to BlindPay's payment API, so you can run payment operations in natural language instead of manual API calls."
  - q: "What can the BlindPay MCP Server do?"
    a: "Quote generation, customer management, payout processing across multiple blockchains, virtual account creation, webhook configuration, and real-time FX rates."
  - q: "How do I set up the BlindPay MCP Server?"
    a: "Get your API key from the BlindPay dashboard, add the MCP server configuration to your AI assistant, then make requests in natural language."
  - q: "What is the difference between the MCP Server and Agent Skills?"
    a: "The MCP Server gives an assistant tools to execute operations; Agent Skills give it knowledge of BlindPay concepts and flows. Many developers use both together."
---

![BlindPay MCP](/images/blog/mcp.png)

The BlindPay MCP Server connects AI coding assistants to BlindPay's global payment infrastructure, allowing developers to interact with payment APIs using natural language instead of manual API calls.

## Overview

The BlindPay MCP (Model Context Protocol) acts as a bridge between your AI coding assistants and BlindPay's payment infrastructure. Instead of writing integration code or navigating dashboards, you can ask your AI assistant to execute payment operations directly.

This means you can handle cross-border payments, manage customers and process transactions without leaving your code editor or memorizing API documentation.

## Capabilities

The MCP server provides access to BlindPay's core functionality:

- **Quote generation** for international transfers
- **Customer management** for individuals and businesses
- **Payout processing** across multiple blockchains
- **Virtual account creation** for receiving payments
- **Webhook configuration** for payment notifications
- **Real-time FX rates** for currency conversions

All operations are executed through conversational requests to your AI assistant.

## Example Usage

**Traditional API call:**

```bash
curl -X POST https://api.blindpay.com/v1/instances/in_xxx/quotes \
  -H "Authorization: Bearer sk_xxx" \
  -d '{"bank_account_id":"ba_xxx","currency_type":"sender",...}'
```

**With the MCP server:**

> "Get me a quote for sending 1000 USDC to a bank account in Brazil"

The AI assistant interprets the request and executes the appropriate API calls.

## Setup

Configuration requires three steps:

1. Get your API key from the BlindPay dashboard
2. Add the MCP server configuration to your AI assistant
3. And you're ready to begin making requests in natural language

## Documentation

Complete setup instructions and API reference documentation are available in the [README on GitHub](https://github.com/blindpaylabs/blindpay-mcp).
