get_prediction
Retrieve detailed information about a specific prediction using its unique ID on the MCP server for Replicate Flux Model.
Instructions
Get details of a specific prediction by ID
Input Schema
Name | Required | Description | Default |
---|---|---|---|
predictionId | Yes | ID of the prediction to retrieve |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"predictionId": {
"description": "ID of the prediction to retrieve",
"minLength": 1,
"type": "string"
}
},
"required": [
"predictionId"
],
"type": "object"
}