diff --git a/servers/com.replicate-mcp-npx.json b/servers/com.replicate-mcp-npx.json new file mode 100644 index 0000000..9e93253 --- /dev/null +++ b/servers/com.replicate-mcp-npx.json @@ -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 + } +}