project_info
Retrieve comprehensive details about a Railway project, including status, environments, services, and configurations. Use to assess project setup and optimize infrastructure management.
Instructions
[API] Get detailed information about a specific Railway project
⚡️ Best for: ✓ Viewing project details and status ✓ Checking environments and services ✓ Project configuration review
→ Prerequisites: project_list
→ Next steps: service_list, variable_list
→ Related: project_update, project_delete
Input Schema
Name | Required | Description | Default |
---|---|---|---|
projectId | Yes | ID of the project to get information about |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"projectId": {
"description": "ID of the project to get information about",
"type": "string"
}
},
"required": [
"projectId"
],
"type": "object"
}