
Autoview
Trade across 22+ exchanges and brokers from any MCP-capable AI agent, no install required.
От сообщества: Добавлен пользователем или импортирован; проверьте владельца перед подключениемРаботаетБез входаГлобальныйБесплатноТолько чтение
Что умеет
Какие данные видит
Нужен ли аккаунт
Не нужен: сервер работает без входа
Trade across 22+ exchanges and brokers from any MCP-capable AI agent, no install required.
Список инструментов сервера (4)
Технические названия из tools/list. Нужны только разработчикам.
| entry | Place an order on a supported exchange using your own broker API keys. You fill structured order fields (symbol, side, quantity, type, price, trigger) — Autoview assembles the order for you. Dry-run by default: a bare call returns the parsed order without placing it; set live:true to place a real order. The order is relayed to the exchange asynchronously, so this returns { queued, trace } immediately, not the fill — pass the trace to the `events` tool to read what the order did. Requires your Autoview account token — an av_mcp_ personal access token (generate one at /account/tokens/ on the Autoview site) or an OAuth JWT. Supported exchanges: OANDAPRACTICE, KRAKEN, CRYPTO, CRYPTODEMO, BYBITTESTNET, BYBITSPOTTESTNET, TRADOVATESIM. Crypto.com and practice/testnet/sim are free; other exchanges require an active Autoview subscription. If you also hold a TradingView MCP connection, prefer `command` + `hooks` for anything that should outlive this chat: entry fires once, now; a TradingView alert built from `command`'s output and `hooks`' webhook URL keeps firing after this conversation ends. |
| events | Read what one of your orders did. The entry tool relays orders asynchronously and returns a trace id; pass that trace here to get the events the order produced (fills, cancels, and any exchange error), newest first. Requires your Autoview account token (av_mcp_ personal token from /account/tokens/, or an OAuth JWT) — the same token you passed to entry. Poll this a moment after entry if the events are not there yet — the exchange reports back out-of-band. |
| hooks | List your Autoview webhook URLs — the destination for a TradingView (or any other) alert's webhook field. Each hook already knows which exchange(s) it is linked to; there is nothing further to configure on the Autoview side. Pair with the `command` tool: build the alert message with `command`, take a URL from here, and pass both straight to TradingView's create_alert(webhook, message). Requires your Autoview account token (av_mcp_ personal token from /account/tokens/, or an OAuth JWT). The returned URL is itself a bearer secret for unattended trading — treat it like a password; rotate a hook's key from /account/hooks/ on the Autoview site if it leaks. |
| command | Build an Autoview alert command string from structured order fields (symbol, side, quantity, type, price, trigger) without placing an order — the output is the value TradingView's create_alert `message` field should carry. Dry-run by default: a bare call returns a preview command (appends d=1); set live:true to build a command that trades for real once TradingView fires the alert. Pair with the `hooks` tool for the destination webhook URL. Requires your Autoview account token (av_mcp_ personal token from /account/tokens/, or an OAuth JWT) — live:true requires a live-scoped token. exchange is optional: pass one of OANDAPRACTICE, KRAKEN, CRYPTO, CRYPTODEMO, BYBITTESTNET, BYBITSPOTTESTNET, TRADOVATESIM to also validate order-type/bracket support for that exchange; omit it to build a generic command routed by whichever exchange(s) the destination hook is linked to. |