get_github_app
Retrieve GitHub App configuration details using its unique ID for managing deployments and integrations in Coolify's self-hosted PaaS environment.
Instructions
Get GitHub App details by ID
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| github_app_id | Yes | GitHub App ID |
Implementation Reference
- src/tools/handlers.ts:468-470 (handler)The handler case in the main tool dispatch switch statement. Validates the 'github_app_id' parameter using requireParam and performs a GET request to the Coolify API endpoint `/github-apps/${args.github_app_id}` to retrieve the GitHub App details.case 'get_github_app': requireParam(args, 'github_app_id'); return client.get(`/github-apps/${args.github_app_id}`);
- src/tools/definitions.ts:696-704 (schema)The tool schema definition in the allToolDefinitions array, specifying the name, description, and inputSchema which requires a 'github_app_id' string parameter.{ name: 'get_github_app', description: 'Get GitHub App details by ID', inputSchema: { type: 'object', properties: { github_app_id: { type: 'string', description: 'GitHub App ID' } }, required: ['github_app_id'] } },
- src/tools/definitions.ts:39-39 (registration)The tool is listed in the READ_ONLY_TOOLS array, indicating it is available even in read-only mode.'get_github_app',