Skip to content

Commit 634ae78

Browse files
committed
Add Replicate MCP server definition
Official Replicate MCP server for running AI models. Create predictions, search models, and manage deployments. Uses replicate-mcp npm package. https://claude.ai/code/session_013AxurW8hPAfnUNvik354Xx
1 parent 0217546 commit 634ae78

1 file changed

Lines changed: 64 additions & 0 deletions

File tree

servers/com.replicate-mcp.json

Lines changed: 64 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,64 @@
1+
{
2+
"$schema": "../schemas/server-definition.schema.json",
3+
"id": "com.replicate-mcp",
4+
"name": "Replicate",
5+
"alias": "replicate",
6+
"description": "Run AI models on Replicate. Create predictions, search for models, manage deployments, and generate images, audio, and text.",
7+
"icon": "https://avatars.githubusercontent.com/u/60410876?v=4",
8+
"schema_version": "2.1",
9+
"categories": ["ai-ml", "cloud"],
10+
"tags": ["replicate", "ai", "models", "inference", "image-generation", "ml"],
11+
12+
"transport": {
13+
"type": "stdio",
14+
"command": "npx",
15+
"args": ["-y", "replicate-mcp@latest"],
16+
"env": {
17+
"REPLICATE_API_TOKEN": "${input:REPLICATE_API_TOKEN}"
18+
},
19+
"metadata": {
20+
"inputs": [
21+
{
22+
"id": "REPLICATE_API_TOKEN",
23+
"label": "Replicate API Token",
24+
"description": "API token for the Replicate platform.",
25+
"type": "password",
26+
"required": true,
27+
"secret": true,
28+
"placeholder": "r8_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx",
29+
"obtain": {
30+
"url": "https://replicate.com/account/api-tokens",
31+
"instructions": "1. Go to replicate.com/account/api-tokens\n2. Click 'Create token'\n3. Name your token and copy it (starts with r8_)",
32+
"button_label": "Create Token"
33+
}
34+
}
35+
]
36+
}
37+
},
38+
39+
"auth": {
40+
"type": "api_key",
41+
"instructions": "Get a Replicate API token at https://replicate.com/account/api-tokens"
42+
},
43+
44+
"contributor": {
45+
"name": "Replicate",
46+
"github": "replicate",
47+
"url": "https://replicate.com"
48+
},
49+
50+
"links": {
51+
"repository": "https://github.com/replicate/replicate-mcp",
52+
"homepage": "https://replicate.com",
53+
"documentation": "https://replicate.com/docs/reference/mcp"
54+
},
55+
56+
"platforms": ["all"],
57+
58+
"capabilities": {
59+
"tools": true,
60+
"resources": false,
61+
"prompts": false,
62+
"read_only_mode": false
63+
}
64+
}

0 commit comments

Comments
 (0)