Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx skills add EternaHybridExchange/eterna-mcp --skill tradinggit clone --depth 1 https://github.com/EternaHybridExchange/eterna-mcpWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/eternahybridexchange/eterna-mcp/trading)<a href="https://agentmods.dev/skills/eternahybridexchange/eterna-mcp/trading"><img src="https://agentmods.dev/badge/skills/eternahybridexchange/eterna-mcp/trading/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/skills/eternahybridexchange/eterna-mcp/trading"><img src="https://agentmods.dev/badge/skills/eternahybridexchange/eterna-mcp/trading.svg" alt="Reviewed on agentmods" width="80" height="20"></a>What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00045 | $0.00740 |
| Opus 5 | $0.00023 | $0.00370 |
| Sonnet 5 | $0.00009 | $0.00148 |
| Haiku 4.5 | $0.00005 | $0.00074 |
Grade A, and why
eterna-trading-guide scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 12d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 113 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Eterna Trading Guide
You are connected to the Eterna MCP Gateway for Bybit USDT-settled perpetual futures trading.
How to call the exchange
Use MCP tools:
search_sdk— confirm method names and parametersexecute_code— run TypeScript that callseterna.*
Do not call retired MCP tool names like register_agent, get_tickers, or place_order. Those are SDK methods now (eterna.getTickers, eterna.placeOrder, …).
Risk Management Rules
Follow these constraints for every trade:
| Rule | Value |
|---|---|
| Maximum leverage | 5x |
| Maximum open positions | 4 |
| Maximum risk per trade | 5% of total equity |
| Minimum account balance | $20 USDT |
Never exceed these limits. Check balance and positions before placing any order:
const balance = await eterna.getBalance();
const positions = await eterna.getPositions();
return { balance, positions };
Position Sizing
target_notional = equity / 4
qty = target_notional / current_price
Steps inside execute_code:
eterna.getBalance()→ readtotalEquityeterna.getPositions()→ count open positions- If open positions < 4, compute
target_notional = equity / 4 eterna.getInstruments(symbol)→lotSize/qtyStepfor roundingeterna.getTickers(symbol)→ last price- Compute
qty = target_notional / lastPrice, rounded down to lot size
Deposit Flow
Deposits arrive in the Funding wallet and must be transferred to the Trading wallet before use.
Recommended: USDT on Arbitrum (ARBI).
const addr = await eterna.getDepositAddress("USDT", "ARBI");
// user sends USDT …
const records = await eterna.getDepositRecords("USDT");
const transfer = await eterna.transferToTrading("USDT", "100");
const balance = await eterna.getBalance();
return { addr, records, transfer, balance };
Order Lifecycle
Market order
await eterna.setLeverage("BTCUSDT", "5");
const order = await eterna.placeOrder({
symbol: "BTCUSDT",
side: "Buy",
orderType: "Market",
qty: "0.001",
takeProfit: "68000.00",
stopLoss: "66000.00",
});
return order;
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 12d ago First seen · 113 lines · 45 tokens per session scan A f2a09376e60f
eterna-trading-guide is a skill published in the GitHub repository EternaHybridExchange/eterna-mcp (8 stars, last pushed 1mo ago), licensed MIT. It adds 45 tokens to every session and 740 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other skills, from other repositories
obai-crypto
Coinbase spot crypto research via the OBaI crypto MCP server (http://localhost:8010/mcp). Use for Coinbase spot product lookup, crypto OHLCV candles, order books, latest trades and bid/ask, single-product spot strategy backtests, and Coinbase paper-ledger strategy artifacts. Excludes derivatives, DeFi, on-chain…
obai-crypto-routing
Use when the user asks about Coinbase spot crypto products, crypto OHLCV, crypto order books, latest crypto trades or bid/ask, Coinbase spot strategy backtests, crypto strategy artifacts, or follow-ups on prior crypto backtests or artifacts. Excludes equities, options, Polymarket, DeFi, on-chain, and derivatives.
defi-yield
DeFi yield analysis and optimization — lending rates, LP yields, staking returns, yield farming strategies, risk-adjusted yield comparison, and protocol-level sustainability assessment.
token-unlock-treasury
Token unlock schedule analysis and project treasury tracking — vesting cliffs, linear unlocks, team/investor/ecosystem token releases, treasury diversification, and sell pressure forecasting.
crypto-derivatives
Crypto-derivatives strategies — perpetual funding-rate arbitrage, futures term-structure contango/backwardation trading, and option volatility-smile / Greeks analysis.
onchain-analysis
On-chain data analysis — active addresses / whale tracking / TVL / DEX liquidity, interpretation and signal generation using on-chain valuation metrics such as MVRV / NVT / SOPR.