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
| Name | Required | Description | Default |
|---|---|---|---|
| uuid | Yes | Resource UUID |
Implementation Reference
- src/index.ts:169-178 (handler)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) }] }; }
- src/index.ts:50-52 (schema)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), },