delete_webhook
Remove a registered webhook from the Rekko MCP server to stop receiving prediction market intelligence and trading signals.
Instructions
Remove a registered webhook.
Args: webhook_id: Webhook identifier returned by create_webhook.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| webhook_id | Yes |
Implementation Reference
- src/rekko_mcp/server.py:478-486 (handler)The delete_webhook tool is implemented as an async function that sends a DELETE request to the Rekko API. It is registered with the @mcp.tool decorator.
@mcp.tool() async def delete_webhook(webhook_id: str) -> str: """Remove a registered webhook. Args: webhook_id: Webhook identifier returned by create_webhook. """ return await _request("DELETE", f"/v1/webhooks/{webhook_id}")