facebook tracking pixel

¡Llega la Launch Week! 14 a 18 de septiembre

Voltar ao Marketplace
GitHub MCP integration

GitHub

Onde o mundo constrói software. Milhões de desenvolvedores e empresas constroem, entregam e mantêm seu software no GitHub—a maior e mais avançada plataforma de desenvolvimento do mundo.

Comece grátis
Ferramentas
42
Última atualização
Há 1 semana

Categoria

Desenvolvedores

Compatível com

WhatsAppFacebookInstagramWeb

IA Compatível

ChatGPTClaudeGemini

Ferramentas

Criar Branch

Crie um novo ramo em um repositório do GitHub. Consulte a documentação

Criar Gist

Permite adicionar um novo gist com um ou mais arquivos. Consulte a documentação

Criar Issue

Crie uma nova issue em um repositório do GitHub. Veja a documentação

Criar Comentário de Issue

Crie um novo comentário em uma issue. Consulte a documentação Retorne apenas o texto traduzido, sem explicações.

Criar ou Atualizar Conteúdo do Arquivo

Criar ou atualizar um arquivo em um repositório. Consulte a documentação

Criar Pull Request

Cria uma nova pull request para um repositório especificado. Consulte a documentação

Create Pull Request Review

Submit a review on a pull request: approve it, request changes, or leave a general comment. Set event to APPROVE, REQUEST_CHANGES, or COMMENT — a body is required for REQUEST_CHANGES and COMMENT. Optionally attach inline comments tied to specific lines of the diff. GitHub forbids approving your own pull request, so use COMMENT to leave feedback on PRs you authored. Provide the repository as an owner/repo string and the PR number. Use **Get Pull Request Files** to find the file paths and lines to comment on, and **Search Issues and Pull Requests** with is:pr to resolve the PR number from a title. See the documentation

Criar Repositório

Cria um novo repositório para o usuário autenticado. Consulte a documentação

Criar Disparo de Fluxo de Trabalho

Cria um novo evento de disparo do fluxo de trabalho. Consulte a documentação

Desativar Fluxo de Trabalho

Desativa um fluxo de trabalho e define o **estado** do fluxo de trabalho como **disabled_manually**. Veja a documentação

Ativar Fluxo de Trabalho

Ativa um fluxo de trabalho e define o **estado** do fluxo de trabalho como **ativo**. Consulte a documentação

Obter Commit

Obter um commit em um repositório do GitHub. Consulte a documentação Retorne apenas o texto traduzido sem explicações.

Obter Usuário Atual

Obter uma visão completa do usuário autenticado no GitHub, combinando /user, /user/orgs e /user/teams. Retorna metadados de perfil (login, nome, e-mail, empresa, plano, carimbos de data/hora de criação) e listas enxutas de organizações e equipes para rápida percepção de papéis. Útil quando você precisa validar qual usuário está chamando a API, adaptar o comportamento com base nas afiliações do usuário a organizações e equipes, ou fornecer aos LLMs fundamentação antes das operações no repositório. Consulte a documentação.

Get Issue

Get the full details of a single issue: title, body, state, labels, assignees, milestone, comment count, and timestamps. Provide the repository as an owner/repo string and the issue number. If you only know the issue by title or topic, call **Search Issues and Pull Requests** first to resolve its number. See the documentation

Obter Responsáveis pela Issue

Obter os responsáveis por uma issue em um repositório do GitHub. Consulte a documentação

Get Pull Request

Get the full details of a single pull request along with its reviews and a CI/merge readiness summary. Returns PR metadata (title, body, state, head/base branches, draft flag, timestamps), the mergeable/mergeable_state flags, a checksSummary rollup of CI status for the head commit (combined commit status + check runs, summarized to an overall state and pass/fail counts), the list of reviews, and a deduplicated list of reviewers with their review states (e.g. APPROVED, CHANGES_REQUESTED). Use this to answer "can I merge this?" and "is CI green?" before calling **Merge Pull Request**. Provide the repository as an owner/repo string and the PR number. If you only know the PR by title, call **Search Issues and Pull Requests** with is:pr first to resolve its number. See the documentation

Get Pull Request Files

