← epsilon.exchange

INDIVIDUAL MCP TOOL

get_orderbook

Open (pending/active) limit orders on both sides of a token pair, largest first.

epsilon.exchangenone authenticationAvailability not checked

LIVE ENDPOINT

https://api.epsilon.exchange/mcp

No auth detected

Connect to this endpoint to inspect the live schema for get_orderbook and invoke it with your own arguments.

Indexed input schema

{}

Risk classification

Inferred read-only · medium confidence · heuristic, not a guarantee.

  • A tool name, description or schema mentions credentials.

Parent server

epsilon.exchange

CONNECT WITH APPROVAL

Client installation

Review this server and its permissions before adding it. Secret placeholders must be set locally.

Codex

~/.codex/config.toml

[mcp_servers.epsilon]
url = "https://api.epsilon.exchange/mcp"
enabled = true
Claude Code

.mcp.json

{
  "mcpServers": {
    "epsilon": {
      "type": "http",
      "url": "https://api.epsilon.exchange/mcp"
    }
  }
}
Claude Desktop

Settings → Connectors → Add custom connector

Name: epsilon
Remote MCP URL: https://api.epsilon.exchange/mcp

Add this remote URL as a custom connector in Claude Desktop. Availability depends on the user plan and workspace policy.

Cursor

.cursor/mcp.json

{
  "mcpServers": {
    "epsilon": {
      "url": "https://api.epsilon.exchange/mcp"
    }
  }
}
Visual Studio Code

.vscode/mcp.json

Add to Visual Studio Code
{
  "servers": {
    "epsilon": {
      "type": "http",
      "url": "https://api.epsilon.exchange/mcp"
    }
  }
}
Generic MCP

Client-specific MCP configuration

{
  "name": "epsilon",
  "transport": "streamable-http",
  "url": "https://api.epsilon.exchange/mcp"
}
MCP Inspector

Run the official MCP Inspector locally and enter the indexed Streamable HTTP endpoint.

Related tools

  • error_catalog — Machine-readable catalog of every error code the Epsilon API returns, with meanings and retry guidance.
  • get_example — Full source code of one Epsilon integration example, by id from list_examples.
  • get_market_overview — One-call market snapshot of Epsilon (Robinhood Chain DEX): top tokens by 30-day volume, 24h volume aggregates, and engine-wide order/fill stats.
  • get_order_status — Look up an Epsilon order by hash: status (pending/active/filled/cancelled), parameters, and its fills.
  • get_quote — Best executable quote for swapping tokenIn → tokenOut on Epsilon (Robinhood Chain, id 4663).
  • get_route — Full routing breakdown for a swap: best venue split, expected and minimum output, price impact (ppm), and the feeLegs a signed order must embed.
  • list_examples — List runnable Epsilon integration examples (Python cron DCA, LangChain tools, Vercel AI SDK tools, Telegram bot).
  • list_orders — List Epsilon orders by maker wallet, status, and/or type — the portfolio view.