{
  "$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
  "name": "com.replicate/replicate-mcp",
  "title": "Replicate",
  "description": "Run AI models with Replicate. Search for models, run predictions, and manage deployments using natural language.",
  "version": "1.0.0",
  "remotes": [
    {
      "type": "streamable-http",
      "url": "https://mcp.replicate.com/sse"
    }
  ],
  "packages": [
    {
      "registryType": "npm",
      "identifier": "replicate-mcp",
      "version": "latest",
      "transport": {
        "type": "stdio"
      },
      "environmentVariables": [
        {
          "name": "REPLICATE_API_TOKEN",
          "description": "Your Replicate API token",
          "isRequired": true,
          "isSecret": true
        }
      ],
      "packageArguments": [
        {
          "type": "named",
          "name": "--tools",
          "description": "Tool mode: 'all' for standard tools, 'code' for code mode (experimental)",
          "choices": [
            "all",
            "code"
          ],
          "default": "all",
          "isRequired": false
        }
      ]
    }
  ]
}