io.github.sena-labs/replicate-mcp-server
NPM · REPLICATE-MCP-SERVER · SCANNED AUG 3
Replicate MCP server - image, video, audio, speech, LLM, vision, upscale, 3D, training. 36 tools.
Available components
How this component scores in each security and reliability category. Every signal is checked automatically from public evidence about the published package, including repeated runs of it in an isolated sandbox, and we only credit what we can confirm. How we score →
Supply Chain Security87
- No malware found by supply-chain analysis.Pass
- Only part of the dependency tree could be resolved (106 of 110), so this covers what we could see, not the whole tree.Partial
- No install/post-install scripts declared.Pass
- Only part of the dependency tree could be resolved (106 of 110), so this covers what we could see, not the whole tree. View diagnostics → Partial
Provenance & Transparency45
- Source repository is publicly reachable at the declared URL. View diagnostics → Pass
- Provenance check failed: no build-provenance attestation is published. See how to fix → View diagnostics → Fail
- Clear OSI-approved license (MIT).Pass
- Actively maintained (last published 36 days ago).Pass
- Disclosure check failed: no security disclosure policy was found in the source repository. See how to fix → Fail
Schema Quality & AI Usability73
- 100% of prompts and resources have a non-trivial description (not blank, and not just the item's name).Pass
- AI-judged instruction clarity (excellent).Pass
- Context-footprint check failed: tool/resource definitions use about 12876 tokens (~338/item across 38 items; 36 tools + 2 resources), over budget; trim descriptions and params. See how to fix → Fail
- Usage-examples check failed: none of the tools include examples. See how to fix → Fail
Stability & Change Management23
- Stability observed for 7 of 30 days with no destabilising changes; credit accrues until the full window elapses.Partial
Tool Coverage97
- 100% of tools have a non-trivial description (not blank, and not just the tool's name).Pass
- 90% of tool parameters carry a description.Partial
Capabilities100
- Implements a supported MCP spec version (2025-11-25); the latest is 2026-07-28.Pass
Add this component to your MCP client. Where a client-specific snippet is available, pick your client below and copy it straight into your config; otherwise use the connection detail shown.
npm · replicate-mcp-server
claude mcp add sena-labs-replicate-mcp-server -- npx -y replicate-mcp-server
codex mcp add sena-labs-replicate-mcp-server -- npx -y replicate-mcp-server
{
"$schema": "https://opencode.ai/config.json",
"mcp": {
"sena-labs-replicate-mcp-server": {
"type": "local",
"command": [
"npx",
"-y",
"replicate-mcp-server"
],
"enabled": true
}
}
} openclaw mcp add sena-labs-replicate-mcp-server --command npx --arg -y --arg replicate-mcp-server
mcp_servers:
sena-labs-replicate-mcp-server:
command: "npx"
args: ["-y", "replicate-mcp-server"] {
"mcpServers": {
"sena-labs-replicate-mcp-server": {
"command": "npx",
"args": [
"-y",
"replicate-mcp-server"
]
}
}
} Every change we have recorded for this component, newest first. Security-relevant changes are always shown. ▲ marks a change for the better, ▼ a change for the worse; unmarked changes are neutral.
- 3 Aug 26 +1
No change was recorded against any check on this day. Stability & Change Management went from 20 to 23. That category is still filling its 30-day observation window: 6 days of observed history at the previous scan, 7 at this one. The score rises as the window fills, whether or not the server changes.
- 2 Aug 26 +44
- Provenance: unverified → fail ▼ security
- Install scripts: unverified → pass ▲ security
- Known CVEs: unverified → partial ▲ security
- Malware scan: unverified → pass ▲ security
- Schema quality: 100 → unverified ▼ functional
- Tool coverage: 100 → unverified ▼ functional
- Schema quality: unverified → excellent ▲ functional
- License: unverified → pass ▲ functional
- Dependency health: unverified → partial ▲ functional
- Stability: unverified → 0.20 ▲ functional
- Maintenance: unverified → pass ▲ functional
- MCP protocol: unverified → pass ▲ functional
- Licence: MIT functional
- 31 Jul 26 −1
- We updated how we score, so this day's move reflects our rubric, not a change to the server See what changed → functional
- 30 Jul 26 −25
- Schema quality: 100 → unverified ▼ functional
- Tool coverage: 100 → unverified ▼ functional
- 27 Jul 26 49
First indexed and scored.
Diagnostic detail from the automated scan of this channel: what the scanner observed at each step, so you can see exactly where a check passed or failed. It is informational only and never changes the trust score.
Captured 3 Aug 2026 · Analysed npm/[email protected]
Provenance none
Ecosystem: npm · Outcome: none
Dependencies 106 packages
106 packages in the resolved dependency tree · 105 deprecated · 38 stale.
The dependency tree was only partially resolved, so these counts may be incomplete.
The tools this component advertises to a client, with an estimated token cost for each. Expand a tool to see its parameters and schema. The per-tool counts are indicative and are not scored directly; the schema's total context footprint is one signal in Schema Quality & AI Usability.
replicate_batch_start Start Async Batch Predictions ~492
Run multiple Replicate predictions in parallel as a background job. Returns a job_id immediately — the predictions run in the background. Poll replicate_batch_status for progress and results. Use this when you have 2–50 predictions to run and don't want to block. Each item specifies its own model and input, so you can mix models in one batch. IMPORTANT: model must be a full Replicate identifier ("owner/name" or "owner/name:version"), not a curated shortcut like "flux-schnell". Use replicate_get_model_schema to look up the correct identifier. Args: - items (array, 1–50): Predictions to run. Each: { model: "owner/name[:version]", input: {...} }. - concurrency (1–10, default 3): Max simultaneous predictions. Raise with caution — Replicate rate-limits free accounts. - download (boolean, default true): Download output files locally. - timeout_ms_per_item (default 300000): Per-prediction timeout. Timed-out items have pending=true in their result. - ttl_hours (1–72, default 1): How long to keep results in memory. Job state is lost if the MCP server restarts. Returns: { job_id, total, message } Example: items=[ { model: "black-forest-labs/flux-schnell", input: { prompt: "a red fox" } }, { model: "black-forest-labs/flux-schnell", input: { prompt: "a blue whale" } }, ] → Returns { job_id: "abc-123", total: 2, message: "..." } → Then poll: replicate_batch_status({ job_id: "abc-123" })
| Name | Type | Req | Description |
|---|---|---|---|
| concurrency | integer | — | Max simultaneous predictions (1–10). Default: 3. |
| download | boolean | — | Download output files locally. Default: true. |
| items | array | yes | Predictions to run. 1–50 items. |
| timeout_ms_per_item | integer | — | Per-prediction timeout in ms (5000–1800000). Default: 300000 (5min). |
| ttl_hours | integer | — | How long to keep job results in memory (1–72h). Default: 1h. State is lost if the server restarts. |
No output schema declared.
No examples provided.
replicate_batch_status Get Batch Job Status ~228
Poll the status of an async batch job started with replicate_batch_start. Args: - job_id (string): Job ID returned by replicate_batch_start. - include_results (boolean, default true): Include full PredictionResult per item. Set false for a counts-only summary while the job is still running. Returns structuredContent: { job_id, overall_status, total, succeeded, failed, running, pending, created_at, expires_at, items: [{ index, model, status, prediction_id, result?, error?, started_at, completed_at }] } overall_status: "running" — predictions still in progress "completed" — all items succeeded "partial" — all done, at least one failed Tip: Poll every 10–30 seconds until overall_status is "completed" or "partial".
| Name | Type | Req | Description |
|---|---|---|---|
| include_results | boolean | — | Include full PredictionResult per completed item. Set false to get counts-only summary for large batches. Default: true. |
| job_id | string | yes | Job ID returned by replicate_batch_start. |
No output schema declared.
No examples provided.
replicate_cancel_prediction Cancel a Replicate prediction ~91
Cancel an in-progress prediction by its ID. Useful for long-running async jobs (video, large LLM) when the user no longer needs the result. Args: - prediction_id (string): ID of the prediction to cancel (returned by an earlier generate_* call). Returns: PredictionSummary with updated status (typically "canceled").
| Name | Type | Req | Description |
|---|---|---|---|
| prediction_id | string | yes | ID of the prediction to cancel. |
No output schema declared.
No examples provided.
replicate_cancel_training Cancel a Replicate training ~83
Cancel an in-progress training run by its ID. Trainings can run for many minutes and cost real money — cancel when no longer needed. Args: - training_id: ID of the training to cancel. Returns structuredContent: TrainingSummary with the updated status (typically "canceled").
| Name | Type | Req | Description |
|---|---|---|---|
| training_id | string | yes | ID of the in-progress training run to cancel. |
No output schema declared.
No examples provided.
replicate_chat Chat with an LLM via Replicate ~518
Run a large language model hosted on Replicate. Use this for free-form text generation, Q&A, code writing, summarisation, translation — anything where the input is text and the output is text. Args: - prompt (string): User message. - model (string, default "llama-3-70b"): Curated key (llama-3.1-405b, llama-3-70b, llama-3-8b, mistral-7b, mixtral-8x7b, deepseek-r1) or "owner/name". - system_prompt (string, optional): Persona / instructions. - max_tokens (1-8192, optional): Generation limit. - temperature (0-2, optional): Sampling temperature. - extra_input (object, optional): Model-specific extras (top_p, top_k, frequency_penalty, etc.). - download (boolean, default false): No file outputs; leave false. - timeout_ms (5000-1800000, optional): Default 300000. Returns: PredictionResult with text_output[0] containing the model's reply (later entries are raw streamed segments if applicable). Examples: - prompt="Explain quantum entanglement in two sentences.", model="llama-3-70b" - prompt="Write a Python function to compute Levenshtein distance.", model="mistral-large", system_prompt="You are an expert software engineer."
| Name | Type | Req | Description |
|---|---|---|---|
| download | boolean | — | LLM output is text — default false (no file to download). |
| extra_input | object | — | Additional model-specific inputs. |
| max_tokens | integer | — | Max tokens to generate. Default model-dependent. |
| model | — | — | LLM identifier. Curated keys: llama-3.1-405b, llama-3-70b, llama-3-8b, mistral-7b, mixtral-8x7b, deepseek-r1. Or full Replicate "owner/name[:version]". |
| prompt | string | yes | User message / prompt for the LLM. |
| system_prompt | string | — | Optional system prompt to set persona / instructions. |
| temperature | number | — | Sampling temperature 0.0–2.0. Lower = more deterministic. |
| timeout_ms | integer | — | Max ms to wait for the prediction. If exceeded, returns the prediction ID so you can poll via replicate_get_prediction. Default: 300000 (5min). |
No output schema declared.
No examples provided.
replicate_clone_voice Clone a voice with Replicate ~460
Synthesize speech in a cloned voice. Provide a short reference audio sample (~5-30 s) and the text to speak; the model reproduces the voice characteristics. DISPLAY REQUIREMENT — after this tool returns successfully, include the URL printed in the tool's text content as a markdown link `[Audio](URL)` so the user can play it. URLs expire in ~24h. Args: - text (string, 1-5000): Text to synthesize in the cloned voice. - reference_audio_url (URL): URL of the voice sample to clone from. Use replicate_upload_file to upload a local file first. - language (string, optional): ISO-639 code (e.g. "en", "es", "it"). Default "en". - model (string, default "xtts-v2"): Curated key (xtts-v2, openvoice-v2) or "owner/name[:version]". - extra_input (object, optional): Model-specific extras. - download (boolean, default true). - timeout_ms: Default 300000. Returns: PredictionResult. local_paths contain WAV/MP3 files. Examples: - text="Hello world, this is my cloned voice.", reference_audio_url="<url-to-your-voice-sample.wav>" - text="Buongiorno a tutti!", reference_audio_url="<url>", language="it"
| Name | Type | Req | Description |
|---|---|---|---|
| download | boolean | — | — |
| extra_input | object | — | Additional model-specific inputs. |
| language | string | — | ISO-639 language code (e.g. 'en', 'es', 'it'). Default: 'en'. |
| model | — | — | Voice cloning model. Curated: xtts-v2, openvoice-v2. Or "owner/name". |
| reference_audio_url | string | yes | URL of a short voice sample (~5-30s) to clone. Use replicate_upload_file if you only have a local file. |
| text | string | yes | Text to synthesize in the cloned voice. |
| timeout_ms | integer | — | Max ms to wait for the prediction. If exceeded, returns the prediction ID so you can poll via replicate_get_prediction. Default: 300000 (5min). |
No output schema declared.
No examples provided.
replicate_create_training Start a Replicate fine-tune / training run ~337
Kick off a fine-tuning (training) run on a trainable base model — e.g. a Flux LoRA trainer — with your dataset and hyperparameters. Returns immediately with a training ID; poll it with replicate_get_training. Args: - model: BASE trainer "owner/name" (or "owner/name:version" to pin the trainer version inline). e.g. "ostris/flux-dev-lora-trainer". - version (optional): trainer version id. Required unless pinned inline on model. - destination: "owner/name" the trained weights are pushed to. The destination model must already exist on your account. - input: training inputs as a JSON object (dataset URL + hyperparameters). Call replicate_get_model_schema on the trainer to see its exact inputs. Returns structuredContent: TrainingSummary { id, status, model, version, destination, created_at, completed_at, output_version, error }.
| Name | Type | Req | Description |
|---|---|---|---|
| destination | string | yes | Where the trained weights are pushed, as "owner/name". The destination model must already exist on your account. |
| input | object | — | Training inputs as a JSON object (dataset URL + hyperparameters). The exact keys depend on the trainer — call replicate_get_model_schema on the trainer model to see them. |
| model | string | yes | The BASE trainer model as "owner/name" (or "owner/name:version" to pin the trainer version inline). Example: "ostris/flux-dev-lora-trainer". |
| version | string | — | Trainer version id. Required unless you pinned it inline on `model` as "owner/name:version". |
No output schema declared.
No examples provided.
replicate_embed_text Compute text embeddings ~245
Convert text(s) into numeric embedding vectors. Useful for RAG, semantic search, clustering, similarity scoring. Args: - texts: A single string or an array of strings (max 256). Each text is embedded independently. - model (default "bge-large"): Curated (bge-large, jina-embeddings-v3, all-minilm) or "owner/name". - extra_input (object, optional): Model-specific extras (e.g. {task: "retrieval.query"} for jina v3). Returns: PredictionResult — the embedding vectors are in structuredContent.output (model-specific shape).
| Name | Type | Req | Description |
|---|---|---|---|
| download | boolean | — | Output is a numeric vector — default false. |
| extra_input | object | — | — |
| model | — | — | Embedding model. Curated: bge-large, jina-embeddings-v3, all-minilm. Or "owner/name". |
| texts | — | yes | A single text or an array of texts to embed. |
| timeout_ms | integer | — | Max ms to wait for the prediction. If exceeded, returns the prediction ID so you can poll via replicate_get_prediction. Default: 300000 (5min). |
No output schema declared.
No examples provided.
replicate_estimate_cost Estimate the USD cost of a Replicate prediction ~333
Return an approximate dollar-cost estimate for a planned prediction BEFORE running it. Prices are a hand-curated snapshot — actual billing comes from Replicate. Call this when the user asks "how much would X cost" or before launching a costly model. Args: - model: Replicate "owner/name" id or a curated short key (e.g. "flux-schnell", "kling-pro"). - num_outputs (1-20, optional): How many outputs to estimate. Default 1. - duration_seconds (1-600, optional): Required for per-second models (video, music, transcription, LLM). Returns structuredContent: { resolved_model_id, num_outputs, duration_seconds, estimated_usd, pricing_basis, note }. Examples: - model="flux-schnell", num_outputs=4 → ~$0.012 (4 × $0.003 per_run) - model="kling-pro", duration_seconds=5 → ~$0.45 (5 × $0.09 per_second) - model="meta/meta-llama-3-70b-instruct", duration_seconds=10 → ~$0.024 (10 × $0.0024 per_second)
| Name | Type | Req | Description |
|---|---|---|---|
| duration_seconds | number | — | For models priced per second (video, audio, LLM), the expected duration / token-equivalent. |
| model | string | yes | Replicate model id ("owner/name") or a curated key (e.g. "flux-schnell"). |
| num_outputs | integer | — | How many outputs to estimate for. Default 1. |
No output schema declared.
No examples provided.
replicate_generate_3d Generate a 3D model with Replicate ~495
Generate a 3D mesh (GLB/OBJ) from a text prompt or a reference image. 3D generation is slow — typically 1-5 minutes. DISPLAY REQUIREMENT — after this tool returns successfully, include the download URL(s) so the user can open the 3D file. URLs expire in ~24h. Args: - prompt (string, optional): Text description of the 3D object. Provide at least one of prompt or image_url. - image_url (URL, optional): Reference image to convert to 3D. Provide at least one of prompt or image_url. Use replicate_upload_file for local files. - model (string, default "hunyuan-3d"): Curated key (hunyuan-3d, rodin, triposr) or "owner/name[:version]". - extra_input (object, optional): Model-specific extras (e.g. {num_inference_steps: 50}). - download (boolean, default true): Download the GLB/OBJ locally. - timeout_ms: Default 300000. For complex objects, increase or use the pending+poll flow. Returns: PredictionResult. local_paths will contain .glb or .obj files. Examples: - prompt="A red ceramic teapot" → hunyuan-3d - image_url="<product-photo>", model="triposr" → fast single-image 3D - image_url="<photo>", model="rodin" → high-quality 3D
| Name | Type | Req | Description |
|---|---|---|---|
| download | boolean | — | — |
| extra_input | object | — | Additional model-specific inputs (e.g. {num_inference_steps: 50}). |
| image_url | string | — | URL of a reference image to convert to 3D. Provide either this or prompt (or both). Use replicate_upload_file for local images. |
| model | — | — | 3D generation model. Curated: hunyuan-3d, rodin, triposr. Or "owner/name". |
| prompt | string | — | Text description of the 3D object to generate. Provide either this or image_url (or both). |
| timeout_ms | integer | — | Max ms to wait for the prediction. If exceeded, returns the prediction ID so you can poll via replicate_get_prediction. Default: 300000 (5min). |
No output schema declared.
No examples provided.
replicate_generate_audio Generate Music or Audio with Replicate ~760
Generate music, ambient audio, or full songs from a text prompt. DISPLAY REQUIREMENT — after this tool returns successfully, include the URL(s) printed in the tool's text content as a markdown link `[Audio](URL)` in your reply so the user can play it. URLs expire in ~24h. Models: - "musicgen" (default): Meta MusicGen. Instrumental music up to 30s. prompt → "prompt" field. - "ace-step": Full songs with lyrics. prompt → "tags" field (style/genre tags). Pass lyrics separately via extra_input.lyrics. ~3-4 minutes runtime. - "riffusion": Loop-friendly ambient/electronic. prompt → "prompt_a" field. No duration control. - "minimax-music": MiniMax Music 2.6. Full songs up to 6min. prompt=style description; pass lyrics via extra_input.lyrics. - "lyria-3-pro": Google Lyria 3 Pro. Full songs up to 3min WITH sung vocals. Put genre, mood, lyrics, and structure ([Verse]/[Chorus]) directly in the prompt. No duration — do NOT pass duration_seconds. Also "lyria-3" (30s clips) and "lyria-2" (48kHz instrumental). Args: - prompt (string): Description of the music. For ace-step this maps to the "tags" field (style tags like "rock, guitar, upbeat"). For riffusion this maps to "prompt_a". For lyria put genre/mood/lyrics/structure here. - model (string, default "musicgen"): Curated key (musicgen, ace-step, riffusion, minimax-music, lyria-3-pro, lyria-3, lyria-2) or "owner/name[:version]". - duration_seconds (1-300, optional): Duration in seconds. Supported by musicgen and ace-step. Ignored for riffusion and the lyria models (they have no duration parameter). - extra_input (object, optional): Additional inputs. Examples: {temperature: 1.0, top_k: 250} for MusicGen; {lyrics: "verse lyrics here"} for ace-step. - download (boolean, default true): Download as MP3/WAV. - timeout_ms: Default 300000 (5min). Returns: PredictionResult. local_paths contain audio files. Examples: - prompt="upbeat synthwave with driving bassline", duration_seconds=15 → musicgen - prompt=…
| Name | Type | Req | Description |
|---|---|---|---|
| download | boolean | — | Whether to download the generated files locally. Default true. When false, only Replicate URLs are returned (URLs expire after ~24h). |
| duration_seconds | number | — | Duration in seconds. Model-dependent. |
| extra_input | object | — | Additional model-specific inputs. |
| model | — | — | Either a curated key (musicgen, ace-step, riffusion, minimax-music, lyria-3-pro, lyria-3, lyria-2) or a Replicate identifier. |
| prompt | string | yes | Description of the music/audio. For songs with lyrics (ace-step), include the lyrics here. |
| timeout_ms | integer | — | Max ms to wait for the prediction. If exceeded, returns the prediction ID so you can poll via replicate_get_prediction. Default: 300000 (5min). |
No output schema declared.
No examples provided.
replicate_generate_image Generate Image with Replicate ~979
Generate one or more images from a text prompt using a Replicate image model. Use this for any "draw / create / generate an image of …" request. By default it uses Flux Schnell (fast, ~2 seconds per image). DISPLAY REQUIREMENT — after this tool returns successfully, you MUST embed the image inline in your reply by pasting ONE of the three embed blocks the tool prints verbatim (Option 1 iframe, Option 2 <img>, or Option 3 markdown — try them in that order; pick the first one your chat client renders). The iframe variant scales to the chat column width with the image's native aspect ratio; the <img> variant is a responsive fallback; markdown is the universal last resort. Place the chosen embed BEFORE any descriptive prose. Do NOT paraphrase the URL or omit the embed — the user wants the image to appear in the main chat flow, not only inside the collapsed tool widget. URLs expire in ~24h. Args: - prompt (string): Text description of the image to generate. - model (string, default "flux-schnell"): Either a curated key (flux-schnell, flux-dev, flux-pro, flux-2-max, sd-3.5-large, recraft-v3, recraft-v4.1, ideogram-v2, imagen-3, seedream) or a full Replicate identifier "owner/name[:version]". - aspect_ratio ("1:1" | "16:9" | "9:16" | "4:3" | "3:4" | "21:9" | "3:2" | "2:3", optional): Aspect ratio. Default 1:1. - num_outputs (1-4, optional): How many images to generate. - seed (integer, optional): Random seed for reproducible output. - extra_input (object, optional): Model-specific extra inputs (e.g. {guidance: 3.5, num_inference_steps: 28}). Use replicate_get_model_schema if unsure. - download (boolean, default true): Download files locally to ~/Downloads/replicate-mcp/. - timeout_ms (5000-1800000, optional): Max wait. Default 300000 (5min). Returns structuredContent matching PredictionResult: { "status": "starting" | "processing" | "succeeded" | "failed" | "canceled", "prediction_id": string, "model": string, "urls": string[],…
| Name | Type | Req | Description |
|---|---|---|---|
| aspect_ratio | string | — | Aspect ratio. Supported by Flux models. Default 1:1. |
| download | boolean | — | Whether to download the generated files locally. Default true. When false, only Replicate URLs are returned (URLs expire after ~24h). |
| extra_input | object | — | Additional model-specific inputs merged into the request (e.g. {guidance: 3.5}). Use replicate_get_model_schema to see what a model accepts. |
| model | — | — | Either a curated key (flux-schnell, flux-dev, flux-pro, sd-3.5-large, recraft-v3, recraft-v4.1, flux-2-max, seedream, ideogram-v2, imagen-3) or a Replicate identifier like "owner/name" or "owner/name… |
| num_outputs | integer | — | Number of images to generate (1-4). |
| prompt | string | yes | Text prompt describing the image to generate. |
| seed | integer | — | Random seed for reproducible outputs. |
| timeout_ms | integer | — | Max ms to wait for the prediction. If exceeded, returns the prediction ID so you can poll via replicate_get_prediction. Default: 300000 (5min). |
No output schema declared.
No examples provided.
replicate_generate_speech Generate Speech (TTS) with Replicate ~458
Convert text to natural-sounding speech. DISPLAY REQUIREMENT — after this tool returns successfully, include the URL printed in the tool's text content as a markdown link `[Speech](URL)` in your reply so the user can play it. URLs expire in ~24h. Args: - text (string, 1-5000): Text to synthesize. - model (string, default "kokoro"): Curated key (kokoro, minimax-speech, chatterbox, gemini-tts, grok-tts) or "owner/name[:version]". - voice (string, optional): Voice ID. For Kokoro: af_bella, af_sarah, am_adam, am_michael, bf_emma, bf_isabella, etc. (a-f = American female, b-f = British female, a-m = American male, b-m = British male). - speed (0.5-2.0, optional): Speech rate. - extra_input (object, optional): Model-specific extras (e.g. {audio_prompt: "<url>"} for voice cloning with Chatterbox). - download (boolean, default true). - timeout_ms: Default 300000. Returns: PredictionResult. local_paths contain WAV/MP3 files.
| Name | Type | Req | Description |
|---|---|---|---|
| download | boolean | — | Whether to download the generated files locally. Default true. When false, only Replicate URLs are returned (URLs expire after ~24h). |
| extra_input | object | — | Additional model-specific inputs. |
| model | — | — | Either a curated key (kokoro, minimax-speech, chatterbox, gemini-tts, grok-tts) or a Replicate identifier. |
| speed | number | — | Speech speed multiplier (0.5-2.0). |
| text | string | yes | Text to synthesize. |
| timeout_ms | integer | — | Max ms to wait for the prediction. If exceeded, returns the prediction ID so you can poll via replicate_get_prediction. Default: 300000 (5min). |
| voice | string | — | Voice identifier. Kokoro examples: af_bella, am_adam, bf_emma. Check model docs for full list. |
No output schema declared.
No examples provided.
replicate_generate_video Generate Video with Replicate ~513
Generate a video clip from a text prompt (and optionally a starting image). Video generation is slow — typically 1-5 minutes per clip. DISPLAY REQUIREMENT — after this tool returns successfully, include the URL(s) printed in the tool's text content so the user can open the video. URLs expire in ~24h. Args: - prompt (string): Text description of the video. - model (string, default "kling-pro"): Curated key (kling-pro, minimax-video, hunyuan-video, luma-ray, wan-2.2, grok-video, seedance) or "owner/name[:version]". - image_url (string, optional): Starting frame for image-to-video. Not all models support this. - duration_seconds (1-60, optional): Desired duration. Model-dependent. - aspect_ratio ("16:9" | "9:16" | "1:1", optional): Aspect ratio. - extra_input (object, optional): Additional model-specific inputs. - download (boolean, default true): Download the MP4 locally. - timeout_ms: Max wait. Default 300000 (5min). For very long videos, increase or rely on the pending+poll flow. Returns: PredictionResult (see replicate_generate_image for shape). The local_paths will contain .mp4 files when downloaded. Tip: If timeout_ms is exceeded, the result will have pending=true and a prediction_id. Wait a minute, then call replicate_get_prediction.
| Name | Type | Req | Description |
|---|---|---|---|
| aspect_ratio | string | — | Aspect ratio. |
| download | boolean | — | Whether to download the generated files locally. Default true. When false, only Replicate URLs are returned (URLs expire after ~24h). |
| duration_seconds | number | — | Desired duration in seconds. Model-dependent. |
| extra_input | object | — | Additional model-specific inputs. |
| image_url | string | — | Optional starting image URL for image-to-video. Not all models support this — check model schema. |
| model | — | — | Either a curated key (kling-pro, minimax-video, hunyuan-video, luma-ray, wan-2.2, grok-video, seedance) or a Replicate identifier. |
| prompt | string | yes | Text prompt describing the video. |
| timeout_ms | integer | — | Max ms to wait for the prediction. If exceeded, returns the prediction ID so you can poll via replicate_get_prediction. Default: 300000 (5min). |
No output schema declared.
No examples provided.
replicate_get_deployment Inspect a Replicate deployment ~66
Get the configuration of one deployment: its current model + version, hardware, and autoscaling min/max instances. Args: - deployment: "owner/name" of the deployment. Returns structuredContent: DeploymentSummary.
| Name | Type | Req | Description |
|---|---|---|---|
| deployment | string | yes | Deployment identifier as "owner/name". |
No output schema declared.
No examples provided.
replicate_get_model_schema Get Replicate Model Input Schema ~175
Retrieve metadata and the OpenAPI input/output schema for a specific Replicate model. Use this before replicate_run_model to know which fields the model accepts and what they mean. Args: - model (string): "owner/name" or "owner/name:version". Returns structuredContent: { "model": string, "description": string | undefined, "visibility": string | undefined, "latest_version_id": string | undefined, "input_schema": object | undefined, // OpenAPI schema for inputs "output_schema": object | undefined, // OpenAPI schema for outputs "example_url": string | undefined // Replicate page with examples }
| Name | Type | Req | Description |
|---|---|---|---|
| model | string | yes | Model identifier in "owner/name" or "owner/name:version" form. |
No output schema declared.
No examples provided.
replicate_get_prediction Get Replicate Prediction Status ~212
Retrieve the current status and (if available) outputs of a Replicate prediction by its ID. Use this when a previous generate_* or run_model call returned pending=true (timed out before completion). Args: - prediction_id (string): The ID returned by a previous call. - download (boolean, default true): If the prediction has succeeded, download its outputs locally. Returns: PredictionResult — same shape as replicate_generate_image. If still running, status will be "processing" or "starting" and pending will be true. Typical flow: 1. Call replicate_generate_video → returns pending=true with prediction_id=abc123. 2. Wait ~1 minute. 3. Call replicate_get_prediction with prediction_id=abc123 → returns succeeded + URLs + local_paths.
| Name | Type | Req | Description |
|---|---|---|---|
| download | boolean | — | If the prediction has succeeded, whether to download outputs locally. |
| prediction_id | string | yes | Prediction ID returned by a generate_* or run_model call that timed out. |
No output schema declared.
No examples provided.
replicate_get_training Get a Replicate training by ID ~76
Retrieve the current state of a training run: status, the resulting trained model version (once it succeeds), and any error. Args: - training_id: ID returned by replicate_create_training. Returns structuredContent: TrainingSummary.
| Name | Type | Req | Description |
|---|---|---|---|
| training_id | string | yes | ID of the training run to inspect (returned by replicate_create_training). |
No output schema declared.
No examples provided.
replicate_inpaint Inpaint / outpaint an image with a mask ~315
Fill masked regions of an image based on a text prompt. Works for both inpainting (replace inside) and outpainting (extend canvas) when the mask covers the target area. DISPLAY REQUIREMENT — embed the result inline using one of the three blocks (iframe / <img> / markdown) printed by the tool. Args: - image (URL): Source image. - mask (URL): Mask image. White = keep, black/transparent = repaint. - prompt: Describes what should appear in the masked region. - model (default "flux-fill-pro"): Curated (flux-fill-pro, sd-inpaint, ideogram-v2-edit) or "owner/name". - extra_input (object, optional): Model-specific extras (e.g. {guidance: 30} for flux-fill-pro).
| Name | Type | Req | Description |
|---|---|---|---|
| download | boolean | — | — |
| extra_input | object | — | — |
| image | string | yes | URL of the source image. |
| mask | string | yes | URL of the mask. White areas are kept; black/transparent areas are inpainted. |
| model | — | — | Inpaint model. Curated: flux-fill-pro, sd-inpaint, ideogram-v2-edit. Or "owner/name". |
| prompt | string | yes | Text describing what to paint in the masked area. |
| timeout_ms | integer | — | Max ms to wait for the prediction. If exceeded, returns the prediction ID so you can poll via replicate_get_prediction. Default: 300000 (5min). |
No output schema declared.
No examples provided.
replicate_lipsync Lipsync / talking avatar with Replicate ~503
Animate a portrait image to speak — either from a text script (model does TTS + lipsync) or from a driving audio file. Produces an MP4 video. DISPLAY REQUIREMENT — after this tool returns successfully, include the URL(s) so the user can open the video. URLs expire in ~24h. Args: - image_url (URL): Portrait or face image to animate. Use replicate_upload_file for local files. - text (string, optional): Script for the avatar to speak. Used by video-avatar (maps to voice_script). At least one of text or audio_url is required. - audio_url (URL, optional): Driving audio for lipsync. Required for sadtalker; optional override for video-avatar. At least one of text or audio_url is required. - model (string, default "video-avatar"): Curated key (video-avatar, sadtalker) or "owner/name[:version]". - extra_input (object, optional): Model-specific extras (e.g. {voice_prompt: "speak slowly"} for video-avatar). - download (boolean, default true): Download the MP4 locally. - timeout_ms: Default 300000. Returns: PredictionResult. local_paths contain .mp4 files. Examples: - image_url="<portrait.jpg>", text="Hello! Welcome to our product demo." → video-avatar (TTS + lipsync) - image_url="<face.jpg>", audio_url="<speech.wav>", model="sadtalker" → audio-driven lipsync
| Name | Type | Req | Description |
|---|---|---|---|
| audio_url | string | — | URL of the driving audio. Required for audio-only lipsync models (sadtalker). Optional override when model can do TTS. |
| download | boolean | — | — |
| extra_input | object | — | Additional model-specific inputs. |
| image_url | string | yes | URL of the portrait or face image to animate. Use replicate_upload_file for local files. |
| model | — | — | Lipsync model. Curated: video-avatar, sadtalker. Or "owner/name". |
| text | string | — | Text script for the avatar to speak. Required for models that do TTS+lipsync (video-avatar). Ignored when audio_url is provided. |
| timeout_ms | integer | — | Max ms to wait for the prediction. If exceeded, returns the prediction ID so you can poll via replicate_get_prediction. Default: 300000 (5min). |
No output schema declared.
No examples provided.
replicate_list_deployments List your Replicate deployments ~119
List the deployments on the authenticated Replicate account. A deployment is a private, autoscaled endpoint pinned to a specific model + hardware. Args: - limit (1-100, default 20): How many deployments to return. Returns structuredContent: { count: number, deployments: DeploymentSummary[] }. Each DeploymentSummary has owner, name, and current_release { model, version, hardware, min_instances, max_instances }.
| Name | Type | Req | Description |
|---|---|---|---|
| limit | integer | — | Number of deployments to return (1–100). Default 20. |
No output schema declared.
No examples provided.
replicate_list_predictions List recent Replicate predictions ~112
Return the most recent predictions on the authenticated Replicate account. Useful to recover a prediction ID, audit recent calls, or check what's still running. Args: - limit (1-100, default 10): How many predictions to return. Returns structuredContent: { count: number, predictions: PredictionSummary[] } Each PredictionSummary has id, model, status, created_at, completed_at, url.
| Name | Type | Req | Description |
|---|---|---|---|
| limit | integer | — | Number of recent predictions to return (1–100). Default 10. |
No output schema declared.
No examples provided.
replicate_list_trainings List recent Replicate trainings ~79
Return the most recent training runs on the authenticated account. Args: - limit (1-100, default 10): How many trainings to return. Returns structuredContent: { count: number, trainings: TrainingSummary[] }.
| Name | Type | Req | Description |
|---|---|---|---|
| limit | integer | — | Number of recent training runs to return (1–100). Default 10. |
No output schema declared.
No examples provided.
replicate_pipeline_start Start Async Pipeline (DAG of predictions) ~583
Run a directed acyclic graph (DAG) of Replicate predictions as a background job. Returns a pipeline_id immediately. Poll replicate_pipeline_status for per-step progress and results. Independent steps run concurrently. Downstream steps auto-start when their dependencies complete. Use "$stepId.field[n]" template strings to pass one step's output as another step's input. IMPORTANT: model must be a full Replicate identifier ("owner/name" or "owner/name:version"). Curated shortcuts (e.g. "flux-schnell") are not supported — look up the full id via replicate_get_model_schema. Template reference syntax: "$gen.urls[0]" → first URL output of step "gen" "$gen.urls" → full URLs array "$gen.local_paths[0]" → first downloaded local path "$gen.text_output[0]" → first text output (for LLMs) Args: - steps (array, 1–20): Pipeline steps. Each: { id, model, input, depends_on? }. depends_on is inferred from $ref patterns in input when omitted. - concurrency (1–5, default 3): Max simultaneous steps. - download (boolean, default true): Download step outputs locally. - timeout_ms_per_step (default 300000): Per-step timeout. - ttl_hours (1–72, default 1): How long to keep results in memory. Lost on server restart. Returns: { pipeline_id, total, message } Example — generate + upscale + remove background in parallel: steps=[ { "id": "gen", "model": "black-forest-labs/flux-schnell", "input": { "prompt": "a fox" } }, { "id": "upscale", "model": "nightmareai/real-esrgan", "input": { "image": "$gen.urls[0]", "scale": 4 } }, { "id": "no_bg", "model": "lucataco/remove-bg", "input": { "image": "$gen.urls[0]" } } ] upscale and no_bg both depend on gen, run in parallel after gen completes.
| Name | Type | Req | Description |
|---|---|---|---|
| concurrency | integer | — | Max simultaneous steps (1–5). Default: 3. |
| download | boolean | — | Download step outputs locally. Default: true. |
| steps | array | yes | Pipeline steps. 1–20 steps. |
| timeout_ms_per_step | integer | — | Per-step prediction timeout ms (5000–1800000). Default: 300000 (5min). |
| ttl_hours | integer | — | How long to keep pipeline results in memory (1–72h). Default: 1h. State is lost if the server restarts. |
No output schema declared.
No examples provided.
replicate_pipeline_status Get Pipeline Status ~269
Poll the status of a pipeline started with replicate_pipeline_start. Args: - pipeline_id (string): Pipeline ID returned by replicate_pipeline_start. - include_outputs (boolean, default true): Include full PredictionResult per step. Set false for a counts-only summary while the pipeline is running. Returns structuredContent: { pipeline_id, overall_status, total, succeeded, failed, skipped, running, pending, created_at, expires_at, steps: [{ id, model, status, prediction_id, result?, error?, skip_reason?, started_at, completed_at }] } overall_status: "running" — steps still executing "completed" — all steps succeeded "partial" — all done, at least one failed or was skipped (failed dependency or budget error) Note: pipeline-level errors (cycle detected, unknown depends_on) are rejected at replicate_pipeline_start with an error response — they never produce a pollable pipeline. Tip: Poll every 10–30 seconds until overall_status is "completed" or "partial".
| Name | Type | Req | Description |
|---|---|---|---|
| include_outputs | boolean | — | Include full PredictionResult per step. Set false for counts-only summary while pipeline is running. Default: true. |
| pipeline_id | string | yes | Pipeline ID returned by replicate_pipeline_start. |
No output schema declared.
No examples provided.
replicate_recommend_model Recommend the Best Model for a Task ~471
Rank the curated models in a category by a priority (speed, cost, quality, or balanced) and return recommendations with cost estimates and reasoning. This does NOT run anything — it advises which model to use. Workflow: call this to pick a model, then call the matching generate tool (e.g. replicate_generate_image) with model set to the recommended key. Args: - category (required): One of image, video, audio, tts, llm, vision, upscale, bg, stt, inpaint, segment, embed, voiceclone, threed, lipsync. - priority (default "balanced"): "speed" (fastest), "cost" (cheapest), "quality" (best), or "balanced" (weighted). - task_description (optional): Free text. Keyword hints like "quick draft" or "professional logo" nudge balanced ranking. - max_cost_usd (optional): Exclude models estimated above this cost. - duration_seconds (optional, 1–600): For per-second-priced categories (video, audio), used in cost estimation. Returns structuredContent: { category, priority, recommendations: [{ key, model_id, speed, est_cost_usd, score, reason }], // top 5 count } Examples: - category="image", priority="speed" → flux-schnell first - category="image", priority="quality" → highest-fidelity model first - category="video", priority="cost", duration_seconds=5 → cheapest per-5s clip
| Name | Type | Req | Description |
|---|---|---|---|
| category | string | yes | Which model category to recommend within. |
| duration_seconds | number | — | For per-second-priced categories (video, audio), the expected duration used in cost estimation. |
| max_cost_usd | number | — | Optional cap — exclude models whose estimated cost exceeds this. Models with unknown pricing are always included regardless of this cap. |
| priority | string | — | Optimization target. speed=fastest, cost=cheapest, quality=best, balanced=weighted blend. Default: balanced. |
| task_description | string | — | Optional task description. Keyword hints (e.g. 'quick draft' or 'professional logo') nudge balanced-mode ranking. |
No output schema declared.
No examples provided.
replicate_refresh_models Discover New Popular Replicate Models ~358
Search Replicate for popular models NOT yet in the curated registry. Returns suggestions only — does not modify code. Use this to find new models worth adding. Then ask Claude to edit src/models.ts with the ones you want. Args: - categories (string[], optional): Which categories to check. Default: all 15 (image, video, audio, tts, llm, vision, upscale, bg, stt, inpaint, segment, embed, voiceclone, threed, lipsync). - min_run_count (integer, optional): Minimum run_count threshold. Default: 1000. - limit_per_category (integer, optional): Max suggestions per category (1-20). Default: 5. Returns structuredContent: { "checked_at": string, "categories_checked": string[], "suggestions": [{ category, owner, name, model_id, run_count, description, replicate_url }], "already_curated": number, "total_suggestions": number } Examples: - "Check for new popular models" → all categories, min 1000 runs - categories=["image","video"], min_run_count=10000 → only top-tier image/video models
| Name | Type | Req | Description |
|---|---|---|---|
| categories | array | — | Categories to check. Default: all 15 (image, video, audio, tts, llm, vision, upscale, bg, stt, inpaint, segment, embed, voiceclone, threed, lipsync). |
| limit_per_category | integer | — | Max suggestions per category (1–20). Default: 5. |
| min_run_count | integer | — | Minimum run_count to surface a model. Default: 1000. |
No output schema declared.
No examples provided.
replicate_remove_background Remove the background from an image ~282
Produce a transparent-background version (PNG) of an image. DISPLAY REQUIREMENT — after this tool returns successfully, embed the cut-out image inline using one of the three blocks (iframe / <img> / markdown) printed by the tool. Args: - image (string URL): URL of the source image. - model (string, default "rembg"): Curated key (rembg, birefnet, briaai-rmbg) or "owner/name". - extra_input (object, optional): Model-specific extras. - download (boolean, default true): Download the cut-out PNG locally. Returns: PredictionResult with urls + local_paths to a transparent PNG. Examples: - image="<product-photo>" → rembg quick cut - image="<portrait>", model="birefnet" → sharper edge for hair
| Name | Type | Req | Description |
|---|---|---|---|
| download | boolean | — | — |
| extra_input | object | — | — |
| image | string | yes | URL of the image whose background to remove. |
| model | — | — | Background remover. Curated: rembg, birefnet, briaai-rmbg. Or "owner/name". |
| timeout_ms | integer | — | Max ms to wait for the prediction. If exceeded, returns the prediction ID so you can poll via replicate_get_prediction. Default: 300000 (5min). |
No output schema declared.
No examples provided.
replicate_run_deployment Run a prediction on a Replicate deployment ~263
Run a prediction against a deployment's current release. WAITS for the prediction to finish and (by default) auto-downloads the outputs locally — same UX as the curated generate_* tools. Args: - deployment: "owner/name" of the deployment to run. - input: model input parameters as a JSON object (same shape the deployment's underlying model expects). - download (default true): download output files locally. - timeout_ms (optional): max ms to wait before returning a pending result you can poll with replicate_get_prediction. Returns the standard prediction result (inline image preview / text output, URLs, local_paths, prediction_id).
| Name | Type | Req | Description |
|---|---|---|---|
| deployment | string | yes | Deployment to run, as "owner/name". Inspect it first with replicate_get_deployment. |
| download | boolean | — | Whether to download the generated files locally. Default true. When false, only Replicate URLs are returned (URLs expire after ~24h). |
| input | object | — | Model input parameters as a JSON object — same shape the deployment's underlying model expects. |
| timeout_ms | integer | — | Max ms to wait for the prediction. If exceeded, returns the prediction ID so you can poll via replicate_get_prediction. Default: 300000 (5min). |
No output schema declared.
No examples provided.
replicate_run_model Run Any Replicate Model ~767
Generic escape hatch: run ANY model in the Replicate catalog by its "owner/name" identifier. This tool gives Claude access to the entire Replicate model catalog — anything not covered by the curated specialised tools (image, video, audio, speech, chat, vision, upscale, remove-bg) can be reached from here. DISPLAY REQUIREMENT — if the result includes image URLs, paste ONE of the embed blocks the tool prints (iframe / <img> / markdown — try in order) verbatim in your reply so the image renders inline in the chat. Use this for any category WITHOUT a curated specialised tool, including but not limited to: - Embeddings (sentence-transformers, BGE, Jina) - Segmentation (SAM, Segment Anything) - Depth estimation (MiDaS, ZoeDepth, Marigold) - Inpainting / outpainting (LaMa, Stable Diffusion Inpaint, controlnet-inpaint) - ControlNet variants (canny, depth, openpose, normal-map) - Face / pose / hand detection (insightface, mediapipe, etc.) - 3D generation (TripoSR, Wonder3D, InstantMesh) - Audio-to-text / speech recognition (whisper, Distil-Whisper) - Audio separation / stem splitting (Demucs, MDX) - Style transfer, colourisation, deblurring, denoising - Code completion / instruction-tuned code models (CodeLlama, DeepSeek-Coder) - Music continuation / source separation - ANY newly released model not yet in the curated registries Workflow: 1. (Optional) Call replicate_search_models to discover models by keyword (e.g. "image segmentation", "speech to text"). 2. (Recommended) Call replicate_get_model_schema with "owner/name" to inspect required inputs. 3. Call this tool with the model id and an input object matching that schema. Args: - model (string): "owner/name" (latest official version) or "owner/name:version_hash" (pinned). - input (object): Model-specific input parameters. - download (boolean, default true): Download outputs locally. - timeout_ms: Default 300000. Returns: PredictionResult. Examples: - Upscale an image:…
| Name | Type | Req | Description |
|---|---|---|---|
| download | boolean | — | Whether to download the generated files locally. Default true. When false, only Replicate URLs are returned (URLs expire after ~24h). |
| input | object | yes | Model input parameters as a JSON object. Use replicate_get_model_schema first if unsure what a model accepts. |
| model | string | yes | Replicate model identifier. Either "owner/name" (uses latest official version) or "owner/name:version_hash" (pins a specific version). Examples: "black-forest-labs/flux-schnell", "meta/meta-llama-3-7… |
| timeout_ms | integer | — | Max ms to wait for the prediction. If exceeded, returns the prediction ID so you can poll via replicate_get_prediction. Default: 300000 (5min). |
No output schema declared.
No examples provided.
replicate_search_models Search Replicate Model Catalog ~203
Search the Replicate catalog by free-text query. Returns up to 25 matching models with names, descriptions, and URLs. Args: - query (string, 1-200 chars): Free-text search. Examples: "image upscaler", "voice cloning", "depth estimation", "code generation". Returns structuredContent: { "count": number, "models": [ { "owner": string, "name": string, "description": string | undefined, "url": string, "run_count": number | undefined, "cover_image_url": string | undefined } ] } Tip: Once you find a promising model, call replicate_get_model_schema with "owner/name" to see its inputs before calling replicate_run_model.
| Name | Type | Req | Description |
|---|---|---|---|
| query | string | yes | Free-text search across the Replicate model catalog. Examples: "image upscaler", "voice cloning", "background removal". |
No output schema declared.
No examples provided.
replicate_segment Segment an image (SAM 2 / Grounded-SAM) ~294
Produce a segmentation mask of an image. Use SAM 2 for point/box-prompt masks (auto-mask everything when no prompt given) or Grounded-SAM for text-prompt masking like "the red car". DISPLAY REQUIREMENT — embed the mask result inline using one of the three blocks printed by the tool. Args: - image (URL): Source image. - prompt (string, optional): Text prompt for grounded segmentation. Required for grounded-sam. - model (default "sam-2"): Curated (sam-2, grounded-sam) or "owner/name". - extra_input (object, optional): SAM-specific tuning (e.g. {points_per_side: 32}).
| Name | Type | Req | Description |
|---|---|---|---|
| download | boolean | — | — |
| extra_input | object | — | Model-specific extras (e.g. {points_per_side: 32} for SAM 2 auto-mask). |
| image | string | yes | URL of the image to segment. |
| model | — | — | Segmentation model. Curated: sam-2, grounded-sam. Or "owner/name". |
| prompt | string | — | Text-prompt for grounded segmentation (e.g. 'the red car'). Required for grounded-sam. |
| timeout_ms | integer | — | Max ms to wait for the prediction. If exceeded, returns the prediction ID so you can poll via replicate_get_prediction. Default: 300000 (5min). |
No output schema declared.
No examples provided.
replicate_transcribe_audio Transcribe Audio / Video with Whisper ~328
Transcribe an audio or video file to text using Whisper-family models on Replicate. Args: - audio (URL): URL of the audio (or video) to transcribe. - model (default "incredibly-fast-whisper"): Curated key (whisper, incredibly-fast-whisper, whisperx, scribe) or "owner/name". - language (string, optional): ISO-639 hint (e.g. "en", "it"). Default: auto-detect. - translate_to_english (bool, optional): Translate the transcript to English instead of preserving source language. - extra_input (object, optional): Model-specific extras (e.g. {batch_size: 24} for incredibly-fast-whisper). Returns: PredictionResult with text_output containing the transcript.
| Name | Type | Req | Description |
|---|---|---|---|
| audio | string | yes | URL of the audio (or video) file to transcribe. |
| download | boolean | — | Output is text — default false. |
| extra_input | object | — | — |
| language | string | — | ISO-639 language hint (e.g. 'en', 'it'). Default: auto-detect. |
| model | — | — | Speech-to-text model. Curated: whisper, incredibly-fast-whisper, whisperx, scribe. Or "owner/name". |
| timeout_ms | integer | — | Max ms to wait for the prediction. If exceeded, returns the prediction ID so you can poll via replicate_get_prediction. Default: 300000 (5min). |
| translate_to_english | boolean | — | If true, translate the transcript to English. |
No output schema declared.
No examples provided.
replicate_upload_file Upload a file (path or base64) to Replicate ~543
Upload a file to Replicate's file storage and get back a URL valid for ~24 hours. Pass the returned URL as a model input (e.g. image for upscale/inpaint/vision, image_url for video, reference_audio_url for voice clone). Two input modes — provide EXACTLY ONE: - file_path: absolute local path of a file on the machine running the server. - base64_data: the file's bytes as base64 (a bare base64 string OR a full "data:<mime>;base64,..." URI). Use this when you hold bytes in memory but have no local path — e.g. an image a user dropped into the chat that a code container can read and base64-encode. NOTE: an MCP client (Claude Desktop) generally cannot reproduce a large dragged-in image's exact bytes as a tool argument — base64 mode is for callers that genuinely have the bytes (web container, programmatic clients). Args: - file_path (string, optional): Absolute local path. Provide this OR base64_data. - base64_data (string, optional): base64 contents or data: URI. Provide this OR file_path. - mime_type (string, optional): MIME override (e.g. 'image/png'). Auto-detected from the path extension or a data: URI; defaults to application/octet-stream for raw base64. - file_name (string, optional): Name for a base64 upload. Returns structuredContent: { url, file_id, name } - url: Replicate-hosted URL (~24h expiry) — pass this as a model input. Examples: - file_path="C:/Users/me/photo.png" - base64_data="data:image/png;base64,iVBORw0KG...", → uploads, returns URL
| Name | Type | Req | Description |
|---|---|---|---|
| base64_data | string | — | File contents as base64 (a bare base64 string or a full 'data:<mime>;base64,...' URI). Use this when you have bytes in memory but no local path — e.g. a code container that read a chat-uploaded image… |
| file_name | string | — | Optional name for a base64 upload. Ignored when file_path is used (the basename is taken from the path). |
| file_path | string | — | Absolute local path of the file to upload. Provide either this OR base64_data. |
| mime_type | string | — | MIME type override (e.g. 'image/png'). Auto-detected from file extension (file_path) or the data URI; defaults to application/octet-stream for raw base64. |
No output schema declared.
No examples provided.
replicate_upscale_image Upscale / restore an image with Replicate ~410
Upscale an image to higher resolution. Optional face restoration for photos. DISPLAY REQUIREMENT — after this tool returns successfully, embed the upscaled image inline using one of the three blocks (iframe / <img> / markdown) printed by the tool. Place it BEFORE descriptive prose. URLs expire ~24h. Args: - image (string URL): URL of the source image. - model (string, default "real-esrgan"): Curated key (real-esrgan, clarity-upscaler, swinir, gfpgan) or "owner/name". - scale (1-10, optional): Upscale factor. Default 4 for real-esrgan; 2 for gfpgan; 2 for clarity-upscaler. - extra_input (object, optional): Model-specific extras (e.g. {face_enhance: true} for real-esrgan). - download (boolean, default true): Download upscaled file locally. Returns: PredictionResult with urls + local_paths to the upscaled image. Examples: - image="<low-res-photo>", scale=4 → real-esrgan - image="<face-photo>", model="gfpgan", scale=2 → restoration - image="<artwork>", model="clarity-upscaler", scale=2
| Name | Type | Req | Description |
|---|---|---|---|
| download | boolean | — | — |
| extra_input | object | — | — |
| image | string | yes | URL of the image to upscale. |
| model | — | — | Upscaler. Curated: real-esrgan, clarity-upscaler, swinir, gfpgan, clarity-pro. Or "owner/name". |
| scale | number | — | Upscale factor (1–10). Model-dependent; default 4 for real-esrgan. |
| timeout_ms | integer | — | Max ms to wait for the prediction. If exceeded, returns the prediction ID so you can poll via replicate_get_prediction. Default: 300000 (5min). |
No output schema declared.
No examples provided.
replicate_vision Analyse / caption an image with a vision model ~364
Run a vision-language model to describe, caption, or answer questions about an image. Args: - image (string URL): URL of the image to analyse. - prompt (string, optional): Question or instruction (e.g. "describe this image", "count the people"). Default is a generic caption. - model (string, default "llava-13b"): Curated key (llava-13b, llava-v1.6-34b, blip-2, qwen-vl) or "owner/name". - max_tokens (1-4096, optional): Response length. - extra_input (object, optional): Model-specific extras. Returns: PredictionResult with text_output containing the model's textual answer. Examples: - image="https://example.com/photo.jpg", prompt="What objects are visible?" - image="<chart-url>", prompt="Read the values off this chart and list them.", model="llava-v1.6-34b"
| Name | Type | Req | Description |
|---|---|---|---|
| download | boolean | — | — |
| extra_input | object | — | — |
| image | string | yes | URL of the image to analyse / caption. |
| max_tokens | integer | — | — |
| model | — | — | Vision model. Curated: llava-13b, llava-v1.6-34b, blip-2, qwen-vl. Or "owner/name". |
| prompt | string | — | Optional question or instruction (e.g. 'describe this image', 'count the people'). Default is a generic caption. |
| timeout_ms | integer | — | Max ms to wait for the prediction. If exceeded, returns the prediction ID so you can poll via replicate_get_prediction. Default: 300000 (5min). |
No output schema declared.
No examples provided.