Bridge MCP Server
Wraps the Bridge.xyz stablecoin infrastructure API to enable AI assistants to manage customers, wallets, virtual accounts, transfers, and more for fiat and crypto payments.
README
Bridge MCP Server
An MCP (Model Context Protocol) server that wraps the Bridge.xyz stablecoin infrastructure API, enabling AI assistants to interact with Bridge's payment and stablecoin services.
Features
- Customer Management: Create and manage individual/business customers with KYC/KYB
- Wallet Operations: Create custodial wallets on Solana, Ethereum, Polygon, and Base
- Virtual Accounts: Set up fiat deposit addresses that auto-convert to stablecoins
- Transfers: Move money between fiat and crypto (on-ramp, off-ramp, crypto-to-crypto)
- External Accounts: Link bank accounts for payouts
- Webhooks: Subscribe to Bridge events
- Exchange Rates: Get current conversion rates
Installation
npm install @lnflash/bridge-mcp
Or clone and build from source:
git clone https://github.com/lnflash/bridge-mcp.git
cd bridge-mcp
npm install
npm run build
Configuration
Set your Bridge API key as an environment variable:
export BRIDGE_API_KEY="your-api-key-here"
# Optional: Use sandbox environment
export BRIDGE_BASE_URL="https://api.sandbox.bridge.xyz/v0"
Usage with Claude Desktop
Add to your Claude Desktop configuration (~/Library/Application Support/Claude/claude_desktop_config.json):
{
"mcpServers": {
"bridge": {
"command": "npx",
"args": ["@lnflash/bridge-mcp"],
"env": {
"BRIDGE_API_KEY": "your-api-key-here"
}
}
}
}
Or if installed locally:
{
"mcpServers": {
"bridge": {
"command": "node",
"args": ["/path/to/bridge-mcp/dist/index.js"],
"env": {
"BRIDGE_API_KEY": "your-api-key-here"
}
}
}
}
Available Tools
Customer Operations
| Tool | Description |
|---|---|
bridge_create_customer |
Create a new individual or business customer |
bridge_get_customer |
Get customer details by ID |
bridge_list_customers |
List all customers with pagination |
Wallet Operations
| Tool | Description |
|---|---|
bridge_create_wallet |
Create a custodial wallet on a blockchain |
bridge_get_wallet |
Get wallet details |
bridge_list_wallets |
List all wallets for a customer |
Virtual Account Operations
| Tool | Description |
|---|---|
bridge_create_virtual_account |
Create a fiat deposit address that auto-converts to stablecoins |
bridge_get_virtual_account |
Get virtual account details |
bridge_list_virtual_accounts |
List all virtual accounts for a customer |
Transfer Operations
| Tool | Description |
|---|---|
bridge_create_transfer |
Create a transfer (fiat↔crypto, crypto↔crypto) |
bridge_get_transfer |
Get transfer status |
bridge_list_transfers |
List transfers with optional filtering |
External Account Operations
| Tool | Description |
|---|---|
bridge_create_external_account |
Link a bank account for payouts |
bridge_get_external_account |
Get external account details |
bridge_list_external_accounts |
List all external accounts for a customer |
Webhook Operations
| Tool | Description |
|---|---|
bridge_create_webhook |
Create a webhook endpoint |
bridge_list_webhooks |
List all webhook endpoints |
Utility
| Tool | Description |
|---|---|
bridge_get_exchange_rates |
Get current exchange rates |
Example Workflows
On-ramp: Fiat to Stablecoin
- Create a customer:
bridge_create_customer - Create a wallet:
bridge_create_wallet(e.g., Solana) - Create a virtual account:
bridge_create_virtual_account(USD → USDC) - Share the bank details with the customer to deposit fiat
- Bridge auto-converts and sends USDC to the wallet
Off-ramp: Stablecoin to Fiat
- Create external account:
bridge_create_external_account(link bank) - Create transfer:
bridge_create_transfer(bridge_wallet → ach) - Monitor status:
bridge_get_transfer
Supported Currencies
Fiat
- USD (ACH, Wire)
- EUR (SEPA)
- MXN (SPEI)
- BRL (PIX)
- GBP
Stablecoins
- USDC
- USDB (Bridge's native stablecoin)
- EURC
Blockchains
- Ethereum
- Polygon
- Solana
- Base
Development
# Watch mode
npm run dev
# Build
npm run build
# Run
npm start
License
MIT
Links
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.