<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: team-trayd</title>
    <description>The latest articles on DEV Community by team-trayd (@teamtrayd_d74d7eeeed4003).</description>
    <link>https://dev.to/teamtrayd_d74d7eeeed4003</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3686548%2F69ed952a-6f86-40f9-bc69-6672be0e187f.png</url>
      <title>DEV Community: team-trayd</title>
      <link>https://dev.to/teamtrayd_d74d7eeeed4003</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/teamtrayd_d74d7eeeed4003"/>
    <language>en</language>
    <item>
      <title>I Built an MCP Server That Handled 60K Robinhood Orders — Here's How</title>
      <dc:creator>team-trayd</dc:creator>
      <pubDate>Fri, 27 Mar 2026 18:51:01 +0000</pubDate>
      <link>https://dev.to/teamtrayd_d74d7eeeed4003/i-built-an-mcp-server-that-handled-60k-robinhood-orders-heres-how-22c9</link>
      <guid>https://dev.to/teamtrayd_d74d7eeeed4003/i-built-an-mcp-server-that-handled-60k-robinhood-orders-heres-how-22c9</guid>
      <description>&lt;p&gt;I built an MCP server that lets you trade on Robinhood through&lt;br&gt;
  Claude Code. One line to set up, then you just talk.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fhtx224cka5tcnl1o6i5m.gif" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fhtx224cka5tcnl1o6i5m.gif" alt="Demo" width="800" height="453"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Setup (literally one line)&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;  claude mcp add trayd https://mcp.trayd.ai/mcp
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Then tell Claude: "Link my Robinhood account." That's it.&lt;/p&gt;

&lt;p&gt;What you can do&lt;/p&gt;

&lt;p&gt;"What's my portfolio worth?"&lt;br&gt;
  "Buy 10 shares of AAPL at $195"&lt;br&gt;
  "Place ladder sells for NVDA from $180, 20 orders, decay 0.997"&lt;br&gt;
  "Cancel all my open orders"&lt;br&gt;
  "Which of my positions dropped the most today?"&lt;/p&gt;

&lt;p&gt;No coding. No API keys. No config files. Just conversation.&lt;/p&gt;

&lt;p&gt;The numbers&lt;/p&gt;

&lt;p&gt;We launched quietly three months ago. Without any marketing:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;42 users signed up organically&lt;/li&gt;
&lt;li&gt;16 linked their Robinhood accounts and traded real money&lt;/li&gt;
&lt;li&gt;One power user placed 60,000+ orders through the server&lt;/li&gt;
&lt;li&gt;All from Google Search, Hacker News, and MCP directory listings&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;How it works&lt;/p&gt;

&lt;p&gt;Claude Code → MCP (JSON-RPC over HTTP) → Our Server → Robinhood API&lt;/p&gt;

&lt;p&gt;The server handles:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;OAuth 2.1 with PKCE — sign in with Google via Clerk&lt;/li&gt;
&lt;li&gt;Robinhood auth — phone approval + SMS fallback&lt;/li&gt;
&lt;li&gt;Token persistence — encrypted with AWS KMS, stored in DynamoDB&lt;/li&gt;
&lt;li&gt;All Robinhood operations — portfolio, positions, quotes, orders,
cancellations&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Tokens are encrypted at rest with KMS. Only the Fargate container&lt;br&gt;
  can decrypt them. Passwords are never stored — sent directly to&lt;br&gt;
  Robinhood's API.&lt;/p&gt;

&lt;p&gt;Why this exists&lt;/p&gt;

&lt;p&gt;Robinhood doesn't offer a public API or OAuth for third parties.&lt;br&gt;
  Every unofficial integration (robin_stocks, etc.) uses the same&lt;br&gt;
  credential flow. We chose to be transparent about this rather than&lt;br&gt;
  hiding it.&lt;/p&gt;

&lt;p&gt;The tradeoff is real: you're trusting our server with temporary&lt;br&gt;
  access to your brokerage. We've documented the security model in&lt;br&gt;
  detail so users can make informed decisions.&lt;/p&gt;

&lt;p&gt;Try it&lt;/p&gt;

&lt;p&gt;claude mcp add trayd &lt;a href="https://mcp.trayd.ai/mcp" rel="noopener noreferrer"&gt;https://mcp.trayd.ai/mcp&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;GitHub: &lt;a href="https://github.com/trayders/trayd-mcp" rel="noopener noreferrer"&gt;https://github.com/trayders/trayd-mcp&lt;/a&gt;&lt;/p&gt;

</description>
      <category>claudecode</category>
      <category>ai</category>
      <category>mcp</category>
    </item>
    <item>
      <title>I Built an MCP Server to Trade Robinhood Through Claude Code</title>
      <dc:creator>team-trayd</dc:creator>
      <pubDate>Tue, 30 Dec 2025 19:34:34 +0000</pubDate>
      <link>https://dev.to/teamtrayd_d74d7eeeed4003/i-built-an-mcp-server-to-trade-robinhood-through-claude-code-34ld</link>
      <guid>https://dev.to/teamtrayd_d74d7eeeed4003/i-built-an-mcp-server-to-trade-robinhood-through-claude-code-34ld</guid>
      <description>&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fl4js6zrv73wb6ljqegjk.gif" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fl4js6zrv73wb6ljqegjk.gif" alt=" " width="800" height="453"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;I got tired of clicking through 10+ screens just to place a trade. So I built an MCP server that lets me trade Robinhood using natural language in Claude Code.&lt;/p&gt;

&lt;h2&gt;
  
  
  What it does
&lt;/h2&gt;

&lt;p&gt;Instead of the app, I just type:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;"What's my portfolio worth?"&lt;/li&gt;
&lt;li&gt;"Buy 10 shares of AAPL"&lt;/li&gt;
&lt;li&gt;"Place a limit order for TSLA at $400"&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Setup (one command)
&lt;/h2&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;claude mcp add &lt;span class="nt"&gt;--transport&lt;/span&gt; http trayd https://mcp.trayd.ai/mcp
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Then tell Claude: "Link my Robinhood account"&lt;/p&gt;

&lt;h2&gt;
  
  
  How it works
&lt;/h2&gt;

&lt;ol&gt;
&lt;li&gt;
&lt;strong&gt;MCP Server&lt;/strong&gt; - Runs on AWS ECS, handles OAuth + Robinhood API&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Clerk Auth&lt;/strong&gt; - Google sign-in for user isolation&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Phone 2FA&lt;/strong&gt; - Robinhood sends approval notification&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;In-memory tokens&lt;/strong&gt; - Never stored on disk&lt;/li&gt;
&lt;/ol&gt;

&lt;h2&gt;
  
  
  Security
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;Tokens in memory only (wiped on restart)&lt;/li&gt;
&lt;li&gt;Phone approval required to link&lt;/li&gt;
&lt;li&gt;Logout wipes everything instantly&lt;/li&gt;
&lt;li&gt;Open source - review the code yourself&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  GitHub
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://github.com/trayders/trayd-mcp" rel="noopener noreferrer"&gt;https://github.com/trayders/trayd-mcp&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Would love feedback from Claude Code users!&lt;/p&gt;

</description>
      <category>ai</category>
      <category>mcp</category>
      <category>opensource</category>
      <category>tutorial</category>
    </item>
  </channel>
</rss>
