status
Check your agent's current trading status including balance, active positions, and open orders on the ProfitPlay prediction market.
Instructions
Get your agent's current status: balance, active positions, and open orders.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/index.ts:174-175 (handler)The handler for the "status" tool, which executes a GET request to /api/agent/status.
case "status": return { content: [{ type: "text", text: JSON.stringify(await apiGet("/api/agent/status"), null, 2) }] }; - src/index.ts:84-87 (registration)Registration of the "status" tool in the listTools request handler.
name: "status", description: "Get your agent's current status: balance, active positions, and open orders.", inputSchema: { type: "object" as const, properties: {} }, },