railway-mcp

by jason-tan-swe
Verified

volume_update

Update a volume's properties

Input Schema

NameRequiredDescriptionDefault
nameYesNew name for the volume
volumeIdYesID of the volume to update

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "name": { "description": "New name for the volume", "type": "string" }, "volumeId": { "description": "ID of the volume to update", "type": "string" } }, "required": [ "volumeId", "name" ], "type": "object" }