Skip to main content
Glama

liara_delete_bucket

Delete a storage bucket on the Liara cloud platform by specifying its name. This tool removes object storage containers from your infrastructure.

Instructions

Delete a storage bucket

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
nameYesThe name of the bucket to delete

Implementation Reference

  • This is the core handler function that implements the logic for deleting a Liara object storage bucket by making a DELETE request to the Liara API endpoint `/v1/buckets/${name}`. It validates the bucket name parameter before executing the deletion. This function is the exact implementation behind the "liara_delete_bucket" MCP tool.
    /** * Delete a bucket */ export async function deleteBucket( client: LiaraClient, name: string ): Promise<void> { validateRequired(name, 'Bucket name'); await client.delete(`/v1/buckets/${name}`); }

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