link-service
Link a service to your Railway project or list available services to connect. Specify a workspace path to manage service integrations efficiently.
Instructions
Link a service to the current Railway project. If no service is specified, it will list available services
Input Schema
Name | Required | Description | Default |
---|---|---|---|
serviceName | No | The service name to link | |
workspacePath | Yes | The path to the workspace to link the service to |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"serviceName": {
"description": "The service name to link",
"type": "string"
},
"workspacePath": {
"description": "The path to the workspace to link the service to",
"type": "string"
}
},
"required": [
"workspacePath"
],
"type": "object"
}