← ophis.fi

INDIVIDUAL MCP TOOL

list_chains

List Ophis chains, split into `tradeable` (orderbook host is live, only route get_quote/build_order to these) and `paused` (settlement deployed but no live orderbook yet, so these throw).

ophis.finone authenticationAvailability not checked

Input schema

{}

Risk classification

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

  • No write-capable action terms were found; this is not proof that invocation has no side effects.

Parent endpoint

ophis.fi

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.ophis]
url = "https://mcp.ophis.fi/mcp"
enabled = true
Claude Code

.mcp.json

{
  "mcpServers": {
    "ophis": {
      "type": "http",
      "url": "https://mcp.ophis.fi/mcp"
    }
  }
}
Claude Desktop

Settings → Connectors → Add custom connector

Name: ophis
Remote MCP URL: https://mcp.ophis.fi/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": {
    "ophis": {
      "url": "https://mcp.ophis.fi/mcp"
    }
  }
}
Visual Studio Code

.vscode/mcp.json

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

Client-specific MCP configuration

{
  "name": "ophis",
  "transport": "streamable-http",
  "url": "https://mcp.ophis.fi/mcp"
}
MCP Inspector

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

Related tools

  • parse_intent — Parse a plain-English swap request (e.
  • get_quote — Fetch a best-execution quote from the chain's Ophis orderbook (use a chainId from list_chains' `tradeable`).
  • build_order — Build a bounded, ready-to-sign CoW order on Ophis.
  • submit_order — Relay a PRE-SIGNED order to the chain's Ophis orderbook.
  • lookup_tier — Look up a wallet's Ophis fee-rebate tier and live status (30-day volume → bronze/silver/gold/platinum, rebate %).
  • get_integrator_earnings — Look up what an integrator's own-fee routing earned, by appCode (the identifier you tag into appData: your widget appCode or your SDK ophisReferrer code).
  • get_balances — Read a wallet's native-token balance plus ERC-20 balances for the given token addresses on one chain, via a public RPC (one multicall).
  • get_portfolio — Read a wallet's native and (optionally) ERC-20 balances across multiple chains at once.