List the files changed in a pull request (the PR diff at the file level). Returns each file's filename, status (added/modified/removed/renamed), additions/deletions/changes counts, and the unified patch when available — use this to review what a PR changes before approving or merging it. Provide the repository as an owner/repo string and the PR number. If you only know the PR by title, call **Get Pull Request** or **Search Issues and Pull Requests** with is:pr first to resolve its number. See the documentation

Obter informações do repositório

Obter informações de um repositório específico. Veja a documentação

Obter Conteúdo do Repositório

Obter o conteúdo de um arquivo ou de um diretório em um repositório específico. Veja a documentação

Obter Revisores

Obter revisores para um PR (veja a documentação) ou SHA do commit (veja a documentação).

Obter Execução do Fluxo de Trabalho

Obtém uma execução específica de fluxo de trabalho. Consulte a documentação Retorne apenas o texto traduzido sem explicações.

List Branches

List the branches in a repository. Provide the repository as an owner/repo string. Optionally filter to only protected (or only unprotected) branches. If you need to discover repository names first, use **List Repositories**. See the documentation

Listar Commits

Listar commits em um repositório do GitHub. Veja a documentação Retorne apenas o texto traduzido, sem explicações.

List Gist Id Options

Retrieves available options for the Gist Id field.

Listar Gists de um usuário

Lista os gists públicos do usuário especificado. Consulte a documentação

List Organization Options

Retrieves available options for the Organization field.

List Organization Repositories

List repositories for an organization. See the documentation

List Organizations

List all organizations in the authenticated user's account. See the documentation

Listar Lançamentos

Listar releases de um repositório Veja a documentação

List Repositories

List repositories the authenticated user can access, or — when org is provided — the repositories of a specific organization. Use this to discover a repo's owner/repo name before calling **Get Repository**, **Get Repository Content**, or **List Commits**. To find repos by name, set the name substring filter. See the documentation

List Team Id Options

Retrieves available options for the Team Id field.

Listar Execuções de Fluxos de Trabalho

Listar workflowRuns para um repositório Consulte a documentação Retorne apenas o texto traduzido, sem explicações.

List Workflows

List the GitHub Actions workflows defined in a repository. Returns each workflow's id, name, path (e.g. .github/workflows/ci.yml), and state. Use this to discover the workflow file name or ID needed by **Run Workflow**. Provide the repository as an owner/repo string. See the documentation

Merge Pull Request

Merge an open pull request into its base branch. Choose the mergeMethod: merge (a merge commit, the default), squash (combine all commits into one), or rebase. The merge fails if the PR is not mergeable (conflicts, failing required checks, or required reviews missing) — check mergeable state and CI with **Get Pull Request** first. Provide the repository as an owner/repo string and the PR number. To create the PR first, use **Create Pull Request**. See the documentation

Run Workflow

Trigger a GitHub Actions workflow run, or re-run the failed jobs of a previous run. To start a new run, provide workflow (the workflow file name, e.g. ci.yml, its display name, or its numeric ID) and optionally ref (the branch or tag to run on — defaults to the repository's default branch) and inputs (for workflow_dispatch workflows). To re-run only the failed jobs of an existing run instead, provide rerunFailedRunId. The workflow must already have a workflow_dispatch trigger to be dispatchable. Use **List Workflows** to find the workflow file name and **List Workflow Runs** to find a run ID. Provide the repository as an owner/repo string. See the documentation

Pesquisar Issues e Pull Requests

Encontre issues e pull requests por estado e palavra-chave. Veja a documentação

Favoritar repositório

Dar estrela em um repositório. Consulte a documentação para obter mais informações.

Sincronizar o ramo do fork com o upstream

Sincronize um ramo forkado com o ramo upstream. Veja a documentação

Atualizar Gist

Permite atualizar a descrição de um gist e atualizar, excluir ou renomear os arquivos do gist. Consulte a documentação

Atualizar Issue Retorne apenas o texto traduzido, sem explicações.

Atualize uma nova issue em um repositório do GitHub. Veja a documentação

Atualizar Status do Item do Projeto (V2)

Atualize o status de um item no Projeto selecionado (V2). Consulte a documentação Retorne apenas o texto traduzido sem explicações.

Atualizar Pull Request

Atualiza um pull request existente com um novo título, corpo, estado ou ramo base. Consulte a documentação Retorne apenas o texto traduzido sem explicações.