
Delora MCP
- 1 repo stars
- Updated May 14, 2026
- DeloraProtocol/delora-mcp
Delora MCP is a MCP server that exposes cross-chain quotes, supported chains, tokens, and Delora tools to coding agents.
About
Delora MCP is the Model Context Protocol surface for Delora’s cross-chain services: your coding agent can request quotes, enumerate supported chains and tokens, and use companion tools without hand-rolling HTTP clients for every prompt. developers experimenting with DeFi dashboards, swap assistants, or chain-agnostic backends often stall on inconsistent RPC and pricing APIs; centralizing that behind MCP keeps iteration inside Claude Code or Cursor. The server ships as @deloraprotocol/mcp version 0.1.5 with stdio for local installs, and a streamable-http remote at mcp.delora.build/mcp when you prefer hosted transport. An optional DELORA_API_KEY (sent as x-api-key) unlocks Delora API features that require authentication—store it as a secret in your client config. Place it in Build integrations because it accelerates wiring, not launch SEO or production incident response. Validate quotes and slippage assumptions on-chain in your own testnets; MCP responses are building blocks, not trade execution guarantees. Pair with your wallet and transaction signing stack separately.
- @deloraprotocol/mcp npm v0.1.5 with stdio MCP plus remote streamable-http at https://mcp.delora.build/mcp
- Tools for cross-chain quotes, supported chains, tokens, and related Delora utilities
- Optional DELORA_API_KEY / x-api-key header forwarded to Delora API
- Fits agent-assisted prototyping of routing, bridging, and token discovery UX
- Source repository DeloraProtocol/delora-mcp on GitHub
Delora MCP by the numbers
- Data as of Jul 7, 2026 (Skillselion catalog sync)
claude mcp add --env DELORA_API_KEY=YOUR_DELORA_API_KEY delora-mcp -- npx -y @deloraprotocol/mcpAdd your badge
Show developers this MCP server is listed on Skillselion. Paste this into your README.
| repo stars | ★ 1 |
|---|---|
| Package | @deloraprotocol/mcp |
| Transport | STDIO, HTTP |
| Auth | Required |
| Last updated | May 14, 2026 |
| Repository | DeloraProtocol/delora-mcp ↗ |
What it does
Pull cross-chain quotes, supported chains, and token metadata into your agent while building DeFi or multi-chain product flows.
Who is it for?
Best when you're prototyping cross-chain swaps, bridges, or token explorers with agent-assisted integration work.
Skip if: Non-crypto products, teams blocked from external DeFi APIs, or production trading without separate risk and execution review.
What you get
After registration, agents call Delora MCP tools for chain lists, token metadata, and quotes instead of bespoke fetch code in each session.
- Configured Delora MCP access via stdio or remote mcp.delora.build/mcp
- Agent-callable tools for chains, tokens, and cross-chain quotes
- Faster integration scaffolding for multi-chain product prototypes
By the numbers
- Package version 0.1.5 identifier @deloraprotocol/mcp
- Remote URL https://mcp.delora.build/mcp type streamable-http
- Optional secret headers x-api-key and env DELORA_API_KEY
README.md
Delora MCP
MCP (Model Context Protocol) server for the Delora API: cross-chain quotes, supported chains, tokens, and tools.
Install
npm install
Configuration
Copy env.example to .env and adjust:
| Variable | Description | Default |
|---|---|---|
DELORA_API_URL |
Delora API base URL | https://api.delora.build |
DELORA_API_KEY |
Optional API key forwarded to Delora API as x-api-key |
unset |
MCP_TRANSPORT |
stdio or http |
stdio |
PORT |
HTTP server port (when MCP_TRANSPORT=http) |
3000 |
HOST |
HTTP bind address | 0.0.0.0 |
When DELORA_API_KEY is set, the MCP server forwards it to Delora API as the x-api-key header. In HTTP mode, the server also accepts incoming x-api-key or Authorization: Bearer ... headers and forwards the resolved key upstream. For HTTP requests, incoming headers take priority over DELORA_API_KEY. For stdio, DELORA_API_KEY remains the way to provide the key.
Run
Stdio (default) — for Cursor/IDE MCP over stdio:
npm run dev
# or
npm run build && npm start
HTTP — for streamable HTTP (e.g. behind a reverse proxy):
npm run dev:http
# or
npm run build && npm run start:http
Server listens on http://0.0.0.0:3000/mcp.
Cursor configuration
Stdio:
{
"mcpServers": {
"delora": {
"command": "node",
"args": ["/path/to/delora-mcp/dist/index.js"]
}
}
}
Streamable HTTP (e.g. after deploying to https://mcp.delora.build):
{
"mcpServers": {
"delora": {
"url": "https://mcp.delora.build/mcp",
"transport": "streamable-http",
"headers": {
"x-api-key": "YOUR_API_KEY"
}
}
}
}
You can also use Authorization: Bearer YOUR_API_KEY instead of x-api-key when your MCP client supports custom HTTP headers.
Docker
Build and run:
docker build -t delora-mcp .
docker run -p 3000:3000 -e MCP_TRANSPORT=http delora-mcp
For production behind a domain (e.g. mcp.delora.build): run the container with MCP_TRANSPORT=http and put nginx/traefik (or another reverse proxy) in front with HTTPS; then use the URL https://mcp.delora.build/mcp with streamable-http in Cursor.
API
- Delora API — base URL for all
/v1/*endpoints (quotes, chains, tokens, tools, token).
Tools
| Tool | Description |
|---|---|
get_instructions |
Returns this guide (call first for workflow). |
get_quote |
GET /v1/quotes — cross-chain quote. |
get_chains |
GET /v1/chains — supported chains. |
get_tools |
GET /v1/tools — available tools. |
get_tokens |
GET /v1/tokens — supported tokens. |
get_token |
GET /v1/token — single token by chain + token. |
Recommended MCP Servers
How it compares
DeFi data and quoting MCP integration, not an on-chain wallet or smart-contract deploy skill.
FAQ
Who is Delora MCP for?
It is for developers building multi-chain or DeFi experiences who want Delora quotes, chains, and token tools available inside MCP-capable coding agents.
When should I use Delora MCP?
Use it during Build integrations while you prototype routing UX, compare chains, or scaffold services that depend on Delora’s API.
How do I add Delora MCP to my agent?
Either add stdio server @deloraprotocol/mcp with optional DELORA_API_KEY, or configure the remote URL https://mcp.delora.build/mcp with x-api-key, then restart your MCP client.