{"name":"io.github.autoview-com/mcp","slug":"autoview-com-mcp","title":"Autoview","description":"Trade across 22+ exchanges and brokers from any MCP-capable AI agent, no install required.","url":"https://mcp.market/server/autoview-com-mcp","rating":null,"grade":"A","score":89,"certified":false,"status":"active","category":"ai","tags":["ai"],"presence":{"score":23,"stars":0,"forks":0,"downloads_week":null,"last_push_at":"2026-09-05T16:37:26.000Z","license":"MIT"},"uptime":{"percent":100,"checks":6,"ok":6,"last_checked_at":"2026-09-20T22:05:34.552Z","last_ok_at":"2026-09-20T22:05:34.552Z","latency_ms":1009},"claimed":false,"transport":"remote","callable_via_gateway":true,"default_price_micros":0,"repository":"https://github.com/autoview-com/mcp","website":"https://autoview.com/","version":"1.0.0","remotes":[{"type":"streamable-http","url":"https://api.autoview.com/mcp/"}],"packages":[],"tools":[{"name":"alert","description":"Build everything TradingView's create_alert(webhook, message, expiration, resolution) needs, in one call: fuses `command` (the message) and `hooks` (the webhook URL for hook_id), and fills in the expiration (default 1 year out -- TradingView itself defaults to only 30 days, which silently stops the alert) and resolution (default \"1\") TradingView also needs. Returns warnings you should read, including never putting the hook's key in the message field. Dry-run by default like `command`; set live:true to build a command that trades for real once the alert fires. Requires your Autoview account token.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"token":{"description":"your Autoview account token — an av_mcp_ personal access token, generate one at /account/tokens/ on the Autoview site. Omit this if your MCP client already sends it as an `Authorization: Bearer` header (Claude Code, Cursor, and most non-browser clients do this automatically once configured).","type":"string"},"hook_id":{"type":"string","description":"the hook whose URL becomes the alert's webhook (see the `hooks` tool)"},"exchange":{"description":"optional — validate order-type and bracket support against this exchange's capabilities; omit to skip that check","type":"string","enum":["OANDAPRACTICE","KRAKEN","CRYPTO","CRYPTODEMO","BYBITTESTNET","BYBITSPOTTESTNET","TRADOVATESIM"]},"symbol":{"type":"string","description":"the instrument symbol, e.g. EUR_USD, XBTUSD, BTC_USD"},"side":{"type":"string","enum":["buy","sell"],"description":"order direction"},"quantity":{"anyOf":[{"type":"number","exclusiveMinimum":0},{"type":"string","pattern":"^(100|[1-9][0-9]?)%$"}],"description":"order size: a positive number (contracts/units), or a percent-of-balance string like \"50%\" (1-100%)"},"type":{"description":"order type; defaults to market","type":"string","enum":["market","limit","post_only","ioc","fok","stop","stop_limit"]},"price":{"description":"absolute limit price; required for limit, post_only, ioc, fok, and stop_limit","type":"number"},"trigger":{"description":"absolute trigger (stop) price; required for stop and stop_limit","type":"number","exclusiveMinimum":0},"priceRef":{"description":"reference price for percent sizing and brackets","type":"number","exclusiveMinimum":0},"sizeAgainstEquity":{"description":"for a percent quantity, size against equity instead of available balance (y=equity)","type":"boolean"},"stopLoss":{"description":"attached bracket stop-loss as a POINT distance from the fill; pairs with takeProfit or a trail leg","type":"number","exclusiveMinimum":0},"takeProfit":{"description":"attached bracket take-profit as a POINT distance from the fill; pairs with stopLoss or a trail leg","type":"number","exclusiveMinimum":0},"trailStop":{"description":"auto-trail stop distance in points; requires trailActivate","type":"number","exclusiveMinimum":0},"trailActivate":{"description":"points of profit before the trail starts; required whenever trailStop is set","type":"number","exclusiveMinimum":0},"trailFrequency":{"description":"how often the trailing stop re-checks price; defaults to 1 if omitted","type":"number","exclusiveMinimum":0},"live":{"description":"false (default) = build a dry-run preview command (appends d=1); true = build a command that places a real order when the alert fires","type":"boolean"},"expiration":{"description":"ISO 8601 timestamp for TradingView's alert expiration; defaults to 1 year from now","type":"string"},"resolution":{"description":"chart timeframe TradingView's create_alert needs; defaults to \"1\" (1 minute)","type":"string"}},"required":["hook_id","symbol","side","quantity"],"$schema":"http://json-schema.org/draft-07/schema#"}},{"name":"command","description":"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. Prefer the `alert` tool if you also need the destination webhook, expiration, and resolution in one call. Requires your Autoview account token — 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.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"token":{"description":"your Autoview account token — an av_mcp_ personal access token, generate one at /account/tokens/ on the Autoview site. Omit this if your MCP client already sends it as an `Authorization: Bearer` header (Claude Code, Cursor, and most non-browser clients do this automatically once configured).","type":"string"},"exchange":{"description":"optional — validate order-type and bracket support against this exchange's capabilities; omit to skip that check","type":"string","enum":["OANDAPRACTICE","KRAKEN","CRYPTO","CRYPTODEMO","BYBITTESTNET","BYBITSPOTTESTNET","TRADOVATESIM"]},"symbol":{"type":"string","description":"the instrument symbol, e.g. EUR_USD, XBTUSD, BTC_USD — or the exchange-native symbol a TradingView EXCHANGE:TICKER maps to"},"side":{"type":"string","enum":["buy","sell"],"description":"order direction"},"quantity":{"anyOf":[{"type":"number","exclusiveMinimum":0},{"type":"string","pattern":"^(100|[1-9][0-9]?)%$"}],"description":"order size: a positive number (contracts/units), or a percent-of-balance string like \"50%\" (1-100%)"},"type":{"description":"order type; defaults to market","type":"string","enum":["market","limit","post_only","ioc","fok","stop","stop_limit"]},"price":{"description":"absolute limit price; required for limit, post_only, ioc, fok, and stop_limit","type":"number"},"trigger":{"description":"absolute trigger (stop) price; required for stop and stop_limit","type":"number","exclusiveMinimum":0},"priceRef":{"description":"reference price for percent sizing and brackets","type":"number","exclusiveMinimum":0},"sizeAgainstEquity":{"description":"for a percent quantity, size against equity instead of available balance (y=equity)","type":"boolean"},"stopLoss":{"description":"attached bracket stop-loss as a POINT distance from the fill; pairs with takeProfit or a trail leg","type":"number","exclusiveMinimum":0},"takeProfit":{"description":"attached bracket take-profit as a POINT distance from the fill; pairs with stopLoss or a trail leg","type":"number","exclusiveMinimum":0},"trailStop":{"description":"auto-trail stop distance in points; requires trailActivate","type":"number","exclusiveMinimum":0},"trailActivate":{"description":"points of profit before the trail starts; required whenever trailStop is set","type":"number","exclusiveMinimum":0},"trailFrequency":{"description":"how often the trailing stop re-checks price; defaults to 1 if omitted","type":"number","exclusiveMinimum":0},"live":{"description":"false (default) = build a dry-run preview command (appends d=1); true = build a command that places a real order when the alert fires","type":"boolean"}},"required":["symbol","side","quantity"],"$schema":"http://json-schema.org/draft-07/schema#"}},{"name":"entry","description":"Place an order on a supported exchange, right now. 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. On a paid exchange without an active Autoview subscription, live:true is silently downgraded to a dry-run — the response then carries dry_run_forced:true and a dry_run_reason explaining why (see the `setup` tool for which exchanges this applies to, and where to subscribe). 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. Credentials come from hook_id -- the credentials you already linked to one of your hooks (see the `hooks` or `setup` tool) -- so no exchange secret ever enters this chat. exchange is optional when that hook links to exactly one exchange; pass it explicitly if the hook links to more than one. Requires your Autoview account token.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"token":{"description":"your Autoview account token — an av_mcp_ personal access token, generate one at /account/tokens/ on the Autoview site. Omit this if your MCP client already sends it as an `Authorization: Bearer` header (Claude Code, Cursor, and most non-browser clients do this automatically once configured).","type":"string"},"exchange":{"description":"the exchange to trade on; omit when hook_id links to exactly one exchange (see the hooks tool) -- otherwise required to disambiguate","type":"string","enum":["OANDAPRACTICE","KRAKEN","CRYPTO","CRYPTODEMO","BYBITTESTNET","BYBITSPOTTESTNET","TRADOVATESIM"]},"hook_id":{"type":"string","description":"use the credentials already linked to this hook (see the `hooks` tool). The hook must belong to your account."},"symbol":{"type":"string","description":"the instrument symbol, e.g. EUR_USD, XBTUSD, BTC_USD"},"side":{"type":"string","enum":["buy","sell"],"description":"order direction"},"quantity":{"anyOf":[{"type":"number","exclusiveMinimum":0},{"type":"string","pattern":"^(100|[1-9][0-9]?)%$"}],"description":"order size: a positive number (contracts/units), or a percent-of-balance string like \"50%\" (1-100%). On TRADOVATESIM (no live market-data feed), a percent quantity also requires priceRef — see priceRef."},"type":{"description":"order type; defaults to market. limit/post_only/ioc/fok and stop_limit need a price; stop/stop_limit need a trigger. An entry stop keeps the order side. Not every exchange supports every type (e.g. OANDA has no stops; Kraken spot no ioc/fok).","type":"string","enum":["market","limit","post_only","ioc","fok","stop","stop_limit"]},"price":{"description":"absolute limit price; required for limit, post_only, ioc, fok, and stop_limit. Also accepted (optional) on a market order as a stand-in for priceRef.","type":"number"},"trigger":{"description":"absolute trigger (stop) price; required for stop and stop_limit","type":"number","exclusiveMinimum":0},"priceRef":{"description":"reference price for percent sizing and brackets (price=); percent quantity divides balance by it. Optional on exchanges with a live quote feed (the zone fetches one); REQUIRED on TRADOVATESIM (no live market-data feed — Tradovate charges separately for it, and a Simulation account never has it) whenever quantity is a percent OR any of stopLoss/takeProfit/trailStop is set. Omitting it there fails late with a live exchange error instead of a clear one — pass an approximate current price.","type":"number","exclusiveMinimum":0},"sizeAgainstEquity":{"description":"for a percent quantity, size against equity instead of available balance (y=equity)","type":"boolean"},"stopLoss":{"description":"attached bracket stop-loss as a POINT distance from the fill; pair with takeProfit for a fixed OCO, or with a trailing leg. Market entry, bracket-capable exchanges only (Tradovate). On TRADOVATESIM also pass priceRef (or price) — see priceRef.","type":"number","exclusiveMinimum":0},"takeProfit":{"description":"attached bracket take-profit as a POINT distance from the fill; pair with stopLoss, or with a trailing leg. On TRADOVATESIM also pass priceRef (or price) — see priceRef.","type":"number","exclusiveMinimum":0},"trailStop":{"description":"attached TRAILING stop as a POINT distance the stop keeps behind price once the trail activates (atsl=). Requires trailActivate. Rides winners: pairs with a stopLoss (hard stop + trail) or stands alone. Market entry, trail-capable exchanges only (Tradovate). On TRADOVATESIM also pass priceRef (or price) — see priceRef.","type":"number","exclusiveMinimum":0},"trailActivate":{"description":"POINTS of profit the price must move before the trailing stop starts trailing (atx=). Required whenever trailStop is set","type":"number","exclusiveMinimum":0},"trailFrequency":{"description":"how often the trailing stop re-checks price (atf=); defaults to 1 if omitted","type":"number","exclusiveMinimum":0},"live":{"description":"false (default) = a dry-run preview that returns the parsed order without placing it; true = place a real order on your live account","type":"boolean"}},"required":["hook_id","symbol","side","quantity"],"$schema":"http://json-schema.org/draft-07/schema#"}},{"name":"events","description":"Read what your orders did. Pass trace (the id entry or command's caller received) to read one order's events; omit trace to list your account's recent events instead, newest first, optionally narrowed by hook_id and/or canonical_id — this is the only way to see an order a TradingView (or other webhook) alert fired directly, since it never went through entry and has no trace. Requires your Autoview account token. Poll this a moment after an order if the events are not there yet — the exchange reports back out-of-band.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"token":{"description":"your Autoview account token — an av_mcp_ personal access token, generate one at /account/tokens/ on the Autoview site. Omit this if your MCP client already sends it as an `Authorization: Bearer` header (Claude Code, Cursor, and most non-browser clients do this automatically once configured).","type":"string"},"trace":{"description":"the trace id returned by the entry tool for the order you want to inspect; omit to list your account's recent events instead","type":"string"},"hook_id":{"description":"when trace is omitted, narrow the account-wide listing to events reported for this hook","type":"string"},"canonical_id":{"description":"when trace is omitted, narrow the account-wide listing to events reported for one webhook delivery (the canonical id a webhook call produces)","type":"string"},"limit":{"description":"max events to return (default 20)","type":"integer","exclusiveMinimum":0,"maximum":100}},"$schema":"http://json-schema.org/draft-07/schema#"}},{"name":"hooks","description":"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 (or use `alert` to build both at once). Requires your Autoview account token. 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.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"token":{"description":"your Autoview account token — an av_mcp_ personal access token, generate one at /account/tokens/ on the Autoview site. Omit this if your MCP client already sends it as an `Authorization: Bearer` header (Claude Code, Cursor, and most non-browser clients do this automatically once configured).","type":"string"}},"$schema":"http://json-schema.org/draft-07/schema#"}},{"name":"setup","description":"Read this FIRST. Returns your account overview: token scopes (live/exchange), which exchanges your token can call at all (callable), which of those allow a real live order right now vs. force a dry-run for lack of an active subscription (live_allowed/dry_run_forced, with upgrade_url when forced), per-exchange facts (supported order types, symbol format example, bracket support, whether a manual priceRef is required), and your hooks with their linked exchanges. Requires your Autoview account token.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"token":{"description":"your Autoview account token — an av_mcp_ personal access token, generate one at /account/tokens/ on the Autoview site. Omit this if your MCP client already sends it as an `Authorization: Bearer` header (Claude Code, Cursor, and most non-browser clients do this automatically once configured).","type":"string"}},"$schema":"http://json-schema.org/draft-07/schema#"}}],"scan":{"score":89,"grade":"A","scanned_at":"2026-09-20T11:36:28.787Z","report":{"scannerVersion":"0.1.9","scannedAt":"2026-09-20T11:36:28.713Z","components":{"code":{"score":-1,"max":25,"notes":["remote-only server, no package to scan"]},"reliability":{"score":20,"max":20,"notes":["remote reachable in 1595ms"]},"poisoning":{"score":15,"max":15,"notes":["6 tool descriptions checked"]},"auth":{"score":10,"max":15,"notes":["open endpoint, read-only tools"]},"maintenance":{"score":15,"max":15,"notes":["last push 15 days ago"]},"identity":{"score":7,"max":10,"notes":["registry namespace matches repository owner"]}},"findings":[],"inputs":{"probes":[{"url":"https://api.autoview.com/mcp/","reachable":true,"authRequired":false,"latencyMs":1595,"serverInfo":{"name":"Autoview MCP","version":"0.2.0"}}],"packages":[],"repo":{"found":true,"owner":"autoview-com","repo":"mcp","archived":false,"pushedAt":"2026-09-05T16:37:26Z","stars":0,"forks":0,"openIssues":0,"ownerType":"Organization","ownerAvatarUrl":"https://avatars.githubusercontent.com/u/304284136?v=4","ownerCreatedAt":"2026-07-13T05:36:43Z","license":"MIT"},"icon":{"url":"https://autoview.com/favicon.ico","source":"site","width":48,"height":48},"presence":{"stars":0,"forks":0,"downloadsWeek":null,"license":"MIT","lastPushAt":"2026-09-05T16:37:26.000Z","score":23}}}},"grade_history":[],"reviews":[]}