Skip to main content
Glama

get_database_backups

Retrieve backup configurations for a database in Coolify to manage data protection settings and recovery options.

Instructions

Get backup configurations for a database

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
uuidYesDatabase UUID

Implementation Reference

  • The handler logic for the 'get_database_backups' tool. It requires a 'uuid' parameter for the database and performs a GET request to the Coolify API endpoint `/databases/${uuid}/backups` using the client.
    case 'get_database_backups':
      requireParam(args, 'uuid');
      return client.get(`/databases/${args.uuid}/backups`);
  • The schema definition for the 'get_database_backups' tool, specifying the input requirements: a required 'uuid' string parameter for the database.
    name: 'get_database_backups',
    description: 'Get backup configurations for a database',
    inputSchema: {
      type: 'object',
      properties: { uuid: { type: 'string', description: 'Database UUID' } },
      required: ['uuid']
    }
  • The tool is registered in the READ_ONLY_TOOLS array, indicating it is available in read-only mode.
    'list_applications',
    'get_application',
    'get_application_logs',
    'get_application_envs',
    'get_application_deployments',
    'list_services',
    'get_service',
    'get_service_envs',
    'get_service_logs',
    'list_databases',
    'get_database',
    'get_database_backups',
    'get_database_logs',
    'list_deployments',
    'get_deployment',
    'list_private_keys',
    'get_private_key',
    'list_resources',
    'list_github_apps',
    'get_github_app',
    'get_github_app_repositories',
    'get_github_app_repository_branches'
Install Server

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