Command Palette

Search for a command to run...

UnylyUnyly
Browse all

kukapay/stargate-bridge-mcp

FreeNot checked

An MCP server that enables cross-chain token transfers via the Stargate protocol.

GitHubEmbed

About

An MCP server that enables cross-chain token transfers via the Stargate protocol.

README

An MCP server that enables cross-chain token transfers via the Stargate protocol.

GitHub License Python Version Status

Features

  • Chain Discovery: List all supported blockchains with key details.
  • Token Discovery: Find bridgeable tokens across chains.
  • Quote Fetching: Get real-time bridge quotes with fees, estimates, and transaction steps.
  • Automated Bridging: Execute transfers with automatic signing and broadcasting using your private key.
  • MCP Integration: Fully compliant with MCP spec for easy use in Claude, Cursor, or other MCP clients.
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)

Known Limitations

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.

Quick Start

Prerequisites

  • Python 3.10+
  • uv for dependency management (recommended; fallback to pip)
  • A .env file with your Ethereum-compatible private key (e.g., PRIVATE_KEY=0x...). Never commit this file!

Installation

  1. Clone the repo:

    git clone https://github.com/kukapay/stargate-bridge-mcp.git
    cd stargate-bridge-mcp
    
  2. Install dependencies with uv:

    uv sync  # Or uv add requests web3 python-dotenv "mcp[cli]"
    
  3. Install to Claude Desktop:

    Install the server as a Claude Desktop application:

    uv run mcp install main.py --name "Stargate Bridge"
    

    Configuration file as a reference:

    {
       "mcpServers": {
           "Stargate Bridge": {
               "command": "uv",
               "args": [ "--directory", "/path/to/stargate-bridge-mcp", "run", "main.py" ],
               "env": { "PRIVATE_KEY": "your_private_key"}
           }
       }
    }
    

    Replace /path/to/stargate-bridge-mcp with your actual installation path, and replace your_private_key with your wallet private key.

Usage Examples

These examples simulate interactions in an MCP client like Claude Desktop. Each includes a natural language prompt, the tool call, and sample output.

1. List Supported Chains

Prompt: "Show me all the chains supported by Stargate for bridging."

Tool Call: list_chains()

Sample Output (Markdown table, sorted by chainKey):

| chainKey | Name | Chain Type | Chain ID | Native Symbol |
|----------|------|------------|----------|---------------|
| arbitrum | Arbitrum One | evm | 42161 | ETH |
| avalanche | Avalanche C-Chain | evm | 43114 | AVAX |
| base | Base | evm | 8453 | ETH |
| bnbchain | BNB Smart Chain | evm | 56 | BNB |
| ethereum | Ethereum | evm | 1 | ETH |
| ... (additional chains)

2. List Bridgeable Tokens

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):

| Chain Key | Symbol | Address |
|-----------|--------|---------|
| arbitrum | USDC | 0xA0b86a33E641b9E649bEe6b2D5D7b5b4D8f3a0a |
| avalanche | USDC | 0xB97EF9Ef8734C71904D8002F8b6Bc66Dd9c48a6E |
| polygon | USDC | 0x2791Bca1f2de4661ED88A30C99A7a9449Aa84174 |
| ... (additional destinations)

3. Get Bridge Quotes

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):

# Stargate Bridge Quotes

**Src**: ETHEREUM USDC 10.0 → **Dst**: POLYGON USDC

## Quote 1 (stargate/v2/taxi)
- **Expected Receive**: 9.98 USDC
- **Min Receive**: 9.90 USDC
- **Est. Time**: 180s
- **Fees**:
  - 0.000050 ETH on ethereum (message)

### Steps
  - **Step 1 (bridge)**: To 0x77b204... | Value: 0.0100 ETH | Data: 0xc7c7f5b3...

**Note**: Use `bridge_transfer` to execute (uses first quote).

4. Execute Bridge Transfer

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):

## Bridge Transfer Successful

Transaction hashes:
- Step 1: 0x1234abcd...efgh5678

Note: If it fails (e.g., insufficient gas), returns an error like # Error\nStep 1 failed (reverted).

License

MIT License - see LICENSE for details.

from github.com/kukapay/stargate-bridge-mcp

Installing kukapay/stargate-bridge-mcp

This server has no published package — it is built from source. Open the repository and follow its README.

▸ github.com/kukapay/stargate-bridge-mcp

FAQ

Is kukapay/stargate-bridge-mcp MCP free?

Yes, kukapay/stargate-bridge-mcp MCP is free — one-click install via Unyly at no cost.

Does kukapay/stargate-bridge-mcp need an API key?

No, kukapay/stargate-bridge-mcp runs without API keys or environment variables.

Is kukapay/stargate-bridge-mcp hosted or self-hosted?

Self-hosted: the server runs locally on your machine via the install command above.

How do I install kukapay/stargate-bridge-mcp in Claude Desktop, Claude Code or Cursor?

Open kukapay/stargate-bridge-mcp on unyly.org, pick your client tab (Claude Desktop, Claude Code, Cursor) and press Install — the config is generated automatically, no JSON editing.

Related MCPs

$5

Stripe

Payments, customers, subscriptions

Stripeby Stripe

malamutemayhem/unclick-agent-native-endpoints

110+ tools for AI agents spanning social media, finance, gaming, music, AU-specific services, and utilities. Zero-config local tools plus platform connectors. n

malamutemayhemby malamutemayhem

whiteknightonhorse/APIbase

Unified API hub for AI agents with 56+ tools across travel (Amadeus, Sabre), prediction markets (Polymarket), crypto, and weather. Pay-per-call via x402 micropa

whiteknightonhorseby whiteknightonhorse

trackerfitness729-jpg/sitelauncher-mcp-server

Deploy live HTTPS websites in seconds. Instant subdomains ($1 USDC) or custom .xyz domains ($10 USDC) on Base chain. Templates for crypto tokens and AI agent pr

trackerfitness729-jpgby trackerfitness729-jpg

embeddedlayers/mcp-analytics

Statistical analysis, forecasting, and ML for business data (Shopify, Stripe, WooCommerce, eBay, GA4, Search Console). Upload a CSV or connect live data sources

embeddedlayersby embeddedlayers

carrierone/verilexdata-mcp

20 structured datasets (NPI healthcare, SEC filings, OFAC sanctions, crypto whales, Polymarket signals, patents, economic indicators) via x402 pay-per-query wit

carrieroneby carrierone

tipdotmd/tip-md-x402-mcp-server

MCP server for cryptocurrency tipping through AI interfaces using x402 payment protocol and CDP Wallet.

tipdotmdby tipdotmd

laundromatic/shopgraph

Structured product data from the open web — Schema.org + AI extraction for e-commerce enrichment. Pay per call via Stripe. [shopgraph.dev](https://shopgraph.dev

laundromaticby laundromatic

mrslbt/xendit-mcp

Xendit payment gateway for Southeast Asia. Invoices, disbursements, balance checks, and bank transfers across Indonesia, Philippines, Thailand, Vietnam, and Mal

mrslbtby mrslbt

@arbitova/mcp-server

Non-custodial on-chain escrow + AI dispute arbitration for agent-to-agent USDC payments on Base. Seven tools covering the full EscrowV1 contract surface: create

jiayuanliang0716-maxby jiayuanliang0716-max

Compare kukapay/stargate-bridge-mcp with

Not sure what to pick?

Find your stack in 60 seconds

Author?

Embed badge for your README

Browse similar

All finance MCPs