railway-mcp

by jason-tan-swe
Verified

deployment_status

[API] Check the current status of a deployment

⚡️ Best for: ✓ Monitoring deployment progress ✓ Verifying successful deployments ✓ Checking for deployment failures

⚠️ Not for: × Service runtime logs × Database logs

→ Prerequisites: deployment_list, deployment_trigger

→ Next steps: deployment_logs

→ Related: service_info, service_restart, deployment_wait

Input Schema

NameRequiredDescriptionDefault
deploymentIdYesID of the deployment to check status for

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "deploymentId": { "description": "ID of the deployment to check status for", "type": "string" } }, "required": [ "deploymentId" ], "type": "object" }