From 634ae7848f08f0a83f8b9b66bcdfdcd93cc691df Mon Sep 17 00:00:00 2001 From: Mohammod Al Amin Ashik Date: Wed, 11 Feb 2026 13:25:28 +0000 Subject: [PATCH 1/4] 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 --- servers/com.replicate-mcp.json | 64 ++++++++++++++++++++++++++++++++++ 1 file changed, 64 insertions(+) create mode 100644 servers/com.replicate-mcp.json diff --git a/servers/com.replicate-mcp.json b/servers/com.replicate-mcp.json new file mode 100644 index 0000000..61f93e3 --- /dev/null +++ b/servers/com.replicate-mcp.json @@ -0,0 +1,64 @@ +{ + "$schema": "../schemas/server-definition.schema.json", + "id": "com.replicate-mcp", + "name": "Replicate", + "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": "password", + "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": { + "repository": "https://github.com/replicate/replicate-mcp", + "homepage": "https://replicate.com", + "documentation": "https://replicate.com/docs/reference/mcp" + }, + + "platforms": ["all"], + + "capabilities": { + "tools": true, + "resources": false, + "prompts": false, + "read_only_mode": false + } +} From 58aa7ee29963c0987851b85fa6514005e14645e7 Mon Sep 17 00:00:00 2001 From: Mohammod Al Amin Ashik Date: Thu, 19 Feb 2026 19:10:43 +0800 Subject: [PATCH 2/4] fix: update server definition (input type 'password' -> 'text' for REPLICATE_API_TOKEN) --- servers/com.replicate-mcp.json | 31 ++++++++++++++++++++----------- 1 file changed, 20 insertions(+), 11 deletions(-) diff --git a/servers/com.replicate-mcp.json b/servers/com.replicate-mcp.json index 61f93e3..01d0cda 100644 --- a/servers/com.replicate-mcp.json +++ b/servers/com.replicate-mcp.json @@ -6,13 +6,25 @@ "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"], - + "categories": [ + "ai-ml", + "cloud" + ], + "tags": [ + "replicate", + "ai", + "models", + "inference", + "image-generation", + "ml" + ], "transport": { "type": "stdio", "command": "npx", - "args": ["-y", "replicate-mcp@latest"], + "args": [ + "-y", + "replicate-mcp@latest" + ], "env": { "REPLICATE_API_TOKEN": "${input:REPLICATE_API_TOKEN}" }, @@ -22,7 +34,7 @@ "id": "REPLICATE_API_TOKEN", "label": "Replicate API Token", "description": "API token for the Replicate platform.", - "type": "password", + "type": "text", "required": true, "secret": true, "placeholder": "r8_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx", @@ -35,26 +47,23 @@ ] } }, - "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": { "repository": "https://github.com/replicate/replicate-mcp", "homepage": "https://replicate.com", "documentation": "https://replicate.com/docs/reference/mcp" }, - - "platforms": ["all"], - + "platforms": [ + "all" + ], "capabilities": { "tools": true, "resources": false, From 942e43a7baf9ecee713dfbbba638b233e268aac0 Mon Sep 17 00:00:00 2001 From: Mohammod Al Amin Ashik Date: Thu, 19 Feb 2026 19:20:47 +0800 Subject: [PATCH 3/4] fix: update Replicate URLs (no public repo, use docs) --- servers/com.replicate-mcp.json | 1 - 1 file changed, 1 deletion(-) diff --git a/servers/com.replicate-mcp.json b/servers/com.replicate-mcp.json index 01d0cda..8776d54 100644 --- a/servers/com.replicate-mcp.json +++ b/servers/com.replicate-mcp.json @@ -57,7 +57,6 @@ "url": "https://replicate.com" }, "links": { - "repository": "https://github.com/replicate/replicate-mcp", "homepage": "https://replicate.com", "documentation": "https://replicate.com/docs/reference/mcp" }, From f0f7674f63eb47972336509aa356f24dfe6dc1fc Mon Sep 17 00:00:00 2001 From: Mohammod Al Amin Ashik Date: Thu, 19 Feb 2026 22:45:47 +0800 Subject: [PATCH 4/4] 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 --- .../{com.replicate-mcp.json => com.replicate-mcp-npx.json} | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename servers/{com.replicate-mcp.json => com.replicate-mcp-npx.json} (96%) diff --git a/servers/com.replicate-mcp.json b/servers/com.replicate-mcp-npx.json similarity index 96% rename from servers/com.replicate-mcp.json rename to servers/com.replicate-mcp-npx.json index 8776d54..9e93253 100644 --- a/servers/com.replicate-mcp.json +++ b/servers/com.replicate-mcp-npx.json @@ -1,7 +1,7 @@ { "$schema": "../schemas/server-definition.schema.json", - "id": "com.replicate-mcp", - "name": "Replicate", + "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",