update_server
Modify server configuration in Coolify by updating details like name, description, IP address, SSH port, or user credentials for your self-hosted PaaS instances.
Instructions
Update a server
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| uuid | Yes | Server UUID | |
| name | No | Server name | |
| description | No | Server description | |
| ip | No | Server IP address | |
| port | No | SSH port | |
| user | No | SSH user |
Implementation Reference
- src/tools/handlers.ts:95-97 (handler)Handler implementation for the 'update_server' tool. Validates that 'uuid' parameter is provided and performs a PATCH request to the Coolify API endpoint `/servers/{uuid}` with the provided arguments to update server details.case 'update_server': requireParam(args, 'uuid'); return client.patch(`/servers/${args.uuid}`, args);
- src/tools/definitions.ts:767-781 (schema)Input schema definition for the 'update_server' tool, specifying the required 'uuid' and optional fields like name, description, ip, port, user for server updates.{ name: 'update_server', description: 'Update a server', inputSchema: { type: 'object', properties: { uuid: { type: 'string', description: 'Server UUID' }, name: { type: 'string', description: 'Server name' }, description: { type: 'string', description: 'Server description' }, ip: { type: 'string', description: 'Server IP address' }, port: { type: 'number', description: 'SSH port' }, user: { type: 'string', description: 'SSH user' } }, required: ['uuid'] }