get_executions
Retrieve execution reports from Interactive Brokers to monitor trade confirmations and transaction details for account management.
Instructions
Get execution reports.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/ib_async_mcp/server.py:683-685 (handler)The handler logic for "get_executions" which fetches executions from the IB connection and serializes them.
if name == "get_executions": executions = ib.executions() return [serialize_object(e) for e in executions] - src/ib_async_mcp/server.py:298-302 (registration)Registration of the "get_executions" tool within the MCP server definition.
Tool( name="get_executions", description="Get execution reports.", inputSchema={"type": "object", "properties": {}}, ),