The server never signs
This is the property that makes the server safe to wire into an autonomous agent. No tool accepts a private key, and no tool signs or submits anything:velora_build_transactionreturns an unsigned Market transaction. Your client signs it with the user’s wallet.- Delta quotes hand back the documented build → sign → submit path. The EIP-712 typed data is signed externally, never by the server.
- Raw quote payloads, including the
deltaobject and itshmac, are preserved byte-for-byte. The server never mutates what the API returned.
Velora’s rules, encoded as tools
LLMs forget API rules under pressure; deterministic tools don’t. Three guidance tools run pure rule-based logic, with no network calls and no model in the loop:| Tool | What it prevents |
|---|---|
velora_decide_execution_route | Quoting with the wrong mode. MEV protection, crosschain, Limit Orders, and TWAP all route to Delta; OTC is flagged as the AugustusRFQ flow, not a quote mode. |
velora_validate_agent_plan | Shipping a plan with classic mistakes: network instead of chainId, crosschain with mode=MARKET, Limit Orders treated as RFQ, or any signing step (flagged critical). |
velora_explain_quote | Misreading a quote. Classifies the response as delta or market and surfaces any fallbackReason, so the agent branches on shape instead of assumptions. |
agentHints (the next safe step) and docs (links into this site), so an agent that has never seen Velora can complete a flow correctly on the first pass.
Tools at a glance
| Category | Tools |
|---|---|
| Quoting and building | velora_get_quote (Delta, Market, or ALL), velora_build_transaction (unsigned, Market only) |
| Agent guidance | velora_decide_execution_route, velora_explain_quote, velora_validate_agent_plan |
| Market data | velora_get_supported_chains, velora_get_tokens |
| Documentation | velora_search_docs, velora_get_docs_page |
llms.txt), the full documentation, and the OpenAPI specs for Delta, Market, and AugustusRFQ. Full schemas are on Available tools.
When to use it
- Trading agents that need live quotes plus a safety rail between the model and the user’s wallet.
- Coding agents building a Velora integration: the docs tools and OpenAPI resources keep generated code grounded in canonical behavior.
- Chat assistants answering “what would this swap cost” questions with real routes.
Next steps
Installation
Add the server to Claude Code, Claude Desktop, Cursor, Windsurf, or VS Code in under a minute.
Available tools
Every tool and resource, with verbatim parameters and the agent rules each one enforces.
Examples
Worked tool-call sequences: Delta swaps, Market swaps, fallback handling, plan validation.
Build an MCP client
A verified prompt that gets a coding agent to a working client in 50 lines.