Quickstart
You can connect the hosted Delora MCP server directly in your MCP-compatible client. No local installation is required. Add the following configuration to your MCP client:How It Works
The Delora MCP server wraps the REST API into MCP-compatible tools that AI agents can invoke directly. Instead of building raw HTTP requests, your AI tool works with structured methods such asget_chains, get_token, and get_quote.
Delora API returns an execution-ready transaction payload (
calldata). The user or integrator wallet signs and broadcasts the blockchain transaction. Internally, the payload encodes the selected route, constraints, fee logic, deadlines, and adapter-specific execution data.Example Workflow
A typical cross-chain routing flow using the Delora MCP server:get_token (chain, symbol) or get_tokens (chains)
Get token addresses on the source and destination networks.
- If required, approve tokens using your wallet.
- Sign and broadcast the returned transaction data externally.
API Key Configuration
Delora MCP does not take an API key as a tool argument. For HTTP MCP clients that support custom headers, you can pass your Delora API key directly to the MCP endpoint using either:x-api-key: YOUR_API_KEYAuthorization: Bearer YOUR_API_KEY
x-api-key.
Example hosted MCP configuration:
stdio mode, configure the MCP server process with DELORA_API_KEY instead:
For HTTP requests, incoming
x-api-key / Authorization headers take priority over DELORA_API_KEY. For stdio, DELORA_API_KEY is the supported way to provide the key.Integrator String & Fees
get_quote supports the optional integrator and fee parameters:
integratorshould be the same integrator string configured for your Delora integration.feeis optional, but it is only valid whenintegratoris also provided.- If you only need attribution or tracking, you can send
integratorwithoutfee.
Next Steps
Installation
Setup instructions for AI models.
GitHub Repository
Source code and self-hosting guide.

