railway-mcp

by jason-tan-swe
Verified

domain_list

[API] List all domains (both service and custom) for a service

⚡️ Best for: ✓ Viewing service endpoints ✓ Managing domain configurations ✓ Auditing domain settings

→ Prerequisites: service_list

→ Next steps: domain_create, domain_update

→ Related: service_info, tcp_proxy_list

Input Schema

NameRequiredDescriptionDefault
environmentIdYesID of the environment that the service is in to list domains from (usually obtained from service_list)
projectIdYesID of the project containing the service
serviceIdYesID of the service to list domains for

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "environmentId": { "description": "ID of the environment that the service is in to list domains from (usually obtained from service_list)", "type": "string" }, "projectId": { "description": "ID of the project containing the service", "type": "string" }, "serviceId": { "description": "ID of the service to list domains for", "type": "string" } }, "required": [ "projectId", "environmentId", "serviceId" ], "type": "object" }