https://api.delora.build/v1.
Workflow & Instructions
get_instructions
Call this first. Returns the guide for using the Delora MCP server: how to get quotes, chains, tokens, and tools. No parameters required.Quote & Routing
get_quote
Get a cross-chain quote: best route, estimated output amount, calldata, and gas. Useget_chains and get_tokens (or get_token) first to resolve chain IDs and token addresses.
The response includes
inputAmount, outputAmount, adapter, a single calldata object (transaction data for the wallet), and optional fees, gas, and warnings details.
Address behavior follows the REST API contract:
senderAddressis always required.receiverAddressis optional only when the origin and destination chain types match.- If the chain types differ,
receiverAddressmust be provided explicitly.
Chain Information
get_chains
List supported chains. Returns chain IDs, names, chain types, RPC URLs, block explorer links, and native token info.Token Information
get_tokens
List supported tokens. Use this to discover available tokens before requesting quotes. Optionally filter by chains and/or chain types.get_token
Get details about a single token by chain and token address or symbol (price, decimals, name, etc.).Discovery & Tools
get_tools
List available tools (bridges, DEXes). Returns keys and names; you can filter by supported chains.API Base URL
All tools call the Delora API athttps://api.delora.build/v1. The MCP server can be configured with a different base URL via the DELORA_API_URL environment variable when self-hosting.
