link-environment
Link a specific workspace to a Railway environment or list available environments for selection using the Railway MCP Server tool.
Instructions
Link to a specific Railway environment. If no environment is specified, it will list available environments for selection.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
environmentName | Yes | The environment name to link to | |
workspacePath | Yes | The path to the workspace to link the environment to |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"environmentName": {
"description": "The environment name to link to",
"type": "string"
},
"workspacePath": {
"description": "The path to the workspace to link the environment to",
"type": "string"
}
},
"required": [
"workspacePath",
"environmentName"
],
"type": "object"
}