Skip to main content
Glama

liara_get_release

Retrieve detailed information about a specific application release on the Liara cloud platform by providing the app name and release ID.

Instructions

Get details of a specific release

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
appNameYesThe name of the app
releaseIDYesThe release ID

Implementation Reference

  • Executes the core logic for retrieving details of a specific app release via the Liara API. This is the implementation of the 'liara_get_release' tool handler.
    export async function getRelease(
        client: LiaraClient,
        appName: string,
        releaseID: string
    ): Promise<{
        _id: string;
        releaseID: string;
        sourceID: string;
        status: string;
        createdAt: string;
        envVars?: Array<{ key: string; value: string }>;
    }> {
        validateAppName(appName);
        validateRequired(releaseID, 'Release ID');
        return await client.get<{
            _id: string;
            releaseID: string;
            sourceID: string;
            status: string;
            createdAt: string;
            envVars?: Array<{ key: string; value: string }>;
        }>(`/v2/projects/${appName}/releases/${releaseID}`);
    }
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/razavioo/liara-mcp'

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