Skip to main content
Glama

Interactive Brokers MCP Server

by code-rabi
MIT License
304
  • Linux
  • Apple

place_order

Submit trading orders on the Interactive Brokers MCP Server by specifying account ID, symbol, action, order type, and quantity. Supports market, limit, and stop orders for efficient trade execution.

Instructions

Place a trading order

Input Schema

NameRequiredDescriptionDefault
accountIdYesAccount ID
actionYesOrder action
orderTypeYesOrder type
priceNoLimit price (required for LMT orders)
quantityYesNumber of shares
stopPriceNoStop price (required for STP orders)
symbolYesTrading symbol

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "accountId": { "description": "Account ID", "type": "string" }, "action": { "description": "Order action", "enum": [ "BUY", "SELL" ], "type": "string" }, "orderType": { "description": "Order type", "enum": [ "MKT", "LMT", "STP" ], "type": "string" }, "price": { "description": "Limit price (required for LMT orders)", "type": "number" }, "quantity": { "description": "Number of shares", "type": "number" }, "stopPrice": { "description": "Stop price (required for STP orders)", "type": "number" }, "symbol": { "description": "Trading symbol", "type": "string" } }, "required": [ "accountId", "symbol", "action", "orderType", "quantity" ], "type": "object" }
Install Server

Other Tools from Interactive Brokers MCP Server

Related Tools

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/code-rabi/interactive-brokers-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server