Skip to main content
Glama

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

Implementation Reference

  • 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}`);
  • 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'] }
  • 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()
Install Server

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