Skip to main content
The Velora MCP server is hosted, so installation is one step: point your client at the endpoint. Nothing runs on your machine, and the server requires no API key.
https://ai.velora.xyz/mcp
The endpoint speaks Streamable HTTP, the current MCP transport. Clients that only support the legacy HTTP+SSE transport (pre-2025-03-26 spec) use https://ai.velora.xyz/mcp/sse instead.

Client setup

claude mcp add --transport http velora https://ai.velora.xyz/mcp
Run /mcp inside Claude Code to confirm the server is connected and list its tools.

Verify the connection

A correctly connected client lists 9 tools (all prefixed velora_) and 5 resources (all prefixed velora://docs/).
  1. List the server’s tools (tools/list, or your client’s MCP panel). Expect 9 tools, from velora_search_docs to velora_validate_agent_plan.
  2. Call velora_get_supported_chains with no arguments. Expect a chain list that includes Ethereum (1), Base (8453), and Arbitrum (42161).
You can also smoke-test from the command line without any MCP client:
curl -s https://ai.velora.xyz/mcp \
  -H 'Content-Type: application/json' \
  -H 'Accept: application/json, text/event-stream' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'
The response arrives as a single SSE frame; the JSON-RPC result is on the data: line.

Troubleshooting

SymptomCauseFix
405 on GET /mcpThe stateless endpoint has no standalone SSE stream.POST JSON-RPC to /mcp, or use the legacy transport at /mcp/sse if your client requires a GET-opened stream.
406 Not Acceptable from your own client codeMissing Accept header values.Send Accept: application/json, text/event-stream on every POST.
Client expects an SSE endpoint eventThe client speaks the pre-2025-03-26 HTTP+SSE transport.Point it at https://ai.velora.xyz/mcp/sse instead.
Client asks for an API key or OAuth flowMisconfigured auth settings.Leave authentication empty; the server is public and requires none.
Connection works but tool calls are rejectedPer-IP rate limiting.Back off and retry; batch agent work instead of polling in a tight loop.

Next steps

Available tools

Parameters, return shapes, and the agent rules each tool enforces.

Examples

End-to-end tool-call sequences for Delta and Market flows.
Last modified on June 14, 2026