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: validates required parameters (github_app_id, owner, repo) and performs a GET request to the Coolify API endpoint for repository branches.
    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`);
  • Input schema definition specifying parameters: github_app_id (string), owner (string), repo (string), all required.
    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'] } },
  • The tool is listed in READ_ONLY_TOOLS array, indicating it's available in read-only mode.
    'get_github_app_repository_branches' ];
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