Skip to main content
Glama

get_github_app_repository_branches

Retrieve branch information from GitHub repositories accessible through a GitHub App, enabling repository management within the Coolify MCP Server environment.

Instructions

Get branches of a repository accessible by a GitHub App

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
github_app_idYesGitHub App ID
ownerYesRepository owner
repoYesRepository name

Implementation Reference

  • Handler implementation in the switch statement that validates parameters and calls the Coolify API endpoint to retrieve branches for a GitHub App repository.
    case 'get_github_app_repository_branches': requireParam(args, 'github_app_id'); requireParam(args, 'owner'); requireParam(args, 'repo'); return client.get(`/github-apps/${args.github_app_id}/repositories/${args.owner}/${args.repo}/branches`);
  • Schema definition specifying the tool name, description, and input schema with required parameters for validation.
    { name: 'get_github_app_repository_branches', description: 'Get branches of a repository accessible by a GitHub App', inputSchema: { type: 'object', properties: { github_app_id: { type: 'string', description: 'GitHub App ID' }, owner: { type: 'string', description: 'Repository owner' }, repo: { type: 'string', description: 'Repository name' } }, required: ['github_app_id', 'owner', 'repo'] } },

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