Trade Agent MCP Server

Execute stock and crypto trades via Trade Agent

Remote serverstreamable-httpGo

What is the Trade Agent MCP server?

Trade Agent becomes available to MCP clients through the trade agent mcp server. Execute stock and crypto trades via Trade Agent.

What Trade Agent does

The Trade It MCP Server brings stock, crypto, and options trading support to agents. It enables natural-language interaction with stock and crypto brokerages—execute trades, query portfolio performance, and surface market insights by sending plain-English requests through the MCP protocol.

Tools it exposes

Once connected, the assistant can call these 13 tools directly:

  • search_assets — Look up a stock or crypto by ticker or name; returns price and metadata
  • get_accounts — List linked accounts and balances; also used when linking a new brokerage
  • create_trade — Create a draft equity/crypto buy or sell for review
  • create_options_trade — Create a draft single- or multi-leg options order for review
  • execute_trade — Submit a previously created draft to the broker after explicit user confirmation
  • Brokerage — ID
  • Robinhood — 1
  • Coinbase — 3
  • Kraken — 5
  • Webull — 8
  • Public — 11
  • Tastytrade — 12
  • Disclaimers — The Disclaimers tool exposed by this server

Installing the trade agent mcp server

Setup follows the standard MCP pattern: clone or install the server, then register it in your client's configuration file and restart the client. The configuration snippets on this page cover Claude Desktop, Claude Code and Cursor.

Where it fits

Developer-tool servers are usually the first ones people connect, because they turn "help me with this code" into an assistant that can actually read the repo and act on it. Trade Agent sits in that group, and the shape of its toolset — search_assets, get_accounts, create_trade among others — tells you what it is really for. Worth comparing against the other developer tools servers in this directory before you commit to one, since several overlap in scope but differ sharply in setup cost and permissions.

Practical notes

  • This is a hosted server — you point your client at an endpoint rather than running a local process, so there is nothing to keep updated on your machine.
  • With 13 tools exposed, expect a noticeable bump in prompt size — disable it in projects that never use Trade Agent.
  • Written in Go.
  • MCP clients ask for confirmation before each tool call by default. Keep that on while you learn what the trade agent mcp server actually does with your data.
  • Every entry in this directory is reviewed by hand before it goes live, and details are checked against the project's own documentation.

Available tools

ToolWhat it does
search_assetsLook up a stock or crypto by ticker or name; returns price and metadata.
get_accountsList linked accounts and balances; also used when linking a new brokerage.
create_tradeCreate a **draft** equity/crypto buy or sell for review.
create_options_tradeCreate a **draft** single- or multi-leg options order for review.
execute_tradeSubmit a previously created draft to the broker **after** explicit user confirmation.
BrokerageID
Robinhood1
Coinbase3
Kraken5
Webull8
Public11
Tastytrade12
DisclaimersThe Disclaimers tool exposed by this server.

Example prompts to try

  • Use Trade Agent to search assets.
  • Use Trade Agent to get accounts.
  • Use Trade Agent to create trade.

Frequently asked questions

It connects Trade Agent to MCP-compatible AI assistants such as Claude and Cursor, exposing 13 tools (search_assets, get_accounts, create_trade, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Trade Agent directly.