Skip to content

Commit 58aa7ee

Browse files
committed
fix: update server definition (input type 'password' -> 'text' for REPLICATE_API_TOKEN)
1 parent 634ae78 commit 58aa7ee

1 file changed

Lines changed: 20 additions & 11 deletions

File tree

servers/com.replicate-mcp.json

Lines changed: 20 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,25 @@
66
"description": "Run AI models on Replicate. Create predictions, search for models, manage deployments, and generate images, audio, and text.",
77
"icon": "https://avatars.githubusercontent.com/u/60410876?v=4",
88
"schema_version": "2.1",
9-
"categories": ["ai-ml", "cloud"],
10-
"tags": ["replicate", "ai", "models", "inference", "image-generation", "ml"],
11-
9+
"categories": [
10+
"ai-ml",
11+
"cloud"
12+
],
13+
"tags": [
14+
"replicate",
15+
"ai",
16+
"models",
17+
"inference",
18+
"image-generation",
19+
"ml"
20+
],
1221
"transport": {
1322
"type": "stdio",
1423
"command": "npx",
15-
"args": ["-y", "replicate-mcp@latest"],
24+
"args": [
25+
"-y",
26+
"replicate-mcp@latest"
27+
],
1628
"env": {
1729
"REPLICATE_API_TOKEN": "${input:REPLICATE_API_TOKEN}"
1830
},
@@ -22,7 +34,7 @@
2234
"id": "REPLICATE_API_TOKEN",
2335
"label": "Replicate API Token",
2436
"description": "API token for the Replicate platform.",
25-
"type": "password",
37+
"type": "text",
2638
"required": true,
2739
"secret": true,
2840
"placeholder": "r8_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx",
@@ -35,26 +47,23 @@
3547
]
3648
}
3749
},
38-
3950
"auth": {
4051
"type": "api_key",
4152
"instructions": "Get a Replicate API token at https://replicate.com/account/api-tokens"
4253
},
43-
4454
"contributor": {
4555
"name": "Replicate",
4656
"github": "replicate",
4757
"url": "https://replicate.com"
4858
},
49-
5059
"links": {
5160
"repository": "https://github.com/replicate/replicate-mcp",
5261
"homepage": "https://replicate.com",
5362
"documentation": "https://replicate.com/docs/reference/mcp"
5463
},
55-
56-
"platforms": ["all"],
57-
64+
"platforms": [
65+
"all"
66+
],
5867
"capabilities": {
5968
"tools": true,
6069
"resources": false,

0 commit comments

Comments
 (0)