railway-mcp

by jason-tan-swe
Verified

service_info

[API] Get detailed information about a specific service

⚡️ Best for: ✓ Viewing service configuration and status ✓ Checking deployment details ✓ Monitoring service health

→ Prerequisites: service_list

→ Next steps: deployment_list, variable_list

→ Related: service_update, deployment_trigger

Input Schema

NameRequiredDescriptionDefault
environmentIdYesID of the environment to check (usually obtained from service_list)
projectIdYesID of the project containing the service
serviceIdYesID of the service to get information about

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "environmentId": { "description": "ID of the environment to check (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 get information about", "type": "string" } }, "required": [ "projectId", "serviceId", "environmentId" ], "type": "object" }