Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
72 changes: 72 additions & 0 deletions servers/com.replicate-mcp-npx.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,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
}
}