get_github_app
Retrieve GitHub App configuration details by providing the app ID to manage integrations within Coolify's self-hosted PaaS platform.
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 switch statement that implements the get_github_app tool by calling the CoolifyClient GET endpoint for the specific GitHub app ID.case 'get_github_app': requireParam(args, 'github_app_id'); return client.get(`/github-apps/${args.github_app_id}`);
- src/tools/definitions.ts:697-703 (schema)The input schema definition for the get_github_app tool, specifying the required github_app_id 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 (helper)The get_github_app tool is listed in the READ_ONLY_TOOLS array, indicating it is available in read-only mode.'get_github_app',
- src/index.ts:37-37 (registration)The main MCP server registers all tools, including get_github_app, via the getToolDefinitions() function in the ListToolsRequestHandler.tools: getToolDefinitions()