Skip to main content
Glama

get-application

Retrieve detailed information about a specific application using its UUID, including status, configuration, and deployment details.

Instructions

Retrieve detailed information about a specific application using its UUID. This includes the application's status, configuration, and deployment details.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
uuidYesResource UUID

Implementation Reference

  • Handler for the 'get-application' tool. Parses the UUID from input arguments using UuidSchema, fetches application details via Coolify API, and returns the JSON-formatted response.
    case "get-application": {
      const { uuid } = UuidSchema.parse(request.params.arguments);
      const app = await coolifyApiCall(`/applications/${uuid}`);
      return {
        content: [{
          type: "text",
          text: JSON.stringify(app, null, 2)
        }]
      };
    }
  • Zod schema defining the input for 'get-application' tool, requiring a 'uuid' string parameter.
    const UuidSchema = z.object({
      uuid: z.string().describe("Resource UUID"),
    });
  • src/index.ts:93-97 (registration)
    Tool registration in the ListTools response, specifying name, description, and input schema for 'get-application'.
    {
      name: "get-application",
      description: "Retrieve detailed information about a specific application using its UUID. This includes the application's status, configuration, and deployment details.",
      inputSchema: zodToJsonSchema(UuidSchema),
    },

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/StuMason/coolify-mcp-server'

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