Skip to main content
Glama

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
NameRequiredDescriptionDefault
github_app_idYesGitHub App ID

Implementation Reference

  • 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}`);
  • 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'] } },
  • The tool is listed in the READ_ONLY_TOOLS array, indicating it is available even in read-only mode.
    'get_github_app',

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

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