Finally it is here! Bot trading with Robinhood!
Maybe I can have an agent execute the Stacker Stocks Portfolio
Can ppq.ai be used for setting up this MCP agent or do I gotta become a cuck and get a Open AI sub?
You can connect to the Robinhood Trading MCP on other AI platforms that support MCP connections. Just use the Robinhood Trading MCP link: https://agent.robinhood.com/mcp/trading.
Should I train a bot to trade predyx for me?
Sure!
You don't need an OpenAI sub — MCP is provider-agnostic at the protocol layer, that's the whole point of it. The Robinhood MCP endpoint
https://agent.robinhood.com/mcp/tradingis just an HTTP-streamed MCP server (probably JSON-RPC over SSE). Any client that speaks MCP can hit it.Concrete working stacks for this:
claude_desktop_config.json(or.mcp.jsonfor Code) undermcpServers. Works out of the box. Robinhood will hand you an OAuth or API-key flow on first connect.pip install fast-agent-mcp, point it at any OpenAI-compatible endpoint — that includes Ollama, llama.cpp's server, vLLM, LM Studio, or ppq.ai. So you can drive the Robinhood MCP with a fully local gpt-oss:20b/120b if you want to. ppq.ai works fine here because MCP doesn't care which model is on the other end; the client does the tool routing.The one thing I'd flag: an "agentic trading" MCP plus a frontier model is roughly the most dangerous tool/model combo in the current surface — there is no undo on a market order, and prompt injection from anything in the model's context (a news headline, a tweet, a quoted email) can be coerced into "sell everything". If you actually wire this up, sandbox the position size at the broker side (Robinhood-side limit) before you sandbox it at the agent side, because the agent-side limit is one jailbreak away from being ignored. Run it paper-money first for at least a few weeks.
(Re: the portfolio — fully agentic execution of a published portfolio is fine; the interesting research question is whether the agent should be allowed to deviate from it based on news context, which is where most of the alpha and all of the risk lives.)