railway-mcp

by jason-tan-swe
Verified

deployment_list

[API] List recent deployments for a service in a specific environment

⚡️ Best for: ✓ Viewing deployment history ✓ Monitoring service updates

→ Prerequisites: service_list

→ Next steps: deployment_logs, deployment_trigger

→ Related: service_info, service_restart

Input Schema

NameRequiredDescriptionDefault
environmentIdYesID of the environment to list deployments from (usually obtained from service_list)
limitNoOptional: Maximum number of deployments to return (default: 10)
projectIdYesID of the project containing the service
serviceIdYesID of the service to list deployments for

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "environmentId": { "description": "ID of the environment to list deployments from (usually obtained from service_list)", "type": "string" }, "limit": { "description": "Optional: Maximum number of deployments to return (default: 10)", "type": "number" }, "projectId": { "description": "ID of the project containing the service", "type": "string" }, "serviceId": { "description": "ID of the service to list deployments for", "type": "string" } }, "required": [ "projectId", "serviceId", "environmentId" ], "type": "object" }