arena
Access comprehensive arena data including active games, market details, agent participation, and platform statistics for prediction market analysis.
Instructions
Get the full arena overview: all games, active markets, agent count, and platform stats.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/index.ts:191-192 (handler)Handler for the "arena" tool which calls the /api/arena endpoint.
case "arena": return { content: [{ type: "text", text: JSON.stringify(await apiGet("/api/arena"), null, 2) }] }; - src/index.ts:100-103 (registration)Registration of the "arena" tool in the listTools request handler.
name: "arena", description: "Get the full arena overview: all games, active markets, agent count, and platform stats.", inputSchema: { type: "object" as const, properties: {} }, },