Skip to main content
Glama

update_private_key

Modify an existing private key's name, description, or content in PEM format for Coolify self-hosted PaaS instances to maintain secure access credentials.

Instructions

Update a private key

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
uuidYesPrivate key UUID
nameNoKey name
descriptionNoKey description
private_keyNoPrivate key content (PEM format)

Implementation Reference

  • Handler logic for 'update_private_key' tool: requires 'uuid' parameter and sends a PATCH request to `/security/keys/${uuid}` with the provided arguments.
    case 'update_private_key': requireParam(args, 'uuid'); return client.patch(`/security/keys/${args.uuid}`, args);
  • Tool schema definition for 'update_private_key', including input schema with required 'uuid' and optional fields for name, description, and private_key.
    { name: 'update_private_key', description: 'Update a private key', inputSchema: { type: 'object', properties: { uuid: { type: 'string', description: 'Private key UUID' }, name: { type: 'string', description: 'Key name' }, description: { type: 'string', description: 'Key description' }, private_key: { type: 'string', description: 'Private key content (PEM format)' } }, 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