Skip to main content
Glama

liara_delete_backup

Remove a database backup from the Liara cloud platform by specifying the database name and backup ID to free storage space and manage backup retention.

Instructions

Delete a database backup

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
databaseNameYesThe name of the database
backupIdYesThe backup ID to delete

Implementation Reference

  • Handler function that deletes a specific database backup via the Liara API. This is the core implementation logic for the 'liara_delete_backup' tool.
    export async function deleteBackup( client: LiaraClient, databaseName: string, backupId: string ): Promise<void> { validateRequired(databaseName, 'Database name'); validateRequired(backupId, 'Backup ID'); await client.delete(`/v1/databases/${databaseName}/backups/${backupId}`); }
  • Type definition for DatabaseBackup used in backup operations, including delete.
    export interface DatabaseBackup {

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/razavioo/liara-mcp'

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