MCP Server Replicate

by gerred
Verified

unsubscribe_from_generation

Stop receiving updates or notifications for a specific resource by unsubscribing using session and URI details. Ideal for managing resource access in AI model inference environments.

Instructions

Handle resource unsubscribe requests.

Input Schema

NameRequiredDescriptionDefault
requestYes

Input Schema (JSON Schema)

{ "$defs": { "SubscriptionRequest": { "description": "Request model for subscription operations.", "properties": { "session_id": { "description": "ID of the session making the request", "title": "Session Id", "type": "string" }, "uri": { "description": "Resource URI to subscribe to", "title": "Uri", "type": "string" } }, "required": [ "uri", "session_id" ], "title": "SubscriptionRequest", "type": "object" } }, "properties": { "request": { "$ref": "#/$defs/SubscriptionRequest" } }, "required": [ "request" ], "title": "unsubscribe_from_generationArguments", "type": "object" }
ID: r830bzsk7r