{
  "manifest_version": "1.0.0",
  "template": {
    "id": "d477fd65-7d81-4943-9c47-eb88761aef12",
    "slug": "cognee-ai-memory",
    "name": "Cognee — Self-Hosted AI Memory with MCP",
    "description": "Self-host Cognee — persistent agent memory over MCP, knowledge graph",
    "url": "https://railway.com/deploy/cognee-ai-memory"
  },
  "services": [
    {
      "name": "Postgres",
      "source": {
        "image": "ghcr.io/railwayapp-templates/postgres-ssl:18"
      },
      "needs_volume": true,
      "volume_mount_path": "/var/lib/postgresql/data",
      "http": false
    },
    {
      "name": "cognee-api",
      "source": {
        "repo": "https://github.com/RockinPaul/cognee_railway_template"
      },
      "needs_volume": false,
      "http": false
    },
    {
      "name": "cognee-mcp",
      "source": {
        "repo": "https://github.com/RockinPaul/cognee_railway_template"
      },
      "needs_volume": false,
      "http": false
    }
  ],
  "required_inputs": [
    {
      "key": "PGDATA",
      "service": "Postgres",
      "description": "Location where the database will be initialized",
      "secret": false,
      "strategy": "default",
      "default": "/var/lib/postgresql/data/pgdata"
    },
    {
      "key": "PGHOST",
      "service": "Postgres",
      "description": "Railway Private Domain Name.",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "railway_private_domain"
    },
    {
      "key": "PGPORT",
      "service": "Postgres",
      "description": "Port to connect to Postgres.",
      "secret": false,
      "strategy": "default",
      "default": "5432"
    },
    {
      "key": "PGUSER",
      "service": "Postgres",
      "description": "Required variable for Data panel",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "PGDATABASE",
      "service": "Postgres",
      "description": "Required variable for the data panel.",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "PGPASSWORD",
      "service": "Postgres",
      "description": "Required variable for Data panel",
      "secret": true,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "POSTGRES_DB",
      "service": "Postgres",
      "description": "Default database created when image is started.",
      "secret": false,
      "strategy": "default",
      "default": "railway"
    },
    {
      "key": "DATABASE_URL",
      "service": "Postgres",
      "description": "URL to connect to Postgres database.",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "railway_private_domain"
    },
    {
      "key": "POSTGRES_USER",
      "service": "Postgres",
      "description": "User to connect to Postgres DB",
      "secret": false,
      "strategy": "default",
      "default": "postgres"
    },
    {
      "key": "SSL_CERT_DAYS",
      "service": "Postgres",
      "description": "SSL certificate expiry in days.",
      "secret": false,
      "strategy": "default",
      "default": "820"
    },
    {
      "key": "POSTGRES_PASSWORD",
      "service": "Postgres",
      "description": "Password to connect to DB",
      "secret": true,
      "strategy": "generate",
      "generate": "strong_password"
    },
    {
      "key": "RAILWAY_DEPLOYMENT_DRAINING_SECONDS",
      "service": "Postgres",
      "description": "Allow Postgres to cleanly shut down",
      "secret": false,
      "strategy": "default",
      "default": "60"
    },
    {
      "key": "HOST",
      "service": "cognee-api",
      "description": "HOST",
      "secret": false,
      "strategy": "default",
      "default": "0.0.0.0"
    },
    {
      "key": "DB_HOST",
      "service": "cognee-api",
      "description": "DB HOST",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "DB_NAME",
      "service": "cognee-api",
      "description": "Database name used by Cognee relational storage",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "DB_PORT",
      "service": "cognee-api",
      "description": "Port for the relational Postgres connection",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "LLM_MODEL",
      "service": "cognee-api",
      "description": "Reliable default OpenRouter model for Cognify extraction, summarization, and responses. Gemma can still be used as an advanced override.",
      "secret": false,
      "strategy": "default",
      "default": "openrouter/openai/gpt-4o-mini"
    },
    {
      "key": "DB_PASSWORD",
      "service": "cognee-api",
      "description": "Password for the relational Postgres connection",
      "secret": true,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "DB_PROVIDER",
      "service": "cognee-api",
      "description": "DB PROVIDER",
      "secret": false,
      "strategy": "default",
      "default": "postgres"
    },
    {
      "key": "DB_USERNAME",
      "service": "cognee-api",
      "description": "DB USERNAME",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "ENVIRONMENT",
      "service": "cognee-api",
      "description": "Application environment label used by the backend service",
      "secret": false,
      "strategy": "default",
      "default": "prod"
    },
    {
      "key": "LLM_API_KEY",
      "service": "cognee-api",
      "description": "Your OpenRouter API key. Cognee uses it for the OpenRouter LLM and, by default, for embeddings too.",
      "secret": true,
      "strategy": "generate",
      "generate": "random_base64_32"
    },
    {
      "key": "LLM_ENDPOINT",
      "service": "cognee-api",
      "description": "OpenRouter OpenAI-compatible API base URL for chat/completions",
      "secret": false,
      "strategy": "default",
      "default": "https://openrouter.ai/api/v1"
    },
    {
      "key": "LLM_PROVIDER",
      "service": "cognee-api",
      "description": "Cognee LLM provider for OpenRouter's OpenAI-compatible API",
      "secret": false,
      "strategy": "default",
      "default": "custom"
    },
    {
      "key": "VECTOR_DB_URL",
      "service": "cognee-api",
      "description": "Connection URL for pgvector-backed vector storage",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "VECTOR_DB_HOST",
      "service": "cognee-api",
      "description": "Private Railway hostname for the pgvector connection",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "VECTOR_DB_PORT",
      "service": "cognee-api",
      "description": "Port for the pgvector connection",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "EMBEDDING_MODEL",
      "service": "cognee-api",
      "description": "OpenRouter embedding model for semantic indexing",
      "secret": false,
      "strategy": "default",
      "default": "openrouter/google/gemini-embedding-2-preview"
    },
    {
      "key": "EMBEDDING_API_KEY",
      "service": "cognee-api",
      "description": "Optional separate OpenRouter API key for embeddings. Leave empty to reuse LLM_API_KEY.",
      "secret": true,
      "strategy": "generate",
      "generate": "random_base64_32"
    },
    {
      "key": "EMBEDDING_ENDPOINT",
      "service": "cognee-api",
      "description": "OpenRouter OpenAI-compatible API base URL for embeddings",
      "secret": false,
      "strategy": "default",
      "default": "https://openrouter.ai/api/v1"
    },
    {
      "key": "EMBEDDING_PROVIDER",
      "service": "cognee-api",
      "description": "Embedding provider for semantic indexing",
      "secret": false,
      "strategy": "default",
      "default": "litellm"
    },
    {
      "key": "GRAPH_DATABASE_URL",
      "service": "cognee-api",
      "description": "Postgres connection string for graph persistence in single-user mode",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "VECTOR_DB_PASSWORD",
      "service": "cognee-api",
      "description": "Password for the pgvector connection",
      "secret": true,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "VECTOR_DB_PROVIDER",
      "service": "cognee-api",
      "description": "Vector database provider",
      "secret": false,
      "strategy": "default",
      "default": "pgvector"
    },
    {
      "key": "VECTOR_DB_USERNAME",
      "service": "cognee-api",
      "description": "Username for the pgvector connection",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "GRAPH_DATABASE_HOST",
      "service": "cognee-api",
      "description": "Private Railway hostname for the graph Postgres connection",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "GRAPH_DATABASE_PORT",
      "service": "cognee-api",
      "description": "Port for graph persistence in Postgres",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "LLM_INSTRUCTOR_MODE",
      "service": "cognee-api",
      "description": "Structured-output mode for the OpenRouter-backed LLM adapter",
      "secret": false,
      "strategy": "default",
      "default": "json_schema_mode"
    },
    {
      "key": "CORS_ALLOWED_ORIGINS",
      "service": "cognee-api",
      "description": "Comma-separated allowed CORS origins",
      "secret": false,
      "strategy": "default",
      "default": "*"
    },
    {
      "key": "EMBEDDING_DIMENSIONS",
      "service": "cognee-api",
      "description": "Embedding vector dimensions for Gemini Embedding 2 Preview",
      "secret": false,
      "strategy": "default",
      "default": "3072"
    },
    {
      "key": "REQUIRE_AUTHENTICATION",
      "service": "cognee-api",
      "description": "Disable API auth for a single-user MCP-backed deployment",
      "secret": false,
      "strategy": "default",
      "default": "false"
    },
    {
      "key": "GRAPH_DATABASE_PASSWORD",
      "service": "cognee-api",
      "description": "Password for the graph Postgres connection",
      "secret": true,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "GRAPH_DATABASE_PROVIDER",
      "service": "cognee-api",
      "description": "Graph database provider for single-user deployments",
      "secret": false,
      "strategy": "default",
      "default": "postgres"
    },
    {
      "key": "GRAPH_DATABASE_USERNAME",
      "service": "cognee-api",
      "description": "Username for the graph Postgres connection",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "ENABLE_BACKEND_ACCESS_CONTROL",
      "service": "cognee-api",
      "description": "Disable multi-user dataset isolation for a simpler single-user memory deployment",
      "secret": false,
      "strategy": "default",
      "default": "false"
    },
    {
      "key": "VECTOR_DATASET_DATABASE_HANDLER",
      "service": "cognee-api",
      "description": "Dataset handler aligned with the pgvector backend",
      "secret": false,
      "strategy": "default",
      "default": "pgvector"
    },
    {
      "key": "API_URL",
      "service": "cognee-mcp",
      "description": "Internal Cognee backend URL used by the MCP service in API mode",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "railway_private_domain"
    },
    {
      "key": "TRANSPORT_MODE",
      "service": "cognee-mcp",
      "description": "Cognee MCP transport for remote clients. In production API mode, SSE exposes the server at /sse.",
      "secret": false,
      "strategy": "default",
      "default": "sse"
    },
    {
      "key": "MCP_ALLOWED_HOSTS",
      "service": "cognee-mcp",
      "description": "Comma-separated public hosts allowed by MCP transport security for SSE access",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "railway_domain"
    }
  ],
  "deploy": {
    "mcp": {
      "server": "railway",
      "tool": "deploy_template",
      "args": {
        "template_code": "cognee-ai-memory"
      }
    },
    "cli": "railway deploy --template cognee-ai-memory",
    "api": {
      "method": "POST",
      "path": "/graphql/v2",
      "body": {
        "query": "mutation templateDeploy($input: TemplateDeployV2Input!) { templateDeployV2(input: $input) { projectId workflowId } }",
        "variables": {
          "input": {
            "templateId": "d477fd65-7d81-4943-9c47-eb88761aef12",
            "serializedConfig": {
              "services": {
                "1d5f3f6a-ef06-4d53-a42a-2e96591b8fae": {
                  "icon": "https://devicons.railway.app/i/postgresql.svg",
                  "name": "Postgres",
                  "deploy": {
                    "requiredMountPath": "/var/lib/postgresql/data"
                  },
                  "source": {
                    "image": "ghcr.io/railwayapp-templates/postgres-ssl:18"
                  },
                  "variables": {
                    "PGDATA": {
                      "isOptional": false,
                      "description": "Location where the database will be initialized",
                      "defaultValue": "/var/lib/postgresql/data/pgdata"
                    },
                    "PGHOST": {
                      "isOptional": false,
                      "description": "Railway Private Domain Name.",
                      "defaultValue": "${{RAILWAY_PRIVATE_DOMAIN}}"
                    },
                    "PGPORT": {
                      "isOptional": false,
                      "description": "Port to connect to Postgres.",
                      "defaultValue": "5432"
                    },
                    "PGUSER": {
                      "isOptional": false,
                      "description": "Required variable for Data panel",
                      "defaultValue": "${{ POSTGRES_USER }}"
                    },
                    "PGDATABASE": {
                      "isOptional": false,
                      "description": "Required variable for the data panel.",
                      "defaultValue": "${{POSTGRES_DB}}"
                    },
                    "PGPASSWORD": {
                      "isOptional": false,
                      "description": "Required variable for Data panel",
                      "defaultValue": "${{POSTGRES_PASSWORD}}"
                    },
                    "POSTGRES_DB": {
                      "isOptional": false,
                      "description": "Default database created when image is started.",
                      "defaultValue": "railway"
                    },
                    "DATABASE_URL": {
                      "isOptional": false,
                      "description": "URL to connect to Postgres database.",
                      "defaultValue": "postgresql://${{PGUSER}}:${{POSTGRES_PASSWORD}}@${{RAILWAY_PRIVATE_DOMAIN}}:5432/${{PGDATABASE}}"
                    },
                    "POSTGRES_USER": {
                      "isOptional": false,
                      "description": "User to connect to Postgres DB",
                      "defaultValue": "postgres"
                    },
                    "SSL_CERT_DAYS": {
                      "isOptional": true,
                      "description": "SSL certificate expiry in days.",
                      "defaultValue": "820"
                    },
                    "POSTGRES_PASSWORD": {
                      "isOptional": false,
                      "description": "Password to connect to DB",
                      "defaultValue": "{{POSTGRES_PASSWORD}}"
                    },
                    "RAILWAY_DEPLOYMENT_DRAINING_SECONDS": {
                      "isOptional": false,
                      "description": "Allow Postgres to cleanly shut down",
                      "defaultValue": "60"
                    }
                  },
                  "volumeMounts": {
                    "1d5f3f6a-ef06-4d53-a42a-2e96591b8fae": {
                      "mountPath": "/var/lib/postgresql/data"
                    }
                  },
                  "haTemplateCode": "postgres-ha",
                  "haConversionConfig": {
                    "edge": {
                      "label": "Reverse Proxy",
                      "options": [
                        2,
                        3,
                        4,
                        5
                      ],
                      "nodeLabel": "HAProxy",
                      "description": "Routes traffic to the primary",
                      "defaultValue": 3
                    },
                    "replica": {
                      "label": "Replicas",
                      "options": [
                        2,
                        3,
                        4,
                        5,
                        6,
                        7
                      ],
                      "nodeLabel": "Postgres",
                      "description": "Streaming replicas for automatic failover",
                      "defaultValue": 2
                    },
                    "internal": {
                      "label": "Coordinator Nodes",
                      "options": [
                        3,
                        5,
                        7,
                        9
                      ],
                      "nodeLabel": "etcd",
                      "defaultValue": 3
                    },
                    "description": "This will convert your Postgres database to an HA cluster with Patroni failover and etcd consensus."
                  }
                },
                "9d8dadab-a829-4343-8fc7-01d10c47cb58": {
                  "icon": "https://avatars.githubusercontent.com/u/125468716?s=48&v=4.png",
                  "name": "cognee-api",
                  "source": {
                    "repo": "RockinPaul/cognee_railway_template"
                  },
                  "variables": {
                    "HOST": {
                      "isOptional": false,
                      "description": "HOST",
                      "defaultValue": "0.0.0.0"
                    },
                    "DB_HOST": {
                      "isOptional": false,
                      "description": "DB HOST",
                      "defaultValue": "${{Postgres.PGHOST}}"
                    },
                    "DB_NAME": {
                      "isOptional": false,
                      "description": "Database name used by Cognee relational storage",
                      "defaultValue": "${{Postgres.PGDATABASE}}"
                    },
                    "DB_PORT": {
                      "isOptional": false,
                      "description": "Port for the relational Postgres connection",
                      "defaultValue": "${{Postgres.PGPORT}}"
                    },
                    "LLM_MODEL": {
                      "isOptional": false,
                      "description": "Reliable default OpenRouter model for Cognify extraction, summarization, and responses. Gemma can still be used as an advanced override.",
                      "defaultValue": "openrouter/openai/gpt-4o-mini"
                    },
                    "DB_PASSWORD": {
                      "isOptional": false,
                      "description": "Password for the relational Postgres connection",
                      "defaultValue": "${{Postgres.PGPASSWORD}}"
                    },
                    "DB_PROVIDER": {
                      "isOptional": false,
                      "description": "DB PROVIDER",
                      "defaultValue": "postgres"
                    },
                    "DB_USERNAME": {
                      "isOptional": false,
                      "description": "DB USERNAME",
                      "defaultValue": "${{Postgres.PGUSER}}"
                    },
                    "ENVIRONMENT": {
                      "isOptional": false,
                      "description": "Application environment label used by the backend service",
                      "defaultValue": "prod"
                    },
                    "LLM_API_KEY": {
                      "isOptional": false,
                      "description": "Your OpenRouter API key. Cognee uses it for the OpenRouter LLM and, by default, for embeddings too.",
                      "defaultValue": "{{LLM_API_KEY}}"
                    },
                    "LLM_ENDPOINT": {
                      "isOptional": false,
                      "description": "OpenRouter OpenAI-compatible API base URL for chat/completions",
                      "defaultValue": "https://openrouter.ai/api/v1"
                    },
                    "LLM_PROVIDER": {
                      "isOptional": false,
                      "description": "Cognee LLM provider for OpenRouter's OpenAI-compatible API",
                      "defaultValue": "custom"
                    },
                    "VECTOR_DB_URL": {
                      "isOptional": false,
                      "description": "Connection URL for pgvector-backed vector storage",
                      "defaultValue": "postgresql://${{Postgres.PGUSER}}:${{Postgres.PGPASSWORD}}@${{Postgres.PGHOST}}:${{Postgres.PGPORT}}/${{Postgres.PGDATABASE}}"
                    },
                    "VECTOR_DB_HOST": {
                      "isOptional": false,
                      "description": "Private Railway hostname for the pgvector connection",
                      "defaultValue": "${{Postgres.PGHOST}}"
                    },
                    "VECTOR_DB_PORT": {
                      "isOptional": false,
                      "description": "Port for the pgvector connection",
                      "defaultValue": "${{Postgres.PGPORT}}"
                    },
                    "EMBEDDING_MODEL": {
                      "isOptional": false,
                      "description": "OpenRouter embedding model for semantic indexing",
                      "defaultValue": "openrouter/google/gemini-embedding-2-preview"
                    },
                    "EMBEDDING_API_KEY": {
                      "isOptional": false,
                      "description": "Optional separate OpenRouter API key for embeddings. Leave empty to reuse LLM_API_KEY.",
                      "defaultValue": "{{EMBEDDING_API_KEY}}"
                    },
                    "EMBEDDING_ENDPOINT": {
                      "isOptional": false,
                      "description": "OpenRouter OpenAI-compatible API base URL for embeddings",
                      "defaultValue": "https://openrouter.ai/api/v1"
                    },
                    "EMBEDDING_PROVIDER": {
                      "isOptional": false,
                      "description": "Embedding provider for semantic indexing",
                      "defaultValue": "litellm"
                    },
                    "GRAPH_DATABASE_URL": {
                      "isOptional": false,
                      "description": "Postgres connection string for graph persistence in single-user mode",
                      "defaultValue": "postgresql+asyncpg://${{Postgres.PGUSER}}:${{Postgres.PGPASSWORD}}@${{Postgres.PGHOST}}:${{Postgres.PGPORT}}/${{Postgres.PGDATABASE}}"
                    },
                    "VECTOR_DB_PASSWORD": {
                      "isOptional": false,
                      "description": "Password for the pgvector connection",
                      "defaultValue": "${{Postgres.PGPASSWORD}}"
                    },
                    "VECTOR_DB_PROVIDER": {
                      "isOptional": false,
                      "description": "Vector database provider",
                      "defaultValue": "pgvector"
                    },
                    "VECTOR_DB_USERNAME": {
                      "isOptional": false,
                      "description": "Username for the pgvector connection",
                      "defaultValue": "${{Postgres.PGUSER}}"
                    },
                    "GRAPH_DATABASE_HOST": {
                      "isOptional": false,
                      "description": "Private Railway hostname for the graph Postgres connection",
                      "defaultValue": "${{Postgres.PGHOST}}"
                    },
                    "GRAPH_DATABASE_PORT": {
                      "isOptional": false,
                      "description": "Port for graph persistence in Postgres",
                      "defaultValue": "${{Postgres.PGPORT}}"
                    },
                    "LLM_INSTRUCTOR_MODE": {
                      "isOptional": false,
                      "description": "Structured-output mode for the OpenRouter-backed LLM adapter",
                      "defaultValue": "json_schema_mode"
                    },
                    "CORS_ALLOWED_ORIGINS": {
                      "isOptional": false,
                      "description": "Comma-separated allowed CORS origins",
                      "defaultValue": "*"
                    },
                    "EMBEDDING_DIMENSIONS": {
                      "isOptional": false,
                      "description": "Embedding vector dimensions for Gemini Embedding 2 Preview",
                      "defaultValue": "3072"
                    },
                    "REQUIRE_AUTHENTICATION": {
                      "isOptional": false,
                      "description": "Disable API auth for a single-user MCP-backed deployment",
                      "defaultValue": "false"
                    },
                    "GRAPH_DATABASE_PASSWORD": {
                      "isOptional": false,
                      "description": "Password for the graph Postgres connection",
                      "defaultValue": "${{Postgres.PGPASSWORD}}"
                    },
                    "GRAPH_DATABASE_PROVIDER": {
                      "isOptional": false,
                      "description": "Graph database provider for single-user deployments",
                      "defaultValue": "postgres"
                    },
                    "GRAPH_DATABASE_USERNAME": {
                      "isOptional": false,
                      "description": "Username for the graph Postgres connection",
                      "defaultValue": "${{Postgres.PGUSER}}"
                    },
                    "ENABLE_BACKEND_ACCESS_CONTROL": {
                      "isOptional": false,
                      "description": "Disable multi-user dataset isolation for a simpler single-user memory deployment",
                      "defaultValue": "false"
                    },
                    "VECTOR_DATASET_DATABASE_HANDLER": {
                      "isOptional": false,
                      "description": "Dataset handler aligned with the pgvector backend",
                      "defaultValue": "pgvector"
                    }
                  }
                },
                "d7fd16bf-e5f9-4522-894f-9ffa300cc550": {
                  "icon": "https://avatars.githubusercontent.com/u/182288589?s=200&v=4.png",
                  "name": "cognee-mcp",
                  "source": {
                    "repo": "RockinPaul/cognee_railway_template"
                  },
                  "variables": {
                    "API_URL": {
                      "isOptional": false,
                      "description": "Internal Cognee backend URL used by the MCP service in API mode",
                      "defaultValue": "http://${{cognee-api.RAILWAY_PRIVATE_DOMAIN}}:8080"
                    },
                    "TRANSPORT_MODE": {
                      "isOptional": false,
                      "description": "Cognee MCP transport for remote clients. In production API mode, SSE exposes the server at /sse.",
                      "defaultValue": "sse"
                    },
                    "MCP_ALLOWED_HOSTS": {
                      "isOptional": false,
                      "description": "Comma-separated public hosts allowed by MCP transport security for SSE access",
                      "defaultValue": "${{cognee-mcp.RAILWAY_PUBLIC_DOMAIN}},${{cognee-mcp.RAILWAY_PUBLIC_DOMAIN}}:*"
                    }
                  }
                }
              }
            }
          }
        }
      }
    }
  },
  "post_deploy": {},
  "resources": {
    "expected_services": 3,
    "needs_volume": true
  },
  "generated_at": "2026-09-23T22:14:45.316Z",
  "generator_version": "0.1.0",
  "status": "validated",
  "validated_at": "2026-09-21T19:19:58.059Z",
  "success_rate_30d": 1,
  "validation": {
    "last_run_id": "run_dfa3e30f5ff340508918",
    "checks": [
      {
        "name": "workflow_completed",
        "passed": true
      },
      {
        "name": "all_services_deployed",
        "passed": true
      },
      {
        "name": "stays_up",
        "passed": true
      }
    ],
    "typical_ready_seconds": 142,
    "typical_build_seconds": 27,
    "typical_start_seconds": 20,
    "slowest_service": "cognee-mcp"
  }
}
