Supported Protocols
Setup
Deploy Gateway via Telegram:Swaps
Execute token swaps via/swap in Telegram or the API.
Telegram:
Liquidity Provision
Manage CLMM positions via/lp in Telegram.
Add Liquidity:
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Help shape Condor. What's working? What's missing? The survey takes 2 minutes and directly shapes what we build next. Take the survey β
DEX trading via Gateway for swaps and liquidity provision
| Protocol | Chain | Features |
|---|---|---|
| Jupiter | Solana | Swaps, routing |
| Orca | Solana | CLMM LP, swaps |
| Raydium | Solana | CLMM LP, swaps |
| Meteora | Solana | CLMM LP |
| Uniswap V3 | Ethereum, Base | CLMM LP, swaps |
/config β Gateway β Deploy Gateway
curl -u admin:admin -X POST http://localhost:8000/gateway/deploy
/swap in Telegram or the API.
Telegram:
/swap β Select chain β Enter tokens β Get quote β Execute
curl -u admin:admin -X POST http://localhost:8000/gateway/swap/execute \
-H "Content-Type: application/json" \
-d '{
"chain": "solana",
"connector": "jupiter",
"base_token": "SOL",
"quote_token": "USDC",
"amount": "1.0",
"side": "sell"
}'
/lp in Telegram.
Add Liquidity:
/lp β Add Liquidity β Select pool β Set range β Deposit
/lp β My Positions β Select position β Remove
/lp β My Positions β Select position β Collect Fees
curl -u admin:admin -X POST http://localhost:8000/gateway/clmm/pools \
-H "Content-Type: application/json" \
-d '{
"chain": "solana",
"connector": "orca"
}'
# Get swap quote
quote = await mcp_tools.manage_gateway_swaps(
action="quote",
chain="solana",
connector="jupiter",
base_token="SOL",
quote_token="USDC",
amount="1.0",
side="sell"
)
# Execute swap
result = await mcp_tools.manage_gateway_swaps(
action="execute",
chain="solana",
connector="jupiter",
base_token="SOL",
quote_token="USDC",
amount="1.0",
side="sell"
)
/config β Wallets β Create Wallet β Select chain
/config β Wallets β Import Wallet β Enter private key
Was this page helpful?
