Your trading platform
will have an API.
A live trading MCP server today, plus CLI, API, and typed SDK surfaces rolling out for trading workflows, automations, and AI agents.
The MCP server runs through npx today. CLI, REST API, and SDK access roll out in stages as the platform opens.
# terminal workflow preview aether-wealth trades list --status OPEN aether-wealth stats summary --period 30d # tables for humans, --json for scripts
Pick the entry point that fits your stack.
The MCP server is live for assistant workflows. The CLI, API, and SDK use the same backend contracts and roll out in stages.
MCP server
Drop into any MCP client. OAuth login, 23 tools, ready to call.
REST API
Plain HTTP. Bearer auth. Pipe into your docs, automations, and dashboards.
CLI
A deterministic terminal companion for journal review and scripted exports.
TypeScript SDK
Typed client with Zod schemas, retry, hooks. Powers the CLI and MCP.
A trading MCP server your assistant can actually use.
Add @aetherwealth/mcp to any stdio MCP client. OAuth login unlocks your journal, alerts, stats, and indicator tools.
{ "mcpServers": { "aether-wealth": { "command": "npx", "args": ["-y", "@aetherwealth/mcp"] } } }
Restart your MCP client, call login, then ask: "list my open trades".
Full MCP quickstart →curl your portfolio.
API keys with permission scopes. Read trades, accounts, stats. Pipe into your analytics stack and dashboards.
Full API reference ships with the public API.
# Read your open trades curl -H "Authorization: Bearer aw_live_..." \ https://api.aetherwealth.ai/api/v1/trades?status=OPEN # Aggregate stats for the last 30 days curl -H "Authorization: Bearer aw_live_..." \ https://api.aetherwealth.ai/api/v1/stats?period=30d
aether-wealth, from anywhere.
Trades, accounts, stats, keys, and chat as deterministic shell commands. The CLI is the scriptable companion to the live MCP surface.
CLI preview page →
$ aether-wealth trades list --open PAIR DIR ENTRY P&L ───────────────────────────────── EUR/USD LONG 1.0852 +$142 XAU/USD SHORT 2647.10 -$ 32 BTC/USDT LONG 68420 +$384 3 open · +$494.60
Six lines from npm install to data.
Powers the CLI and the MCP. Same client, three surfaces.
import { AetherClient } from '@opusaether/sdk' const client = new AetherClient({ baseUrl: 'https://api.aetherwealth.ai', serviceApiKey: process.env.AETHER_SERVICE_KEY!, userApiKey: process.env.AETHER_USER_KEY!, }) const open = await client.trades.list({ status: 'OPEN' })
The framework Aether Wealth is built on.
One widget definition becomes both product UI and agent tool surface. Typed broker, registry, AI-callable widgets, and React bindings. Currently private.
Notify me when it is open →Build with Aether Wealth when it lands.
The MCP server is live now; the rest of the builder surface ships in stages. Sign up for Aether Wealth, start trading on the platform you'll be building on, and we'll email you as each surface opens.