list_webhooks
View registered webhooks to monitor prediction market events and receive real-time updates for informed trading decisions.
Instructions
List registered webhooks.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/rekko_mcp/server.py:473-475 (handler)The handler function that executes the 'list_webhooks' tool by calling the /v1/webhooks endpoint via _request.
async def list_webhooks() -> str: """List registered webhooks.""" return await _request("GET", "/v1/webhooks")