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
最后更新
2026年7月9日
Replicate MCP Server - MCP Server | OpenModels