Skip to content

Commit 3ea79f5

Browse files
authored
feat: add Replicate MCP server definition (#69)
* 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 * fix: update server definition (input type 'password' -> 'text' for REPLICATE_API_TOKEN) * fix: update Replicate URLs (no public repo, use docs) * fix: rename server files with transport suffix - com.replicate-mcp.json -> com.replicate-mcp-npx.json (id: com.replicate-mcp-npx) Signed-off-by: Mohammod Al Amin Ashik <maa.ashik00@gmail.com> --------- Signed-off-by: Mohammod Al Amin Ashik <maa.ashik00@gmail.com>
1 parent 692e1bc commit 3ea79f5

1 file changed

Lines changed: 72 additions & 0 deletions

File tree

servers/com.replicate-mcp-npx.json

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

0 commit comments

Comments
 (0)