TrendWakeDevelopers
TrendWake exposes its signals, watchlist and strategy performance to any AI agent that speaks the Model Context Protocol (Claude Desktop, Claude Code, Cursor, ChatGPT…). Your agent reads TrendWake for research and connects your own brokerage separately for execution. It’s a Premium feature.
MCP servers don’t talk to each other — your agent is the hub. You connect two servers to it: TrendWake (signals) and your broker’s agentic server (e.g. Robinhood or Webull). The agent reads a signal from us, pulls a live quote from your broker, asks us to size it, and places the order through your broker — with your approval. TrendWake never sees your brokerage and never places a trade.
In the app, go to Account → Developer and create a key. It starts with tw_mcp_ and is shown once — copy it then. You can revoke it anytime; keys are capped at 5 active per account.
Claude Code (terminal):
claude mcp add trendwake --transport http https://mcp.trendwake.com/mcp \
--header "Authorization: Bearer tw_mcp_your_key_here"Claude Desktop / Cursor — add to your MCP config:
{
"mcpServers": {
"trendwake": {
"transport": "http",
"url": "https://mcp.trendwake.com/mcp",
"headers": { "Authorization": "Bearer tw_mcp_your_key_here" }
}
}
}ChatGPT and other MCP-capable clients use the same URL + Bearer header.
To actually place trades, connect your brokerage’s own agentic MCP server alongside TrendWake — this is set up on the broker’s side, with a dedicated, separately-funded account and per-trade approval. For example, Robinhood’s agentic server:
claude mcp add robinhood-trading --transport http https://agent.robinhood.com/mcp/tradingWebull and other brokers offer equivalent MCP servers — follow their setup. TrendWake is broker-agnostic; it works next to whichever one you connect.
get_latest_signalsThe most recent signals across the live strategies (ticker, direction, strategy, derived stop %).check_signal_for_tickerWhether a specific ticker has a signal today.get_signal_planRisk-based position sizing for a signal — you pass the current price from your brokerage; it returns shares / stop / max loss.get_active_positionsWhat the public paper-trading bot is holding right now.get_watchlistThe curated signal universe (symbol, grade, sector).get_strategy_performanceBacktest summary for a strategy (win rate, profit factor, drawdown, return) with the survivor-bias caveat.Signals only — TrendWake never returns raw market price data. Your agent gets live prices from your brokerage connection.
TrendWake signals are educational tools. Not financial advice. Past performance does not guarantee future results.