Replicate MCP Server

AIstdiov0.2.0
Repository

MCP server for Replicate, which hosts thousands of open machine learning models behind a single API. Lets AI agents search models, run predictions (image, video, audio, and text generation), poll prediction status, and retrieve outputs. Useful for adding generative media and specialized ML capabilities to agent workflows without managing infrastructure.

Connect

Add this configuration to .claude/mcp.json

{
  "mcpServers": {
    "replicate": {
      "command": "npx",
      "args": [
        "-y",
        "@replicate/mcp"
      ],
      "env": {
        "REPLICATE_API_TOKEN": "<YOUR_REPLICATE_API_TOKEN>"
      }
    }
  }
}

Tools (2)

search_models

Search Replicate's catalog of hosted models by keyword.

{
  "type": "object",
  "required": [
    "query"
  ],
  "properties": {
    "query": {
      "type": "string",
      "description": "Search query"
    }
  }
}

create_prediction

Run a model prediction with the given inputs and return the prediction ID.

{
  "type": "object",
  "required": [
    "model",
    "input"
  ],
  "properties": {
    "input": {
      "type": "object",
      "description": "Model input parameters"
    },
    "model": {
      "type": "string",
      "description": "Model identifier (owner/name or version)"
    }
  }
}

Resources

This server does not expose any resources.

Prompts

This server does not expose any prompts.

Server Information

Author
Replicate (@replicate)
Repository
https://github.com/replicate/mcp
License
Apache-2.0
Version
0.2.0
Stars
520
Last Updated
July 9, 2026