Connect Claude Code to your Robinhood account. Analyze your portfolio, get real-time quotes, and execute trades—all through conversation. Then in Claude Code: 1. Type /mcp → select trayd → click Authorize 2. Sign in with Google 3. Say: "Link my Robinhood account" 4. Approve on your phone 5. Start trading! Instead of clicking through dozens of screens: Important to understand: - Your Robinhood emai
Add this skill
npx mdskills install trayders/trayd-mcpWell-documented trading MCP with clear examples, but high-risk credentials model
1# Trayd - Trade Robinhood from Claude Code23Connect Claude Code to your Robinhood account. Analyze your portfolio, get real-time quotes, and execute trades—all through conversation.45678910## Quick Start1112```bash13claude mcp add --transport http trayd https://mcp.trayd.ai/mcp --scope user14```1516Then in Claude Code:171. Type `/mcp` → select `trayd` → click **Authorize**182. Sign in with Google193. Say: *"Link my Robinhood account"*204. Approve on your phone215. Start trading!2223## What You Can Do2425### 📊 Portfolio Analysis26```27"What's my portfolio worth?"28"Which positions are up today? Which are down?"29"What's my biggest winner this week?"30"Show me everything that's down more than 5%"31```3233### 📈 Real-Time Market Data34```35"What's NVDA trading at?"36"Get me a quote on AAPL"37"Check the price of TSLA"38```3940### 💰 Trade Execution41```42"Buy 10 shares of AAPL"43"Place a limit order for TSLA at $400"44"Set 5 ladder buys for NVDA from $180-$175"45"Set stop losses on all my positions at -5%"46```4748### 🔥 Complex Operations (One Sentence)49```50"Sell half of my TSLA position"51"What's my biggest loser today? Sell it."52"Cancel all my open orders and show me what's left"53"Buy $500 worth of each: AAPL, GOOGL, MSFT"54```5556> **Note:** Market orders work during regular hours (9:30 AM - 4 PM ET). Extended hours (pre-market & after-hours) require limit orders—this is a Robinhood policy.5758### Why Trayd?59Instead of clicking through dozens of screens:60```61Setting 5 ladder limit orders manually:62 Open app → Search NVDA → Buy → Limit → $180 → 10 shares → Submit63 → Search NVDA → Buy → Limit → $178.75 → 10 shares → Submit64 → Search NVDA → Buy → Limit → $177.50 → 10 shares → Submit65 → Search NVDA → Buy → Limit → $176.25 → 10 shares → Submit66 → Search NVDA → Buy → Limit → $175 → 10 shares → Submit67 (50+ clicks, 5 minutes)6869With Trayd:70 "Set 5 ladder buys for NVDA from $180-$175"71 (1 sentence, 10 seconds)72```7374## Security Model7576### How Your Credentials Flow7778```79You → Claude Code → Trayd Server → Robinhood API80 ↓ ↓81 (MCP token) (Your RH credentials82 passed through to RH,83 NEVER stored by us)84```8586**Important to understand:**87- Your Robinhood email/password pass through our server to Robinhood's API88- We **never log, store, or persist** your password - it goes directly to Robinhood89- After login, Robinhood returns access tokens which we hold **in memory only**90- Tokens are wiped on: logout, server restart, or container redeployment9192### What We Store (and Don't)9394| Data | Stored? | Where | Duration |95|------|---------|-------|----------|96| Robinhood password | **NO** | Never touches disk | Passed through, then discarded |97| Robinhood access token | Yes | Server memory only | Until logout/restart |98| Your trades/positions | **NO** | Not logged | Fetched live from RH |99| Your Google identity | Yes | Via Clerk | For auth only |100101### Authentication102- **OAuth 2.1 with PKCE** - Industry-standard secure auth flow103- **Google Sign-in via Clerk** - We don't handle Google passwords104- **Robinhood Phone 2FA** - Native Robinhood security, you approve on your phone105106### Infrastructure107- **AWS ECS Fargate** - Containerized, isolated execution108- **Cloudflare Tunnel** - DDoS protection, no exposed ports109- **HTTPS everywhere** - All traffic encrypted110111## Example Conversations112113### Check Your Portfolio114```115You: What's my portfolio worth?116117Claude: Your Robinhood portfolio:118 • Total Equity: $45,230.82119 • Cash Available: $2,156.33120 • Buying Power: $2,156.33121```122123### View Positions124```125You: Show my positions126127Claude: Your current holdings:128129 NVDA - 50 shares130 • Avg Cost: $127.45 → Current: $137.01131 • Market Value: $6,850.50132 • P&L: +$478.00 (+7.5%)133134 AAPL - 100 shares135 • Avg Cost: $178.23 → Current: $254.49136 • Market Value: $25,449.00137 • P&L: +$7,626.00 (+42.8%)138```139140### Get a Quote141```142You: What's TSLA trading at?143144Claude: TSLA (Tesla Inc) - $421.06145 • Bid: $421.05 × 100146 • Ask: $421.08 × 200147 • Day Range: $415.02 - $428.50148 • Volume: 42.3M149```150151### Place a Trade152```153You: Buy 5 shares of GOOGL at $191154155Claude: I'll place a limit order to buy 5 shares of GOOGL at $191.00.156157 [Calls place_order tool]158159 ✓ Limit order placed successfully160 • Order ID: 67890-abcdef161 • Buy 5 GOOGL @ $191.00 limit162```163164### Cancel an Order165```166You: Cancel my GOOGL order167168Claude: [Calls cancel_order tool]169170 ✓ Order cancelled successfully171```172173## Troubleshooting174175| Issue | Solution |176|-------|----------|177| Browser doesn't open for auth | Type `/mcp` → select `trayd` → click "Authorize" |178| Phone notification not received | Ensure Robinhood app is installed and you're logged in |179| "Authentication required" error | Run `/mcp` to re-authenticate |180| Market order rejected after hours | Use limit orders (Robinhood policy for extended hours) |181182## FAQ183184**Is this safe?**185186Yes, and here's why you can verify it yourself:1871881. **Phone 2FA on every login** - Robinhood sends a notification to your phone. Nothing happens unless you tap "Approve". You control access.1891902. **Your Claude is honest to you** - This MCP runs through *your* Claude Code. Ask Claude "Am I logged in to Robinhood?" or "Is my Robinhood linked?" anytime. Claude will honestly tell you your connection status because it's *your* assistant.1911923. **Instant logout, verified by Claude** - Say "Logout from Robinhood" and all credentials are immediately wiped from memory. Then ask Claude "Am I still connected?" - it will confirm you're logged out. No trust required—verify it yourself.1931944. **Test with a safe order first** - Try "Place a limit buy for 1 NVDA at $50" (a price that won't execute). Check your Robinhood app—you'll see the order. Cancel it from either place. Now you know it works, with zero risk.195196**Why should I trust you?**197198You don't have to trust us blindly—you can verify:199- **Phone approval required** - We can't access your account without you tapping Approve200- **Ask Claude to verify** - Your Claude Code honestly reports your connection status201- **Logout = instant wipe** - Say "logout" and ask Claude to confirm you're disconnected202- **Server restarts wipe everything** - Tokens only exist in memory, never on disk203204**What if something goes wrong with a trade?**205You are responsible for all trades placed through your account. We provide the interface; you make the decisions. Always verify orders before confirming.206207## Risks & Disclaimers208209**Please read before using:**210211- **USE AT YOUR OWN RISK** - This software is provided "as is" without warranty212- **NOT FINANCIAL ADVICE** - We don't provide investment recommendations213- **YOU ARE RESPONSIBLE** - For all trades and decisions made through this tool214- **NO LIABILITY** - We are not liable for any losses, bugs, or issues215- **BETA SOFTWARE** - This is early-stage software; expect rough edges216217**By using Trayd, you acknowledge:**2181. You understand the security model and accept the risks2192. You are solely responsible for your trading decisions2203. You will not hold Trayd liable for any losses2214. You understand this is not affiliated with Robinhood222223---224225**Not affiliated with Robinhood Markets, Inc.**226227**Not financial advice.** This tool helps you interact with your own brokerage account. All investment decisions are yours.228229## Support230231- Email: team@trayd.ai232- GitHub: [trayders/trayd-mcp](https://github.com/trayders/trayd-mcp/issues)233234## License235236MIT237
Full transparency — inspect the skill content before installing.