{
  "manifest_version": "1.0.0",
  "template": {
    "id": "465cb5fd-821a-439d-bda6-8aff49235c54",
    "slug": "n8n-mcp-1",
    "name": "N8N MCP (@czlonkowski)",
    "description": "100% Working ✅ The most capable N8N MCP far beyond the native MCP server.",
    "url": "https://railway.com/deploy/n8n-mcp-1",
    "upstream": {
      "image": "ghcr.io/czlonkowski/n8n-mcp-railway:latest"
    }
  },
  "services": [
    {
      "name": "mcp",
      "source": {
        "image": "ghcr.io/czlonkowski/n8n-mcp-railway:latest"
      },
      "needs_volume": false,
      "http": true
    }
  ],
  "required_inputs": [
    {
      "key": "PORT",
      "service": "mcp",
      "description": "🚪 HTTP server port for MCP endpoints and health checks",
      "secret": false,
      "strategy": "default",
      "default": "8080"
    },
    {
      "key": "MCP_MODE",
      "service": "mcp",
      "description": "Set MCP (Model Context Protocol) communication mode to HTTP protocol for n8n integration",
      "secret": false,
      "strategy": "default",
      "default": "http"
    },
    {
      "key": "LOG_LEVEL",
      "service": "mcp",
      "description": "Set logging level to info - options:info/error/debug/warn",
      "secret": false,
      "strategy": "default",
      "default": "info"
    },
    {
      "key": "AUTH_TOKEN",
      "service": "mcp",
      "description": "Reference the generated AUTH_TOKEN_KEY for API authentication across services",
      "secret": true,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "N8N_API_URL",
      "service": "mcp",
      "description": "n8n API endpoint URL for workflow orchestration and automation platform. Replace this with your actual N8N URL!",
      "secret": false,
      "strategy": "default",
      "default": "https://app.n8n.cloud"
    },
    {
      "key": "AUTH_TOKEN_KEY",
      "service": "mcp",
      "description": "Generate a secure random 64-character authentication token using specified character set for API authentication",
      "secret": true,
      "strategy": "generate",
      "generate": "random_base64_32"
    },
    {
      "key": "AUTH_RATE_LIMIT_MAX",
      "service": "mcp",
      "description": "Maximum number of authentication attempts allowed within the rate limit window (15 minutes)",
      "secret": false,
      "strategy": "default",
      "default": "20"
    },
    {
      "key": "WEBHOOK_SECURITY_MODE",
      "service": "mcp",
      "description": "Enable strict webhook security mode to validate signatures and prevent unauthorized webhook triggers",
      "secret": false,
      "strategy": "default",
      "default": "strict"
    },
    {
      "key": "AUTH_RATE_LIMIT_WINDOW",
      "service": "mcp",
      "description": "Authentication rate limiting window in milliseconds - 900000ms equals 15 minutes for token refresh attempts",
      "secret": false,
      "strategy": "default",
      "default": "900000"
    },
    {
      "key": "DISABLE_CONSOLE_OUTPUT",
      "service": "mcp",
      "description": "Disable console output in production - set to \"true\" if you want to suppress stdout/stderr logging",
      "secret": false,
      "strategy": "default",
      "default": "false"
    },
    {
      "key": "SESSION_TIMEOUT_MINUTES",
      "service": "mcp",
      "description": "Provide a value for SESSION_TIMEOUT_MINUTES.",
      "secret": false,
      "strategy": "default",
      "default": "120"
    },
    {
      "key": "N8N_MCP_TELEMETRY_DISABLED",
      "service": "mcp",
      "description": "Disable telemetry collection in n8n MCP to prevent usage data transmission to external services",
      "secret": false,
      "strategy": "default",
      "default": "true"
    },
    {
      "key": "RAILWAY_DEPLOYMENT_DRAINING_SECONDS",
      "service": "mcp",
      "description": "Graceful shutdown draining period in seconds - wait 60 seconds for in-flight requests to complete before terminating",
      "secret": false,
      "strategy": "default",
      "default": "60"
    }
  ],
  "deploy": {
    "mcp": {
      "server": "railway",
      "tool": "deploy_template",
      "args": {
        "template_code": "n8n-mcp-1"
      }
    },
    "cli": "railway deploy --template n8n-mcp-1",
    "api": {
      "method": "POST",
      "path": "/graphql/v2",
      "body": {
        "query": "mutation templateDeploy($input: TemplateDeployV2Input!) { templateDeployV2(input: $input) { projectId workflowId } }",
        "variables": {
          "input": {
            "templateId": "465cb5fd-821a-439d-bda6-8aff49235c54",
            "serializedConfig": {
              "buckets": {},
              "services": {
                "fce7a421-6e80-4fac-8aa1-be82d4f00745": {
                  "icon": "https://devicons.railway.app/i/n8n.svg",
                  "name": "mcp",
                  "deploy": {
                    "startCommand": null,
                    "healthcheckPath": "/health",
                    "restartPolicyType": "ON_FAILURE",
                    "restartPolicyMaxRetries": 10
                  },
                  "source": {
                    "image": "ghcr.io/czlonkowski/n8n-mcp-railway:latest",
                    "autoUpdates": {
                      "type": "patch",
                      "schedule": [
                        {
                          "day": 0,
                          "endHour": 24,
                          "startHour": 0
                        },
                        {
                          "day": 1,
                          "endHour": 24,
                          "startHour": 0
                        },
                        {
                          "day": 2,
                          "endHour": 24,
                          "startHour": 0
                        },
                        {
                          "day": 3,
                          "endHour": 24,
                          "startHour": 0
                        },
                        {
                          "day": 4,
                          "endHour": 24,
                          "startHour": 0
                        },
                        {
                          "day": 5,
                          "endHour": 24,
                          "startHour": 0
                        },
                        {
                          "day": 6,
                          "endHour": 24,
                          "startHour": 0
                        }
                      ]
                    }
                  },
                  "variables": {
                    "PORT": {
                      "isOptional": false,
                      "description": "🚪 HTTP server port for MCP endpoints and health checks",
                      "defaultValue": "8080"
                    },
                    "MCP_MODE": {
                      "isOptional": false,
                      "description": "Set MCP (Model Context Protocol) communication mode to HTTP protocol for n8n integration",
                      "defaultValue": "http"
                    },
                    "LOG_LEVEL": {
                      "isOptional": false,
                      "description": "Set logging level to info - options:info/error/debug/warn",
                      "defaultValue": "info"
                    },
                    "AUTH_TOKEN": {
                      "isOptional": false,
                      "description": "Reference the generated AUTH_TOKEN_KEY for API authentication across services",
                      "defaultValue": "${{AUTH_TOKEN_KEY}}"
                    },
                    "N8N_API_URL": {
                      "isOptional": false,
                      "description": "n8n API endpoint URL for workflow orchestration and automation platform. Replace this with your actual N8N URL!",
                      "defaultValue": "https://app.n8n.cloud"
                    },
                    "AUTH_TOKEN_KEY": {
                      "isOptional": false,
                      "description": "Generate a secure random 64-character authentication token using specified character set for API authentication",
                      "defaultValue": "{{AUTH_TOKEN_KEY}}"
                    },
                    "AUTH_RATE_LIMIT_MAX": {
                      "isOptional": false,
                      "description": "Maximum number of authentication attempts allowed within the rate limit window (15 minutes)",
                      "defaultValue": "20"
                    },
                    "WEBHOOK_SECURITY_MODE": {
                      "isOptional": false,
                      "description": "Enable strict webhook security mode to validate signatures and prevent unauthorized webhook triggers",
                      "defaultValue": "strict"
                    },
                    "AUTH_RATE_LIMIT_WINDOW": {
                      "isOptional": false,
                      "description": "Authentication rate limiting window in milliseconds - 900000ms equals 15 minutes for token refresh attempts",
                      "defaultValue": "900000"
                    },
                    "DISABLE_CONSOLE_OUTPUT": {
                      "isOptional": false,
                      "description": "Disable console output in production - set to \"true\" if you want to suppress stdout/stderr logging",
                      "defaultValue": "false"
                    },
                    "SESSION_TIMEOUT_MINUTES": {
                      "isOptional": false,
                      "description": "",
                      "defaultValue": "120"
                    },
                    "N8N_MCP_TELEMETRY_DISABLED": {
                      "isOptional": false,
                      "description": "Disable telemetry collection in n8n MCP to prevent usage data transmission to external services",
                      "defaultValue": "true"
                    },
                    "RAILWAY_DEPLOYMENT_DRAINING_SECONDS": {
                      "isOptional": false,
                      "description": "Graceful shutdown draining period in seconds - wait 60 seconds for in-flight requests to complete before terminating",
                      "defaultValue": "60"
                    }
                  },
                  "networking": {
                    "serviceDomains": {
                      "<hasDomain>": {}
                    }
                  }
                }
              }
            }
          }
        }
      }
    }
  },
  "post_deploy": {
    "healthcheck": {
      "service": "mcp",
      "method": "GET",
      "path": "/health",
      "expect_status": 200
    }
  },
  "resources": {
    "expected_services": 1,
    "needs_volume": false
  },
  "generated_at": "2026-09-22T22:14:50.114Z",
  "generator_version": "0.1.0",
  "status": "validated",
  "validated_at": "2026-09-20T22:52:26.847Z",
  "success_rate_30d": 1,
  "validation": {
    "last_run_id": "run_4dc92b8d14e743648f39",
    "checks": [
      {
        "name": "workflow_completed",
        "passed": true
      },
      {
        "name": "all_services_deployed",
        "passed": true
      },
      {
        "name": "healthcheck",
        "passed": true
      },
      {
        "name": "stays_up",
        "passed": true
      }
    ],
    "typical_ready_seconds": 43,
    "typical_build_seconds": 0,
    "typical_start_seconds": 0,
    "slowest_service": "mcp"
  }
}
