Eterna MCP

Managed MCP server for Bybit perpetual futures trading. Isolated sub-accounts, built-in risk management, 12 trading tools.

Documentation

Eterna MCP Gateway

The fastest way to give your AI agent real trading capabilities.

No KYC. Sandboxed TypeScript SDK. Isolated sub-accounts. 0.014% maker fees on futures.

License: MIT MCP Protocol Tools SDK


30-Second Install

Add to your MCP client and complete OAuth when prompted:

{
  "mcpServers": {
    "eterna": {
      "type": "streamable-http",
      "url": "https://mcp.eterna.exchange/mcp"
    }
  }
}

Your agent is auto-provisioned on first sign-in. There is no register_agent tool.

See QUICKSTART.md for Claude, Cursor, and Openclaw walkthroughs.

Product site: ai.eterna.exchange


How it works

Eterna is not a one-MCP-tool-per-exchange-endpoint server.

  1. Agent calls search_sdk to find the right eterna.* method.
  2. Agent calls execute_code with TypeScript that uses the full SDK in one round-trip.
  3. Code runs in a sandboxed Deno runtime. Result is returned as JSON.

That model uses ~90% fewer tokens than wrapping every Bybit call as a separate MCP tool.


MCP tools

ToolDescription
execute_codeRun TypeScript in a Deno sandbox with the eterna.* trading SDK
search_sdkSearch SDK docs (list / summary / full / params / keywords)
search_examplesSemantic search over curated trading examples

Prompts

PromptDescription
getting_startedHow to use execute_code, deposit flow, sandbox rules
sdk_referenceFull eterna.* method signatures and response shapes
error_handlingError categories and recovery
technical_analysisRSI, MACD, EMA, SMA, Bollinger, VWAP
strategy_momentum_scalpingOptional strategy template
strategy_mean_reversionOptional strategy template
strategy_funding_rate_arbitrageOptional strategy template

Resources

URIDescription
eterna://docs/sdkComplete SDK reference
eterna://docs/errorsError reference
eterna://docs/examplesExample snippets

Full parameter docs: docs/tools-reference.md


SDK methods (via execute_code)

29 methods on the eterna object inside the sandbox:

CategoryMethods
Market datagetTickers, getOrderbook, getInstruments
Technical analysisgetRsi, getMacd, getEma, getSma, getBollingerBands, getVwap
TradingplaceOrder, closePosition, cancelOrder, cancelAllOrders, setLeverage, setTradingStop
AccountgetBalance, getAccountInfo, getAllCoinsBalance, getPositions, getOrders
FundinggetDepositAddress, getDepositRecords, getAllowedDepositCoins, transferToTrading, swapToUsdt, getCoinInfo, getWithdrawableAmount, submitWithdrawal, getWithdrawalStatus

Example:

const balance = await eterna.getBalance();
const ticker = await eterna.getTickers("BTCUSDT");
return { equity: balance.totalEquity, last: ticker[0]?.lastPrice };

Why Eterna?

Eterna (managed)Self-hosted MCP serversDirect API wrappers
Setup time~30 seconds15-30 minHours
AuthOAuth (or legacy API key)You create & rotate keysYou create & rotate keys
Agent isolationDedicated sub-account per agentShared accountShared account
Execution modelSandboxed TypeScript SDKUsually one tool per endpointCustom code
TransportStreamable HTTP (remote)Often stdio (local only)HTTP
MaintenanceZero — we handle updatesYou manageYou manage
Futures fees0.014% maker / 0.035% takerRetail unless you negotiate VIPRetail unless you negotiate VIP

What you don't have to build

  • Sub-account provisioning
  • Rate limiting and request validation
  • Deposit address management and fund routing
  • Error handling for exchange API changes
  • A Deno sandbox + typed trading SDK

Works with your stack

Claude (claude.ai)

Add a custom connector with URL https://mcp.eterna.exchange/mcp, complete OAuth, Approve.

Claude Code / Cursor

Use the JSON config above (Claude Code: .mcp.json, Cursor: .cursor/mcp.json). Complete OAuth when prompted.

Openclaw

openclaw plugins install @eterna-hybrid-exchange/openclaw-plugin
npm install -g @eterna-hybrid-exchange/cli
eterna login

Any Streamable HTTP MCP client

Point the client at https://mcp.eterna.exchange/mcp and authenticate with OAuth (mcp:full) or a legacy Bearer API key. Polished guides for LangChain / CrewAI / AutoGen / ChatGPT are expanding.


Authentication

Preferred: OAuth via https://ai-auth.eterna.exchange with scope mcp:full.

Legacy: long-lived agent API keys as Authorization: Bearer … (Argon2 hashed at rest).

Details: docs/authentication.md


Markets

  • USDT-margined perpetual futures (200+ pairs)
  • Spot trading is on the roadmap

Roadmap

See ROADMAP.md.

Shipped: code execution sandbox, OAuth agent provisioning, 29 SDK methods, technical analysis, funding/withdrawal flows.

Next: broader SDK coverage, cron strategy runtime, backtesting, spot.


Skills

Claude Code skills for trading knowledge:

Or grab the latest bundle: https://ai.eterna.exchange/claude-skills


Documentation

Machine-readable product facts: https://ai.eterna.exchange/llms.txt


Contact

Questions, partnerships, or support: contact@eterna.exchange


License

MIT — Copyright 2025-2026 Eterna Exchange