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