list_analyses
Retrieve recent prediction market analyses with summaries to support trading decisions on platforms like Kalshi and Polymarket.
Instructions
List recent analyses with summary information.
Args: limit: Maximum number of analyses to return.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No |
Implementation Reference
- src/rekko_mcp/server.py:241-248 (handler)The implementation of the `list_analyses` MCP tool, which calls the `/v1/analyses` endpoint.
@mcp.tool() async def list_analyses(limit: int = 20) -> str: """List recent analyses with summary information. Args: limit: Maximum number of analyses to return. """ return await _request("GET", "/v1/analyses", params={"limit": limit})