AI services
Replicate
Run open-source AI models.
Replicate allows users to run AI models via a cloud API without managing infrastructure.
Triggers0
Things that can wake up your Replicate coworker.
No triggers published for Replicate yet — but you can still run it on a schedule or from a chat.
Actions17
Things your coworker can do in Replicate.
- Cancel Prediction
Tool to cancel a prediction that is still running. Use when you need to stop an in-progress prediction to free up resources or halt execution.
REPLICATE_CANCEL_PREDICTION - Create Model
Tool to create a new Replicate model with specified owner, name, visibility, and hardware. Use when you need to create a destination model before launching LoRA/fine-tune training.
REPLICATE_CREATE_MODEL - Create Deployment
Tool to create a new deployment with specified model, version, hardware, and scaling parameters. Use when you need to deploy a model for production use with auto-scaling.
REPLICATE_DEPLOYMENTS_CREATE - Get Deployment Details
Tool to get deployment details by owner and name. Use when you need information about a specific deployment including its release configuration and hardware settings.
REPLICATE_DEPLOYMENTS_GET - Get File Details
Tool to get details of a file by its ID. Use when you need to inspect uploaded file information before further operations. Returned URLs may be short-lived; download or persist needed files promptly after retrieval.
REPLICATE_FILES_GET - List Files
Tool to retrieve a paginated list of uploaded files. Use to view all files created by the authenticated user or organization. Files are sorted with most recent first. Pagination is cursor-based: follow the next cursor until empty to retrieve all files. Limit requests to 1–2/second to avoid 429 Too Many Requests errors. Use to validate current file_ids before passing to prediction tools, as stale file_ids cause runtime errors.
REPLICATE_FILES_LIST - Get Prediction
Tool to get the status and output of a prediction by its ID. Use when you need to check on a running prediction or retrieve the results of a completed prediction.
REPLICATE_GET_PREDICTION - Get Model Details
Tool to get details of a specific model by owner and name. Consult the returned input schema before constructing any prediction request — each model defines its own required/optional fields (e.g., `prompt`, `aspect_ratio`, `version`); missing or unknown keys cause validation errors. Model schemas and available versions may change over time; recheck before production use.
REPLICATE_MODELS_GET - List Public Models
Tool to list public models with pagination and sorting. Use when you need to browse available models or find models sorted by creation date.
REPLICATE_MODELS_LIST - Create Model Prediction
Tool to create a prediction using an official Replicate model. Use when you need to run inference with a specific model using its owner and name. Supports synchronous waiting (up to 60 seconds) and webhooks for async notifications.
REPLICATE_MODELS_PREDICTIONS_CREATE - Get Model README
Tool to get the README content for a model in Markdown format. Consult alongside REPLICATE_MODELS_EXAMPLES_LIST before calling REPLICATE_CREATE_PREDICTION — Replicate enforces strict JSON schemas on model inputs and returns 422 errors for incorrect keys or types. Use after retrieving model details when you want to view its documentation.
REPLICATE_MODELS_README_GET - Get Model Version
Tool to get a specific version of a model. Use when you need details about a particular model version including its schema and metadata.
REPLICATE_MODELS_VERSIONS_GET - Create Prediction
Tool to create a prediction to run a model by version ID. Use when you have a specific model version identifier and need to run inference with provided inputs. Supports synchronous waiting and webhook notifications.
REPLICATE_PREDICTIONS_CREATE - List All Predictions
Tool to list all predictions for the authenticated user or organization with pagination. Use when you need to retrieve prediction history or filter predictions by creation date.
REPLICATE_PREDICTIONS_LIST - Search Models and Collections
Tool to search for models, collections, and docs using text queries (beta). Use when you need to find relevant models or collections based on keywords or descriptions.
REPLICATE_SEARCH - Create Training Job
Tool to create a training job for a specific model version. Use when you need to fine-tune a model with custom training data. Supports webhook notifications for training status updates.
REPLICATE_TRAININGS_CREATE - List Training Jobs
Tool to list all training jobs for the authenticated user or organization with pagination. Use when you need to retrieve training history or check the status of training jobs.
REPLICATE_TRAININGS_LIST