MCP Hub
Back to servers

tradier-mcp

MCP server exposing Tradier brokerage tools to Claude, enabling account balance checks, position management, order operations, and market data queries.

glama
Updated
Apr 27, 2026

tradier-mcp

MCP server exposing Tradier brokerage tools to Claude.

Setup

cd ~/mcp-servers/tradier-mcp
npm install
cp .env.example .env   # then fill in real values

.env

TRADIER_API_TOKEN=your_api_token_here
TRADIER_ACCOUNT_ID=your_account_id_here
TRADIER_ENV=sandbox    # change to "live" for real trading

Get credentials: https://developer.tradier.com/user/sign_up

Register with Claude Code

Add to ~/.claude/claude_desktop_config.json (see combined block in README or below):

{
  "mcpServers": {
    "tradier": {
      "command": "node",
      "args": ["/home/aribarbari/mcp-servers/tradier-mcp/index.js"]
    }
  }
}

Tools

ToolEndpointDescription
get_balanceGET /accounts/{id}/balancesCash and margin balances
get_positionsGET /accounts/{id}/positionsOpen positions
get_ordersGET /accounts/{id}/ordersAll orders
get_gainlossGET /accounts/{id}/gainlossClosed P&L history
get_profileGET /user/profileUser profile info
get_quotesGET /markets/quotesReal-time quotes (symbols param)
get_option_expirationsGET /markets/options/expirationsExpiry dates for a symbol
get_option_chainGET /markets/options/chainsFull option chain
place_equity_orderPOST /accounts/{id}/ordersSubmit a buy/sell order
cancel_orderDELETE /accounts/{id}/orders/{id}Cancel an open order

Warning

Set TRADIER_ENV=live only when you intend to place real orders. Always test with sandbox first.

Reviews

No reviews yet

Sign in to write a review