liara_delete_app
Remove an application from the Liara cloud platform by specifying its name to manage your deployed resources.
Instructions
Delete an app
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| name | Yes | The name of the app to delete |
Implementation Reference
- src/services/apps.ts:70-78 (handler)The core handler function for the 'liara_delete_app' tool. It validates the app name and sends a DELETE request to the Liara API endpoint /v1/projects/{name} to delete the specified app.* Delete an app */ export async function deleteApp( client: LiaraClient, name: string ): Promise<void> { validateAppName(name); await client.delete(`/v1/projects/${name}`); }