R

Replicate

Run Replicate models over MCP.

·No reviews yet
Repo
Share:

About

Auto-generated

Replicate is a Model Context Protocol server in the Developer Tools category. It lets AI assistants that speak MCP call its tools and read its resources over STDIO.

Example tools

Illustrative tool names — the actual tool set is defined by the server at runtime.

list_resources
Enumerate resources exposed by this MCP
get_resource
Fetch a resource by ID
invoke
Invoke the primary action of this MCP

Screenshots

No screenshots yet.

Frequently Asked Questions

Common questions about Replicate.

What does the Replicate MCP do?
The Replicate MCP allows you to interact with Replicate's AI models directly through the Model Context Protocol. It bridges your MCP client to the Replicate platform for model inference.
How can I install the Replicate MCP in a client like Cursor?
Installation typically involves adding the Replicate MCP's repository URL to your MCP client's settings. Once added, you can browse and connect to the Replicate service within your client's interface.
Does the Replicate MCP require an API key for authentication?
Yes, the Replicate MCP uses an API key for authentication. You will need to provide your Replicate API key to connect to the service and use its AI models.
What kind of AI models can I access through this MCP?
You can access a wide range of AI models available on the Replicate platform. The specific models and their capabilities depend on what Replicate offers and how the MCP integrates them.
Is there a cost associated with using the Replicate MCP?
The Replicate MCP itself is community-provided, but using the underlying Replicate service incurs costs based on your usage. Pricing details for model inference are available on the Replicate website.
What is a common prerequisite for using the Replicate MCP?
A common prerequisite is an active Replicate account with a valid API key. This ensures you can authenticate and access the models provided by the Replicate service.

Install Replicate

Claude Desktop

Add this to claude_desktop_config.json.

{
  "mcpServers": {
    "replicate": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-replicate"
      ]
    }
  }
}

Cursor

Add this to ~/.cursor/mcp.json.

{
  "mcpServers": {
    "replicate": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-replicate"
      ]
    }
  }
}

VS Code

Add this to your workspace settings.json.

{
  "mcp.servers": {
    "replicate": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-replicate"
      ]
    }
  }
}

Reviews

Sign in to leave a review.

No reviews yet. Be the first!

Discussion(0)

Sign in to join the discussion.

No comments yet.