cancel_prediction
Pack: replicate · Endpoint: https://gateway.pipeworx.io/replicate/mcp
Cancel a prediction.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
id | string | yes |
Example call
Arguments
{
"id": "pred-1234567890abcdef"
}
curl
curl -X POST https://gateway.pipeworx.io/replicate/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"cancel_prediction","arguments":{"id":"pred-1234567890abcdef"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('cancel_prediction', {
"id": "pred-1234567890abcdef"
});
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"replicate": {
"url": "https://gateway.pipeworx.io/replicate/mcp"
}
}
}
See Getting Started for client-specific install steps.