Skip to main content
Glama

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
NameRequiredDescriptionDefault
uuidYesServer UUID
nameNoServer name
descriptionNoServer description
ipNoServer IP address
portNoSSH port
userNoSSH user

Implementation Reference

  • 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);
  • 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'] }

Other Tools

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/kof70/coolify-mcp-server'

If you have feedback or need assistance with the MCP directory API, please join our Discord server