project_environments
Retrieve and list all environments within a specified project on the Railway MCP server. Use the project ID to query and organize deployment environments efficiently.
Instructions
List all environments in a project
Input Schema
Name | Required | Description | Default |
---|---|---|---|
projectId | Yes | ID of the project |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"projectId": {
"description": "ID of the project",
"type": "string"
}
},
"required": [
"projectId"
],
"type": "object"
}