The full upstream README, mirrored here for reference. Install config, tool schemas, adoption signals, and an original overview live on the Stargate Bridge MCP listing page.
An MCP server that enables cross-chain token transfers via the Stargate protocol.
| Tool | Description | Key Parameters |
|---|---|---|
list_chains | Lists supported chains in a sorted Markdown table. | None |
list_bridgeable_tokens | Lists bridgeable destinations for a source token. | src_chain_key, src_token |
get_quotes | Fetches detailed quotes for a bridge route. | src_chain_key, dst_chain_key, src_token, dst_token, src_amount, dst_amount_min (optional: src_address, dst_address) |
bridge_transfer | Executes a bridge transfer (uses first quote). | src_chain_key, dst_chain_key, src_token, dst_token, src_amount, dst_amount_min (optional: dst_address) |
Currently supports cross-chain bridging only between EVM-compatible chains (e.g., Ethereum, Polygon, Arbitrum). Non-EVM chains like Solana are planned for future support.
.env file with your Ethereum-compatible private key (e.g., PRIVATE_KEY=0x...). Never commit this file!Clone the repo:
Install dependencies with uv:
Install to Claude Desktop:
Install the server as a Claude Desktop application:
Configuration file as a reference:
Replace /path/to/stargate-bridge-mcp with your actual installation path, and replace your_private_key with your wallet private key.
These examples simulate interactions in an MCP client like Claude Desktop. Each includes a natural language prompt, the tool call, and sample output.
Prompt: "Show me all the chains supported by Stargate for bridging."
Tool Call: list_chains()
Sample Output (Markdown table, sorted by chainKey):
Prompt: "What tokens can I bridge USDC from Ethereum to other chains?"
Tool Call: list_bridgeable_tokens("ethereum", "0xA0b86a33E641b9E649bEe6b2D5D7b5b4D8f3a0a") (USDC on Ethereum)
Sample Output (Markdown table, sorted by Chain Key):
Prompt: "Get quotes for bridging 10 USDC from Ethereum to Polygon with 1% slippage."
Tool Call: get_quotes("ethereum", "polygon", "0xA0b86a33E641b9E649bEe6b2D5D7b5b4D8f3a0a", "0x2791Bca1f2de4661ED88A30C99A7a9449Aa84174", 10.0, 9.9)
Sample Output (Concise Markdown):
Prompt: "Execute the bridge for 10 USDC from Ethereum to Polygon."
Tool Call: bridge_transfer("ethereum", "polygon", "0xA0b86a33E641b9E649bEe6b2D5D7b5b4D8f3a0a", "0x2791Bca1f2de4661ED88A30C99A7a9449Aa84174", 10.0, 9.9)
Sample Output (On success; Markdown):
Note: If it fails (e.g., insufficient gas), returns an error like # Error\nStep 1 failed (reverted).
MIT License - see LICENSE for details.