Replicate MCP Server

AIstdiov0.2.0
Репозиторий

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.

Подключение

Добавьте эту конфигурацию в .claude/mcp.json

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

Инструменты (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)"
    }
  }
}

Ресурсы

Этот сервер не предоставляет ресурсы.

Промпты

Этот сервер не предоставляет промпты.

Сведения о сервере

Автор
Replicate (@replicate)
Репозиторий
https://github.com/replicate/mcp
Лицензия
Apache-2.0
Версия
0.2.0
Звёзды
520
Последнее обновление
9 июля 2026 г.