template_get_workflow_status
Retrieve the status of a specific workflow on the Railway MCP server using the workflow ID. Ideal for monitoring and verifying the progress of active workflows within the infrastructure.
Instructions
[API] Get the status of a workflow
⚡️ Best for: ✓ Checking workflow status
⚠️ Not for: × Creating new services
→ Next steps: service_info
→ Related: template_list, template_deploy
Input Schema
Name | Required | Description | Default |
---|---|---|---|
workflowId | Yes | ID of the workflow to get the status of |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"workflowId": {
"description": "ID of the workflow to get the status of",
"type": "string"
}
},
"required": [
"workflowId"
],
"type": "object"
}