The exchange built for AI agents.
One integration. $10B+ liquidity.
The lowest fees. No KYC.
Key metrics
How digital cash can benefit your AI agent?
This firechat explores how better payment infrastructure can help your agent do more with less friction. The discussion looks at why fast settlement, low-cost transactions, wallet flows, and machine-to-machine payments matter when software is making decisions in real time. With Tobias Ruck from the eCash dev team, the session focuses on the practical benefit for end users: a more capable agent, smoother execution, and better infrastructure for autonomous financial actions.
Workshop starts in
Works with your stack
Add Eterna as an MCP connector on claude.ai. Works with Claude Code and Claude Desktop too.
https://mcp.eterna.exchange/mcp
One prompt to install, authenticate, and start trading. Includes guided onboarding.
Install the Eterna trading plugin and help me set up my first trade.
Connect Eterna to ChatGPT.
Add Eterna MCP to Cursor.
Use Eterna with Gemini CLI.
Integrate with LangChain agents.
Build CrewAI trading agents.
Use with AutoGen multi-agent.
Code execution, not tool calls
Your agent writes TypeScript. We execute it in a sandboxed Deno runtime with a full trading SDK. One round-trip handles what standard MCP servers need dozens of tool calls for — 90% fewer tokens.
const balance = await eterna.getBalance()
const positions = await eterna.getPositions()
const ticker = await eterna.getTickers("BTCUSDT")
if (positions.length === 0) {
await eterna.placeOrder({
symbol: "BTCUSDT",
side: "Buy",
qty: "0.01",
orderType: "Market",
})
}29 SDK methods. One connection. Your agent composes them freely in a single execution — no back-and-forth.
Market data
- Real-time tickers, orderbooks, and contract specs
- RSI, MACD, EMA, SMA, Bollinger Bands, VWAP
Trading
- Market and limit orders with TP/SL
- Position management and leverage control
- Cancel single or all open orders
Account
- Balance, positions, and order history
- Multi-coin wallet balances
Funding
- Deposit addresses and records
- Wallet transfers and coin swaps
- Withdrawals with approval flow
What you don't have to build
Questions
Which platforms are supported?
Do I need a Bybit account?
How are API keys secured?
What markets are supported?
What is the Eterna CLI?
npx @eterna-hybrid-exchange/cli.