Back to .md Directory

What is mcp-server-github?

<a href="https://acuvity.ai">

May 2, 2026
0 downloads
0 views
ai agent mcp claude copilot
View source
<p align="center"> <a href="https://acuvity.ai"> <picture> <img src="https://acuvity.ai/wp-content/uploads/2025/09/1.-Acuvity-Logo-Black-scaled-e1758135197226.png" height="90" alt="Acuvity logo"/> </picture> </a> </p> <p align="center"> <a href="https://discord.gg/BkU7fBkrNk"> <img src="https://img.shields.io/badge/Acuvity-Join-7289DA?logo=discord&logoColor=fff" alt="Join Acuvity community" /> </a> <a href="https://www.linkedin.com/company/acuvity/"> <img src="https://img.shields.io/badge/LinkedIn-Follow-7289DA" alt="Follow us on LinkedIn" /> </a> <a href="https://bsky.app/profile/acuvity.bsky.social"> <img src="https://img.shields.io/badge/Bluesky-Follow-7289DA"?logo=bluesky&logoColor=fff" alt="Follow us on Bluesky" /> </a> </p>

What is mcp-server-github?

Rating Helm Docker GitHUB Scout Install in VS Code Docker

Description: GitHub's official MCP Server

Packaged by Acuvity and published to our curated MCP server registry from github/github-mcp-server original sources.

Quick links:

Why We Built This

At Acuvity, security is central to our mission—especially for critical systems like MCP servers and integration in agentic systems. To address this need, we've created a secure and robust Docker image designed to ensure github/github-mcp-server run reliably and safely.

🔐 Key Security Features

📦 Isolated Immutable Sandbox

FeatureDescription
Isolated ExecutionAll tools run within secure, containerized sandboxes to enforce process isolation and prevent lateral movement.
Non-root by DefaultEnforces least-privilege principles, minimizing the impact of potential security breaches.
Read-only FilesystemEnsures runtime immutability, preventing unauthorized modification.
Version PinningGuarantees consistency and reproducibility across deployments by locking tool and dependency versions.
CVE ScanningContinuously scans images for known vulnerabilities using Docker Scout to support proactive mitigation.
SBOM & ProvenanceDelivers full supply chain transparency by embedding metadata and traceable build information.
Container Signing (Cosign)Implements image signing using Cosign to ensure integrity and authenticity of container images.

🛡️ Runtime Security and Guardrails

Minibridge Integration: Minibridge establishes secure Agent-to-MCP connectivity, supports Rego/HTTP-based policy enforcement 🕵️, and simplifies orchestration.

The ARC container includes a built-in Rego policy that enables a set of runtime "guardrails"" to help enforce security, privacy, and correct usage of your services. Below is an overview of each guardrail provided.

🔒 Resource Integrity

Mitigates MCP Rug Pull Attacks

  • Goal: Protect users from malicious tool description changes after initial approval, preventing post-installation manipulation or deception.
  • Mechanism: Locks tool descriptions upon client approval and verifies their integrity before execution. Any modification to the description triggers a security violation, blocking unauthorized changes from server-side updates.

🛡️ Guardrails

Covert Instruction Detection

Monitors incoming requests for hidden or obfuscated directives that could alter policy behavior.

  • Goal: Stop attackers from slipping unnoticed commands or payloads into otherwise harmless data.
  • Mechanism: Applies a library of regex patterns and binary‐encoding checks to the full request body. If any pattern matches a known covert channel (e.g., steganographic markers, hidden HTML tags, escape-sequence tricks), the request is rejected.
Sensitive Pattern Detection

Block user-defined sensitive data patterns (credential paths, filesystem references).

  • Goal: Block accidental or malicious inclusion of sensitive information that violates data-handling rules.
  • Mechanism: Runs a curated set of regexes against all payloads and tool descriptions—matching patterns such as .env files, RSA key paths, directory traversal sequences.
Shadowing Pattern Detection

Detects and blocks "shadowing" attacks, where a malicious MCP server sneaks hidden directives into its own tool descriptions to hijack or override the behavior of other, trusted tools.

  • Goal: Stop a rogue server from poisoning the agent’s logic by embedding instructions that alter how a different server’s tools operate (e.g., forcing all emails to go to an attacker’s address even when the user calls a separate send_email tool).
  • Mechanism: During policy load, each tool description is scanned for cross‐tool override patterns—such as <IMPORTANT> sections referencing other tool names, hidden side‐effects, or directives that apply to a different server’s API. Any description that attempts to shadow or extend instructions for a tool outside its own namespace triggers a policy violation and is rejected.
Schema Misuse Prevention

Enforces strict adherence to MCP input schemas.

  • Goal: Prevent malformed or unexpected fields from bypassing validations, causing runtime errors, or enabling injections.
  • Mechanism: Compares each incoming JSON object against the declared schema (required properties, allowed keys, types). Any extra, missing, or mistyped field triggers an immediate policy violation.
Cross-Origin Tool Access

Controls whether tools may invoke tools or services from external origins.

  • Goal: Prevent untrusted or out-of-scope services from being called.
  • Mechanism: Examines tool invocation requests and outgoing calls, verifying each target against an allowlist of approved domains or service names. Calls to any non-approved origin are blocked.
Secrets Redaction

Automatically masks sensitive values so they never appear in logs or responses.

  • Goal: Ensure that API keys, tokens, passwords, and other credentials cannot leak in plaintext.
  • Mechanism: Scans every text output for known secret formats (e.g., AWS keys, GitHub PATs, JWTs). Matches are replaced with [REDACTED] before the response is sent or recorded.

These controls ensure robust runtime integrity, prevent unauthorized behavior, and provide a foundation for secure-by-design system operations.

Enable guardrails

To activate guardrails in your Docker containers, define the GUARDRAILS environment variable with the protections you need.

GuardrailSummary
covert-instruction-detectionDetects hidden or obfuscated directives in requests.
sensitive-pattern-detectionFlags patterns suggesting sensitive data or filesystem exposure.
shadowing-pattern-detectionIdentifies tool descriptions that override or influence others.
schema-misuse-preventionEnforces strict schema compliance on input data.
cross-origin-tool-accessControls calls to external services or APIs.
secrets-redactionPrevents exposure of credentials or sensitive values.

Example: add -e GUARDRAILS="secrets-redaction sensitive-pattern-detection" to enable those guardrails.

🔒 Basic Authentication via Shared Secret

Provides a lightweight auth layer using a single shared token.

  • Mechanism: Expects clients to send an Authorization header with the predefined secret.
  • Use Case: Quickly lock down your endpoint in development or simple internal deployments—no complex OAuth/OIDC setup required.

To turn on Basic Authentication, define BASIC_AUTH_SECRET environment variable with a shared secret.

Example: add -e BASIC_AUTH_SECRET="supersecret" to enable the basic authentication.

While basic auth will protect against unauthorized access, you should use it only in controlled environment, rotate credentials frequently and always use TLS.

[!NOTE] By default, all guardrails except resource integrity are turned off. You can enable or disable each one individually, ensuring that only the protections your environment needs are active.

📦 How to Install

[!TIP] Given mcp-server-github scope of operation it can be hosted anywhere.

Environment variables and secrets:

  • GITHUB_PERSONAL_ACCESS_TOKEN required to be set
  • GITHUB_HOST optional (not set)

For more information and extra configuration you can consult the package documentation.

🧰 Clients Integrations

Below are the steps for configuring most clients that use MCP to elevate their Copilot experience.

[!NOTE] These integrations function natively across all Minibridge modes. To keep things brief, only the docker local-run setup is covered here.

<details> <summary>Visual Studio Code</summary>

To get started immediately, you can use the "one-click" link below:

Install in VS Code Docker

Global scope

Press ctrl + shift + p and type Preferences: Open User Settings JSON to add the following section:

{
  "mcp": {
    "servers": {
      "acuvity-mcp-server-github": {
        "env": {
          "GITHUB_PERSONAL_ACCESS_TOKEN": "TO_BE_SET"
        },
        "command": "docker",
        "args": [
          "run",
          "-i",
          "--rm",
          "--read-only",
          "-e",
          "GITHUB_PERSONAL_ACCESS_TOKEN",
          "docker.io/acuvity/mcp-server-github:v0.29.0"
        ]
      }
    }
  }
}

Workspace scope

In your workspace create a file called .vscode/mcp.json and add the following section:

{
  "servers": {
    "acuvity-mcp-server-github": {
      "env": {
        "GITHUB_PERSONAL_ACCESS_TOKEN": "TO_BE_SET"
      },
      "command": "docker",
      "args": [
        "run",
        "-i",
        "--rm",
        "--read-only",
        "-e",
        "GITHUB_PERSONAL_ACCESS_TOKEN",
        "docker.io/acuvity/mcp-server-github:v0.29.0"
      ]
    }
  }
}

To pass secrets you should use the promptString input type described in the Visual Studio Code documentation.

</details> <details> <summary>Windsurf IDE</summary>

In ~/.codeium/windsurf/mcp_config.json add the following section:

{
  "mcpServers": {
    "acuvity-mcp-server-github": {
      "env": {
        "GITHUB_PERSONAL_ACCESS_TOKEN": "TO_BE_SET"
      },
      "command": "docker",
      "args": [
        "run",
        "-i",
        "--rm",
        "--read-only",
        "-e",
        "GITHUB_PERSONAL_ACCESS_TOKEN",
        "docker.io/acuvity/mcp-server-github:v0.29.0"
      ]
    }
  }
}

See Windsurf documentation for more info.

</details> <details> <summary>Cursor IDE</summary>

Add the following JSON block to your mcp configuration file:

  • ~/.cursor/mcp.json for global scope
  • .cursor/mcp.json for project scope
{
  "mcpServers": {
    "acuvity-mcp-server-github": {
      "env": {
        "GITHUB_PERSONAL_ACCESS_TOKEN": "TO_BE_SET"
      },
      "command": "docker",
      "args": [
        "run",
        "-i",
        "--rm",
        "--read-only",
        "-e",
        "GITHUB_PERSONAL_ACCESS_TOKEN",
        "docker.io/acuvity/mcp-server-github:v0.29.0"
      ]
    }
  }
}

See cursor documentation for more information.

</details> <details> <summary>Claude Desktop</summary>

In the claude_desktop_config.json configuration file add the following section:

{
  "mcpServers": {
    "acuvity-mcp-server-github": {
      "env": {
        "GITHUB_PERSONAL_ACCESS_TOKEN": "TO_BE_SET"
      },
      "command": "docker",
      "args": [
        "run",
        "-i",
        "--rm",
        "--read-only",
        "-e",
        "GITHUB_PERSONAL_ACCESS_TOKEN",
        "docker.io/acuvity/mcp-server-github:v0.29.0"
      ]
    }
  }
}

See Anthropic documentation for more information.

</details> <details> <summary>OpenAI python SDK</summary>

Running locally

async with MCPServerStdio(
    params={
        "env": {"GITHUB_PERSONAL_ACCESS_TOKEN":"TO_BE_SET"},
        "command": "docker",
        "args": ["run","-i","--rm","--read-only","-e","GITHUB_PERSONAL_ACCESS_TOKEN","docker.io/acuvity/mcp-server-github:v0.29.0"]
    }
) as server:
    tools = await server.list_tools()

Running remotely

async with MCPServerSse(
    params={
        "url": "http://<ip>:<port>/sse",
    }
) as server:
    tools = await server.list_tools()

See OpenAI Agents SDK docs for more info.

</details>

🐳 Run it with Docker

<details> <summary>Locally with STDIO</summary>

In your client configuration set:

  • command: docker
  • arguments: run -i --rm --read-only -e GITHUB_PERSONAL_ACCESS_TOKEN docker.io/acuvity/mcp-server-github:v0.29.0
</details> <details> <summary>Locally with HTTP/sse</summary>

Simply run as:

docker run -it -p 8000:8000 --rm --read-only -e GITHUB_PERSONAL_ACCESS_TOKEN docker.io/acuvity/mcp-server-github:v0.29.0

Then on your application/client, you can configure to use it like:

{
  "mcpServers": {
    "acuvity-mcp-server-github": {
      "url": "http://localhost:8000/sse"
    }
  }
}

You might have to use different ports for different tools.

</details> <details> <summary>Remotely with Websocket tunneling and MTLS </summary>

This section assume you are familiar with TLS and certificates and will require:

  • a server certificate with proper DNS/IP field matching your tool deployment.
  • a client-ca used to sign client certificates
  1. Start the server in backend mode
  • add an environment variable like -e MINIBRIDGE_MODE=backend
  • add the TLS certificates (recommended) through a volume let's say /certs ex (-v $PWD/certs:/certs)
  • instruct minibridge to use those certs with
    • -e MINIBRIDGE_TLS_SERVER_CERT=/certs/server-cert.pem
    • -e MINIBRIDGE_TLS_SERVER_KEY=/certs/server-key.pem
    • -e MINIBRIDGE_TLS_SERVER_KEY_PASS=optional
    • -e MINIBRIDGE_TLS_SERVER_CLIENT_CA=/certs/client-ca.pem
  1. Start minibridge locally in frontend mode:

In your client configuration, Minibridge works like any other STDIO command.

Example for Claude Desktop:

{
  "mcpServers": {
    "acuvity-mcp-server-github": {
      "command": "minibridge",
      "args": ["frontend", "--backend", "wss://<remote-url>:8000/ws", "--tls-client-backend-ca", "/path/to/ca/that/signed/the/server-cert.pem/ca.pem", "--tls-client-cert", "/path/to/client-cert.pem", "--tls-client-key", "/path/to/client-key.pem"]
    }
  }
}

That's it.

Minibridge offers a host of additional features. For step-by-step guidance, please visit the wiki. And if anything’s unclear, don’t hesitate to reach out!

</details>

☁️ Deploy On Kubernetes

<details> <summary>Deploy using Helm Charts</summary>

Chart settings requirements

This chart requires some mandatory information to be installed.

Mandatory Secrets:

  • GITHUB_PERSONAL_ACCESS_TOKEN secret to be set as secrets.GITHUB_PERSONAL_ACCESS_TOKEN either by .value or from existing with .valueFrom

Optional Environment variables:

  • GITHUB_HOST="" environment variable can be changed with env.GITHUB_HOST=""

How to install

You can inspect the chart README:

helm show readme oci://docker.io/acuvity/mcp-server-github --version 1.0.0

You can inspect the values that you can configure:

helm show values oci://docker.io/acuvity/mcp-server-github --version 1.0.0

Install with helm

helm install mcp-server-github oci://docker.io/acuvity/mcp-server-github --version 1.0.0

From there your MCP server mcp-server-github will be reachable by default through http/sse from inside the cluster using the Kubernetes Service mcp-server-github on port 8000 by default. You can change that by looking at the service section of the values.yaml file.

How to Monitor

The deployment will create a Kubernetes service with a healthPort, that is used for liveness probes and readiness probes. This health port can also be used by the monitoring stack of your choice and exposes metrics under the /metrics path.

See full charts Readme for more details about settings and runtime security including guardrails activation.

</details>

🧠 Server features

🧰 Tools (40)

<details> <summary>add_comment_to_pending_review</summary>

Description:

Add review comment to the requester's latest pending pull request review. A pending review needs to already exist to call this (check with the user if not sure).

Parameter:

NameTypeDescriptionRequired?
bodystringThe text of the review commentYes
linenumberThe line of the blob in the pull request diff that the comment applies to. For multi-line comments, the last line of the rangeNo
ownerstringRepository ownerYes
pathstringThe relative path to the file that necessitates a commentYes
pullNumbernumberPull request numberYes
repostringRepository nameYes
sidestringThe side of the diff to comment on. LEFT indicates the previous state, RIGHT indicates the new stateNo
startLinenumberFor multi-line comments, the first line of the range that the comment applies toNo
startSidestringFor multi-line comments, the starting side of the diff that the comment applies to. LEFT indicates the previous state, RIGHT indicates the new stateNo
subjectTypestringThe level at which the comment is targetedYes
</details> <details> <summary>add_issue_comment</summary>

Description:

Add a comment to a specific issue in a GitHub repository. Use this tool to add comments to pull requests as well (in this case pass pull request number as issue_number), but only if user is not asking specifically to add review comments.

Parameter:

NameTypeDescriptionRequired?
bodystringComment contentYes
issue_numbernumberIssue number to comment onYes
ownerstringRepository ownerYes
repostringRepository nameYes
</details> <details> <summary>assign_copilot_to_issue</summary>

Description:

Assign Copilot to a specific issue in a GitHub repository.

This tool can help with the following outcomes:
- a Pull Request created with source code changes to resolve the issue


More information can be found at:
- https://docs.github.com/en/copilot/using-github-copilot/using-copilot-coding-agent-to-work-on-tasks/about-assigning-tasks-to-copilot

Parameter:

NameTypeDescriptionRequired?
base_refstringGit reference (e.g., branch) that the agent will start its work from. If not specified, defaults to the repository's default branchNo
custom_instructionsstringOptional custom instructions to guide the agent beyond the issue body. Use this to provide additional context, constraints, or guidance that is not captured in the issue descriptionNo
issue_numbernumberIssue numberYes
ownerstringRepository ownerYes
repostringRepository nameYes
</details> <details> <summary>create_branch</summary>

Description:

Create a new branch in a GitHub repository

Parameter:

NameTypeDescriptionRequired?
branchstringName for new branchYes
from_branchstringSource branch (defaults to repo default)No
ownerstringRepository ownerYes
repostringRepository nameYes
</details> <details> <summary>create_or_update_file</summary>

Description:

Create or update a single file in a GitHub repository. 
If updating, you should provide the SHA of the file you want to update. Use this tool to create or update a file in a GitHub repository remotely; do not use it for local file operations.

In order to obtain the SHA of original file version before updating, use the following git command:
git ls-tree HEAD <path to file>

If the SHA is not provided, the tool will attempt to acquire it by fetching the current file contents from the repository, which may lead to rewriting latest committed changes if the file has changed since last retrieval.

Parameter:

NameTypeDescriptionRequired?
branchstringBranch to create/update the file inYes
contentstringContent of the fileYes
messagestringCommit messageYes
ownerstringRepository owner (username or organization)Yes
pathstringPath where to create/update the fileYes
repostringRepository nameYes
shastringThe blob SHA of the file being replaced.No
</details> <details> <summary>create_pull_request</summary>

Description:

Create a new pull request in a GitHub repository.

Parameter:

NameTypeDescriptionRequired?
basestringBranch to merge intoYes
bodystringPR descriptionNo
draftbooleanCreate as draft PRNo
headstringBranch containing changesYes
maintainer_can_modifybooleanAllow maintainer editsNo
ownerstringRepository ownerYes
repostringRepository nameYes
titlestringPR titleYes
</details> <details> <summary>create_repository</summary>

Description:

Create a new GitHub repository in your account or specified organization

Parameter:

NameTypeDescriptionRequired?
autoInitbooleanInitialize with READMENo
descriptionstringRepository descriptionNo
namestringRepository nameYes
organizationstringOrganization to create the repository in (omit to create in your personal account)No
privatebooleanWhether repo should be privateNo
</details> <details> <summary>delete_file</summary>

Description:

Delete a file from a GitHub repository

Parameter:

NameTypeDescriptionRequired?
branchstringBranch to delete the file fromYes
messagestringCommit messageYes
ownerstringRepository owner (username or organization)Yes
pathstringPath to the file to deleteYes
repostringRepository nameYes
</details> <details> <summary>fork_repository</summary>

Description:

Fork a GitHub repository to your account or specified organization

Parameter:

NameTypeDescriptionRequired?
organizationstringOrganization to fork toNo
ownerstringRepository ownerYes
repostringRepository nameYes
</details> <details> <summary>get_commit</summary>

Description:

Get details for a commit from a GitHub repository

Parameter:

NameTypeDescriptionRequired?
include_diffbooleanWhether to include file diffs and stats in the response. Default is true.No
ownerstringRepository ownerYes
pagenumberPage number for pagination (min 1)No
perPagenumberResults per page for pagination (min 1, max 100)No
repostringRepository nameYes
shastringCommit SHA, branch name, or tag nameYes
</details> <details> <summary>get_file_contents</summary>

Description:

Get the contents of a file or directory from a GitHub repository

Parameter:

NameTypeDescriptionRequired?
ownerstringRepository owner (username or organization)Yes
pathstringPath to file/directoryNo
refstringAccepts optional git refs such as refs/tags/{tag}, refs/heads/{branch} or refs/pull/{pr_number}/headNo
repostringRepository nameYes
shastringAccepts optional commit SHA. If specified, it will be used instead of refNo
</details> <details> <summary>get_label</summary>

Description:

Get a specific label from a repository.

Parameter:

NameTypeDescriptionRequired?
namestringLabel name.Yes
ownerstringRepository owner (username or organization name)Yes
repostringRepository nameYes
</details> <details> <summary>get_latest_release</summary>

Description:

Get the latest release in a GitHub repository

Parameter:

NameTypeDescriptionRequired?
ownerstringRepository ownerYes
repostringRepository nameYes
</details> <details> <summary>get_me</summary>

Description:

Get details of the authenticated GitHub user. Use this when a request is about the user's own profile for GitHub. Or when information is missing to build other tool calls.

Parameter:

NameTypeDescriptionRequired?
</details> <details> <summary>get_release_by_tag</summary>

Description:

Get a specific release by its tag name in a GitHub repository

Parameter:

NameTypeDescriptionRequired?
ownerstringRepository ownerYes
repostringRepository nameYes
tagstringTag name (e.g., 'v1.0.0')Yes
</details> <details> <summary>get_tag</summary>

Description:

Get details about a specific git tag in a GitHub repository

Parameter:

NameTypeDescriptionRequired?
ownerstringRepository ownerYes
repostringRepository nameYes
tagstringTag nameYes
</details> <details> <summary>get_team_members</summary>

Description:

Get member usernames of a specific team in an organization. Limited to organizations accessible with current credentials

Parameter:

NameTypeDescriptionRequired?
orgstringOrganization login (owner) that contains the team.Yes
team_slugstringTeam slugYes
</details> <details> <summary>get_teams</summary>

Description:

Get details of the teams the user is a member of. Limited to organizations accessible with current credentials

Parameter:

NameTypeDescriptionRequired?
userstringUsername to get teams for. If not provided, uses the authenticated user.No
</details> <details> <summary>issue_read</summary>

Description:

Get information about a specific issue in a GitHub repository.

Parameter:

NameTypeDescriptionRequired?
issue_numbernumberThe number of the issueYes
methodstringThe read operation to perform on a single issue.
Options are:
  1. get - Get details of a specific issue.
  2. get_comments - Get issue comments.
  3. get_sub_issues - Get sub-issues of the issue.
  4. get_labels - Get labels assigned to the issue. | Yes | owner | string | The owner of the repository | Yes | page | number | Page number for pagination (min 1) | No | perPage | number | Results per page for pagination (min 1, max 100) | No | repo | string | The name of the repository | Yes
</details> <details> <summary>issue_write</summary>

Description:

Create a new or update an existing issue in a GitHub repository.

Parameter:

NameTypeDescriptionRequired?
assigneesarrayUsernames to assign to this issueNo
bodystringIssue body contentNo
duplicate_ofnumberIssue number that this issue is a duplicate of. Only used when state_reason is 'duplicate'.No
issue_numbernumberIssue number to updateNo
labelsarrayLabels to apply to this issueNo
methodstringWrite operation to perform on a single issue.
Options are:
  • 'create' - creates a new issue.
  • 'update' - updates an existing issue. | Yes | milestone | number | Milestone number | No | owner | string | Repository owner | Yes | repo | string | Repository name | Yes | state | string | New state | No | state_reason | string | Reason for the state change. Ignored unless state is changed. | No | title | string | Issue title | No | type | string | Type of this issue. Only use if the repository has issue types configured. Use list_issue_types tool to get valid type values for the organization. If the repository doesn't support issue types, omit this parameter. | No
</details> <details> <summary>list_branches</summary>

Description:

List branches in a GitHub repository

Parameter:

NameTypeDescriptionRequired?
ownerstringRepository ownerYes
pagenumberPage number for pagination (min 1)No
perPagenumberResults per page for pagination (min 1, max 100)No
repostringRepository nameYes
</details> <details> <summary>list_commits</summary>

Description:

Get list of commits of a branch in a GitHub repository. Returns at least 30 results per page by default, but can return more if specified using the perPage parameter (up to 100).

Parameter:

NameTypeDescriptionRequired?
authorstringAuthor username or email address to filter commits byNo
ownerstringRepository ownerYes
pagenumberPage number for pagination (min 1)No
perPagenumberResults per page for pagination (min 1, max 100)No
repostringRepository nameYes
shastringCommit SHA, branch or tag name to list commits of. If not provided, uses the default branch of the repository. If a commit SHA is provided, will list commits up to that SHA.No
</details> <details> <summary>list_issue_types</summary>

Description:

List supported issue types for repository owner (organization).

Parameter:

NameTypeDescriptionRequired?
ownerstringThe organization owner of the repositoryYes
</details> <details> <summary>list_issues</summary>

Description:

List issues in a GitHub repository. For pagination, use the 'endCursor' from the previous response's 'pageInfo' in the 'after' parameter.

Parameter:

NameTypeDescriptionRequired?
afterstringCursor for pagination. Use the endCursor from the previous page's PageInfo for GraphQL APIs.No
directionstringOrder direction. If provided, the 'orderBy' also needs to be provided.No
labelsarrayFilter by labelsNo
orderBystringOrder issues by field. If provided, the 'direction' also needs to be provided.No
ownerstringRepository ownerYes
perPagenumberResults per page for pagination (min 1, max 100)No
repostringRepository nameYes
sincestringFilter by date (ISO 8601 timestamp)No
statestringFilter by state, by default both open and closed issues are returned when not providedNo
</details> <details> <summary>list_pull_requests</summary>

Description:

List pull requests in a GitHub repository. If the user specifies an author, then DO NOT use this tool and use the search_pull_requests tool instead.

Parameter:

NameTypeDescriptionRequired?
basestringFilter by base branchNo
directionstringSort directionNo
headstringFilter by head user/org and branchNo
ownerstringRepository ownerYes
pagenumberPage number for pagination (min 1)No
perPagenumberResults per page for pagination (min 1, max 100)No
repostringRepository nameYes
sortstringSort byNo
statestringFilter by stateNo
</details> <details> <summary>list_releases</summary>

Description:

List releases in a GitHub repository

Parameter:

NameTypeDescriptionRequired?
ownerstringRepository ownerYes
pagenumberPage number for pagination (min 1)No
perPagenumberResults per page for pagination (min 1, max 100)No
repostringRepository nameYes
</details> <details> <summary>list_tags</summary>

Description:

List git tags in a GitHub repository

Parameter:

NameTypeDescriptionRequired?
ownerstringRepository ownerYes
pagenumberPage number for pagination (min 1)No
perPagenumberResults per page for pagination (min 1, max 100)No
repostringRepository nameYes
</details> <details> <summary>merge_pull_request</summary>

Description:

Merge a pull request in a GitHub repository.

Parameter:

NameTypeDescriptionRequired?
commit_messagestringExtra detail for merge commitNo
commit_titlestringTitle for merge commitNo
merge_methodstringMerge methodNo
ownerstringRepository ownerYes
pullNumbernumberPull request numberYes
repostringRepository nameYes
</details> <details> <summary>pull_request_read</summary>

Description:

Get information on a specific pull request in GitHub repository.

Parameter:

NameTypeDescriptionRequired?
methodstringAction to specify what pull request data needs to be retrieved from GitHub.
Possible options:
  1. get - Get details of a specific pull request.
  2. get_diff - Get the diff of a pull request.
  3. get_status - Get status of a head commit in a pull request. This reflects status of builds and checks.
  4. get_files - Get the list of files changed in a pull request. Use with pagination parameters to control the number of results returned.
  5. get_review_comments - Get review threads on a pull request. Each thread contains logically grouped review comments made on the same code location during pull request reviews. Returns threads with metadata (isResolved, isOutdated, isCollapsed) and their associated comments. Use cursor-based pagination (perPage, after) to control results.
  6. get_reviews - Get the reviews on a pull request. When asked for review comments, use get_review_comments method.
  7. get_comments - Get comments on a pull request. Use this if user doesn't specifically want review comments. Use with pagination parameters to control the number of results returned. | Yes | owner | string | Repository owner | Yes | page | number | Page number for pagination (min 1) | No | perPage | number | Results per page for pagination (min 1, max 100) | No | pullNumber | number | Pull request number | Yes | repo | string | Repository name | Yes
</details> <details> <summary>pull_request_review_write</summary>

Description:

Create and/or submit, delete review of a pull request.

Available methods:
- create: Create a new review of a pull request. If "event" parameter is provided, the review is submitted. If "event" is omitted, a pending review is created.
- submit_pending: Submit an existing pending review of a pull request. This requires that a pending review exists for the current user on the specified pull request. The "body" and "event" parameters are used when submitting the review.
- delete_pending: Delete an existing pending review of a pull request. This requires that a pending review exists for the current user on the specified pull request.

Parameter:

NameTypeDescriptionRequired?
bodystringReview comment textNo
commitIDstringSHA of commit to reviewNo
eventstringReview action to perform.No
methodstringThe write operation to perform on pull request review.Yes
ownerstringRepository ownerYes
pullNumbernumberPull request numberYes
repostringRepository nameYes
</details> <details> <summary>push_files</summary>

Description:

Push multiple files to a GitHub repository in a single commit

Parameter:

NameTypeDescriptionRequired?
branchstringBranch to push toYes
filesarrayArray of file objects to push, each object with path (string) and content (string)Yes
messagestringCommit messageYes
ownerstringRepository ownerYes
repostringRepository nameYes
</details> <details> <summary>request_copilot_review</summary>

Description:

Request a GitHub Copilot code review for a pull request. Use this for automated feedback on pull requests, usually before requesting a human reviewer.

Parameter:

NameTypeDescriptionRequired?
ownerstringRepository ownerYes
pullNumbernumberPull request numberYes
repostringRepository nameYes
</details> <details> <summary>search_code</summary>

Description:

Fast and precise code search across ALL GitHub repositories using GitHub's native search engine. Best for finding exact symbols, functions, classes, or specific code patterns.

Parameter:

NameTypeDescriptionRequired?
orderstringSort order for resultsNo
pagenumberPage number for pagination (min 1)No
perPagenumberResults per page for pagination (min 1, max 100)No
querystringSearch query using GitHub's powerful code search syntax. Examples: 'content:Skill language:Java org:github', 'NOT is:archived language:Python OR language:go', 'repo:github/github-mcp-server'. Supports exact matching, language filters, path filters, and more.Yes
sortstringSort field ('indexed' only)No
</details> <details> <summary>search_issues</summary>

Description:

Search for issues in GitHub repositories using issues search syntax already scoped to is:issue

Parameter:

NameTypeDescriptionRequired?
orderstringSort orderNo
ownerstringOptional repository owner. If provided with repo, only issues for this repository are listed.No
pagenumberPage number for pagination (min 1)No
perPagenumberResults per page for pagination (min 1, max 100)No
querystringSearch query using GitHub issues search syntaxYes
repostringOptional repository name. If provided with owner, only issues for this repository are listed.No
sortstringSort field by number of matches of categories, defaults to best matchNo
</details> <details> <summary>search_pull_requests</summary>

Description:

Search for pull requests in GitHub repositories using issues search syntax already scoped to is:pr

Parameter:

NameTypeDescriptionRequired?
orderstringSort orderNo
ownerstringOptional repository owner. If provided with repo, only pull requests for this repository are listed.No
pagenumberPage number for pagination (min 1)No
perPagenumberResults per page for pagination (min 1, max 100)No
querystringSearch query using GitHub pull request search syntaxYes
repostringOptional repository name. If provided with owner, only pull requests for this repository are listed.No
sortstringSort field by number of matches of categories, defaults to best matchNo
</details> <details> <summary>search_repositories</summary>

Description:

Find GitHub repositories by name, description, readme, topics, or other metadata. Perfect for discovering projects, finding examples, or locating specific repositories across GitHub.

Parameter:

NameTypeDescriptionRequired?
minimal_outputbooleanReturn minimal repository information (default: true). When false, returns full GitHub API repository objects.No
orderstringSort orderNo
pagenumberPage number for pagination (min 1)No
perPagenumberResults per page for pagination (min 1, max 100)No
querystringRepository search query. Examples: 'machine learning in:name stars:>1000 language:python', 'topic:react', 'user:facebook'. Supports advanced search syntax for precise filtering.Yes
sortstringSort repositories by field, defaults to best matchNo
</details> <details> <summary>search_users</summary>

Description:

Find GitHub users by username, real name, or other profile information. Useful for locating developers, contributors, or team members.

Parameter:

NameTypeDescriptionRequired?
orderstringSort orderNo
pagenumberPage number for pagination (min 1)No
perPagenumberResults per page for pagination (min 1, max 100)No
querystringUser search query. Examples: 'john smith', 'location:seattle', 'followers:>100'. Search is automatically scoped to type:user.Yes
sortstringSort users by number of followers or repositories, or when the person joined GitHub.No
</details> <details> <summary>sub_issue_write</summary>

Description:

Add a sub-issue to a parent issue in a GitHub repository.

Parameter:

NameTypeDescriptionRequired?
after_idnumberThe ID of the sub-issue to be prioritized after (either after_id OR before_id should be specified)No
before_idnumberThe ID of the sub-issue to be prioritized before (either after_id OR before_id should be specified)No
issue_numbernumberThe number of the parent issueYes
methodstringThe action to perform on a single sub-issue
Options are:
  • 'add' - add a sub-issue to a parent issue in a GitHub repository.
  • 'remove' - remove a sub-issue from a parent issue in a GitHub repository.
  • 'reprioritize' - change the order of sub-issues within a parent issue in a GitHub repository. Use either 'after_id' or 'before_id' to specify the new position. | Yes | owner | string | Repository owner | Yes | replace_parent | boolean | When true, replaces the sub-issue's current parent issue. Use with 'add' method only. | No | repo | string | Repository name | Yes | sub_issue_id | number | The ID of the sub-issue to add. ID is not the same as issue number | Yes
</details> <details> <summary>update_pull_request</summary>

Description:

Update an existing pull request in a GitHub repository.

Parameter:

NameTypeDescriptionRequired?
basestringNew base branch nameNo
bodystringNew descriptionNo
draftbooleanMark pull request as draft (true) or ready for review (false)No
maintainer_can_modifybooleanAllow maintainer editsNo
ownerstringRepository ownerYes
pullNumbernumberPull request number to updateYes
repostringRepository nameYes
reviewersarrayGitHub usernames to request reviews fromNo
statestringNew stateNo
titlestringNew titleNo
</details> <details> <summary>update_pull_request_branch</summary>

Description:

Update the branch of a pull request with the latest changes from the base branch.

Parameter:

NameTypeDescriptionRequired?
expectedHeadShastringThe expected SHA of the pull request's HEAD refNo
ownerstringRepository ownerYes
pullNumbernumberPull request numberYes
repostringRepository nameYes
</details>

📝 Prompts (2)

<details> <summary>AssignCodingAgent</summary>

Description:

Assign GitHub Coding Agent to multiple tasks in a GitHub repository.

Parameter:

ArgumentDescriptionRequired
repoThe repository to assign tasks in (owner/repo).Yes
<details> <summary>issue_to_fix_workflow</summary>

Description:

Create an issue for a problem and then generate a pull request to fix it

Parameter:

ArgumentDescriptionRequired
ownerRepository ownerYes
repoRepository nameYes
titleIssue titleYes
descriptionIssue descriptionYes
labelsComma-separated list of labels to apply (optional)No
assigneesComma-separated list of assignees (optional)No
</details>

🔐 Resource SBOM

Minibridge will perform hash checks for the following resources. The hashes are given as references and are the sha256 sum of the description.

ResourceNameParameterHash
promptsAssignCodingAgentdescription4f9fe34b7c7e89aa96df3550d613d28352ad4e354c8450d3057a533d96a490c7
promptsAssignCodingAgentrepoc830ac58c90245c73c3a1f0ecd7c8722be8cb955ec08d2b1d4b74b00db1ddba4
promptsissue_to_fix_workflowdescriptionfcf1ae23cc8ef26b35816db215df7336e943b45831868a6f37cebb64472df034
promptsissue_to_fix_workflowassignees2f70679e444e867cf3f5883993e4a91b0ea45a17b6685dfc7983d0554dd8fa9e
promptsissue_to_fix_workflowdescription6fdf4c7fb5a19e122d009b8deed663a56034d8170be9300906c4368c423da250
promptsissue_to_fix_workflowlabels03560bc948abee46f4a1d9d7d330447aec5d17fd21a8770d6d2c8da43d9d99f6
promptsissue_to_fix_workflowownerf0d16bda4d13e782383008c51526b15a1d34e639b794b48ce0e4aaa9929b2a4a
promptsissue_to_fix_workflowrepoa2b1b3f24a4b0370e287023edc5ccf8c9b4d8af69e97a2f698cf3aa6dae8c558
promptsissue_to_fix_workflowtitlebaebb0f722db7150e454ecfb2d432205f6331d57837328637d25ac8413f84644
toolsadd_comment_to_pending_reviewdescriptionc01d9b539761ed349fdefe576e822b51e45119bb65ec58bae048f32d545a4a59
toolsadd_comment_to_pending_reviewbody150bf72e1256c35c56d58cce6912ae25bb0a02e2a048a422297a7eead2024635
toolsadd_comment_to_pending_reviewline819e79a56ebb1ecd61715def06ef3dda6306d32677da2d9c797a17ea0c2fe4bc
toolsadd_comment_to_pending_reviewownerf0d16bda4d13e782383008c51526b15a1d34e639b794b48ce0e4aaa9929b2a4a
toolsadd_comment_to_pending_reviewpathad65a27b6cdd3e833939b5c162ff0e5e105a2a0d8120a83907c1c286c6ce1c6b
toolsadd_comment_to_pending_reviewpullNumberc45ef7560e9361e486ad92db8751f01655bdaad2e8375566effb91d07090b338
toolsadd_comment_to_pending_reviewrepoa2b1b3f24a4b0370e287023edc5ccf8c9b4d8af69e97a2f698cf3aa6dae8c558
toolsadd_comment_to_pending_reviewsidea8c682b21f75d5200a487c37af5d312ed2fe67abca69116aa93eb2a7ae228b5c
toolsadd_comment_to_pending_reviewstartLine19184c9e73d4d7fbb9661702c5af2054059047e4b6cfc56b0e66f31fe3c2ba16
toolsadd_comment_to_pending_reviewstartSide6a4676ef00a54ce3692d9292bdd8dea138dceffd9d3a2bd7af22f2b776395448
toolsadd_comment_to_pending_reviewsubjectType12fc508ce13c1c2a9607f35cb7add1b0335cddf96c243530df7db80cab254182
toolsadd_issue_commentdescription560688ce52ed72988fcfec72f46d01941035c9a05d96fdd8c4d10e8cf243d753
toolsadd_issue_commentbody76196e088940dc7627854dccef8d659636b54a66ba71c85512d65beb0131a5a8
toolsadd_issue_commentissue_number55508553706f381501225c1367bc7f12548ab08da5ce677d10875fb316ee3ce4
toolsadd_issue_commentownerf0d16bda4d13e782383008c51526b15a1d34e639b794b48ce0e4aaa9929b2a4a
toolsadd_issue_commentrepoa2b1b3f24a4b0370e287023edc5ccf8c9b4d8af69e97a2f698cf3aa6dae8c558
toolsassign_copilot_to_issuedescriptiond9f189d6cd4dc4e14f648c16825a32209ecb55bc1528e8d7a5c5d47a936312f3
toolsassign_copilot_to_issuebase_ref2b3bf8d14e1139ed7306f537db4d88e9a781961f457ddcea7b6772c0e3c163b2
toolsassign_copilot_to_issuecustom_instructions2646811ef631ffb8e9a63917c0e13f5bac4b8838839b7599d92f09e0fdf34916
toolsassign_copilot_to_issueissue_numberb90458b6339c0e14f5cea20207035c8a316ca33c0fda5d372ab8c4fc51fdb075
toolsassign_copilot_to_issueownerf0d16bda4d13e782383008c51526b15a1d34e639b794b48ce0e4aaa9929b2a4a
toolsassign_copilot_to_issuerepoa2b1b3f24a4b0370e287023edc5ccf8c9b4d8af69e97a2f698cf3aa6dae8c558
toolscreate_branchdescription178c4aa2cad9c4dec2d6883eb0913ba5385f367e681e9d97cb751a2eb0983645
toolscreate_branchbranch23431660a4982622d8107024b732941aab6327a832c6715c57299e716e175d88
toolscreate_branchfrom_branch5fa655e2e4b9da16f3de9e22d4d842abb6226464a2e91758242eacc4fec42dc9
toolscreate_branchownerf0d16bda4d13e782383008c51526b15a1d34e639b794b48ce0e4aaa9929b2a4a
toolscreate_branchrepoa2b1b3f24a4b0370e287023edc5ccf8c9b4d8af69e97a2f698cf3aa6dae8c558
toolscreate_or_update_filedescription375ff78dd0fe9fbcf11a65d2225a5942e529b7ea6f69cea3eeb2080f4427da77
toolscreate_or_update_filebranchd6a5e87fe732d76cc378c1d1f1210e9b2deb75c9a0dc93b4e453bd5681e9ebe9
toolscreate_or_update_filecontent651936dc46e2fa051b60ccb3cbfe9f87f0f58f41773e79b4839a814525a7d688
toolscreate_or_update_filemessage26306d203c4a6f1a77f32cd065d7d11593ba0c7a9b5c52c188b98f22b620941f
toolscreate_or_update_fileowner637f8af6d00297f7764a512ae2421160b429cfc1592dcf476db18f1f2d9521b6
toolscreate_or_update_filepathc57e5f48646295c4493f5d052c3ce4d46f88f8c963d162f44c187ff5defa6791
toolscreate_or_update_filerepoa2b1b3f24a4b0370e287023edc5ccf8c9b4d8af69e97a2f698cf3aa6dae8c558
toolscreate_or_update_fileshac6038773152de7f9db6ccc4b3b22f1b9af307f1c1cb5ae99a1837017e68e1728
toolscreate_pull_requestdescriptionb3ce1a8e1c8396e567b2df7957109ec2298ca873d8084f9a9c033f39657f3572
toolscreate_pull_requestbase68d3d352a8e9b1b21daef0144ddbd5ebbfdfafa1c150afd9184f2889aeba0f54
toolscreate_pull_requestbody6b20fc28a2739e184ca6e00b2e894ed90a2213780fe67c05664a6917b26e1010
toolscreate_pull_requestdraft13570f145a780449c8841dec203e2f3b37b7ced1b53e0a675553880b30b743db
toolscreate_pull_requestheadf30a2f6fcdb7af894b1cd42fd17f7651a3e9de4c432a615fe383235d8822d669
toolscreate_pull_requestmaintainer_can_modify4c61cb2daa11e76d1bd1483894ba1f0c8d8430cf9011793815d3cbd017f341ad
toolscreate_pull_requestownerf0d16bda4d13e782383008c51526b15a1d34e639b794b48ce0e4aaa9929b2a4a
toolscreate_pull_requestrepoa2b1b3f24a4b0370e287023edc5ccf8c9b4d8af69e97a2f698cf3aa6dae8c558
toolscreate_pull_requesttitle878bfb1640ec1cecdf8cab8f3c62f5413e6b4084e0e1a4494df8f65a5a5eebf7
toolscreate_repositorydescription4b58d95b681b9e48375400e581666ae89d51cbad25412a2f5de964da9ce8bf80
toolscreate_repositoryautoInitfb659aaef50b97ff2f1d0518139663caef0d38424fc1107a8bf1a0cd7d7a637b
toolscreate_repositorydescription2b96b72a003b28027236e3a9d7b66958233d752e92381122915202c3c00f6058
toolscreate_repositorynamea2b1b3f24a4b0370e287023edc5ccf8c9b4d8af69e97a2f698cf3aa6dae8c558
toolscreate_repositoryorganization27408283fd33350e994962c641a90ca1a628ab59da48eb8e50e98f95cf7e4745
toolscreate_repositoryprivated2180d4e67c48806764e44a9533344b63b6c05db56d6974818cb393c38e666e1
toolsdelete_filedescriptiona6706184f6656f1e0a1d8b6322d2c1c18bb3672a97cd2ac5bf71b0daf99e8900
toolsdelete_filebrancheed2c3cf92bd302596d7dd8c0d052f667e6d9d3e5debc46913ff50de8c370a59
toolsdelete_filemessage26306d203c4a6f1a77f32cd065d7d11593ba0c7a9b5c52c188b98f22b620941f
toolsdelete_fileowner637f8af6d00297f7764a512ae2421160b429cfc1592dcf476db18f1f2d9521b6
toolsdelete_filepathd4e57b1045d6bdf511b312f8574c99772b8c03cc0528da2604ebc5f7d6daa335
toolsdelete_filerepoa2b1b3f24a4b0370e287023edc5ccf8c9b4d8af69e97a2f698cf3aa6dae8c558
toolsfork_repositorydescriptionb9c81712c56e48175df559052b73f7e28646208f961b6b61c3ac3f3545eef86f
toolsfork_repositoryorganization715d8a3a0d64573efa8d492a5ac06ccf88e4ecb1db7a7b6cb0d30ee9369e6ccb
toolsfork_repositoryownerf0d16bda4d13e782383008c51526b15a1d34e639b794b48ce0e4aaa9929b2a4a
toolsfork_repositoryrepoa2b1b3f24a4b0370e287023edc5ccf8c9b4d8af69e97a2f698cf3aa6dae8c558
toolsget_commitdescriptiona27095bf05dc570a18bf4f6db26662c8dd39f2997f914127c59e8ecf906bf30f
toolsget_commitinclude_difff532a5fbbbb36f8afb93d9f4c4f3194b3c3b3c7a07c6f77e4286ca33e9097fcf
toolsget_commitownerf0d16bda4d13e782383008c51526b15a1d34e639b794b48ce0e4aaa9929b2a4a
toolsget_commitpageb7c5240244916494e69b93a6fc0ad57b364a457e44ef68ed22739cb55ffb1359
toolsget_commitperPage059dde8a01aac1a755c9e5efbbfaccb57fa34c3988494a154c873dfa7779a1d7
toolsget_commitrepoa2b1b3f24a4b0370e287023edc5ccf8c9b4d8af69e97a2f698cf3aa6dae8c558
toolsget_commitshadcf39de8e2207559c31e5f4576561e8e569c991a889b697d8db7a3460924b445
toolsget_file_contentsdescription54de6216aa12cd8da08e335b6955e2261b4241359f184959829407d0e40dcdc0
toolsget_file_contentsowner637f8af6d00297f7764a512ae2421160b429cfc1592dcf476db18f1f2d9521b6
toolsget_file_contentspath2957637372ff4e19e270a582b546db31597054befcac8ee9aa597018697273be
toolsget_file_contentsref875f572a6b88be55fa675b365b115cebba9c3fed283430959254d3aaefd96da0
toolsget_file_contentsrepoa2b1b3f24a4b0370e287023edc5ccf8c9b4d8af69e97a2f698cf3aa6dae8c558
toolsget_file_contentsshafda0ee26c9410debd8f92f8574994f92fc3f7f32c3c0110e5e038f72b245e40c
toolsget_labeldescriptionbc5e986298d736683f2928e24dd080fa0735fbcb3d1529aa2573a84570568b44
toolsget_labelname5f8530e3693ee4b5319375c6cb7b1aa2333dae312613974bca3551c13fca72e3
toolsget_labelownerc7969e651591ec1fd11228666bf4b809fe9ea930cd86f42c4fa75dc7db62f664
toolsget_labelrepoa2b1b3f24a4b0370e287023edc5ccf8c9b4d8af69e97a2f698cf3aa6dae8c558
toolsget_latest_releasedescription57a49eb576b15e088997f3906897973907a872ac7532593fa48826e0b3d0d09a
toolsget_latest_releaseownerf0d16bda4d13e782383008c51526b15a1d34e639b794b48ce0e4aaa9929b2a4a
toolsget_latest_releaserepoa2b1b3f24a4b0370e287023edc5ccf8c9b4d8af69e97a2f698cf3aa6dae8c558
toolsget_medescriptionbc34f566cc782d563dbfb6035ec4b94c7c7d46f34ef84c61cd7b02729ba281ce
toolsget_release_by_tagdescription370170693dc5177b119f9aadd27bb305c23eec6de6050e5accbee27acd764a7f
toolsget_release_by_tagownerf0d16bda4d13e782383008c51526b15a1d34e639b794b48ce0e4aaa9929b2a4a
toolsget_release_by_tagrepoa2b1b3f24a4b0370e287023edc5ccf8c9b4d8af69e97a2f698cf3aa6dae8c558
toolsget_release_by_tagtag5c5b50c5122e0628cc4cbf1692e097ea01b0f84cde76562125f4d0fc52ff1791
toolsget_tagdescriptione6d557e07eb01ac88760ac5a62bc68d3b795b61d4d7fa4be36758c0f7ce61eae
toolsget_tagownerf0d16bda4d13e782383008c51526b15a1d34e639b794b48ce0e4aaa9929b2a4a
toolsget_tagrepoa2b1b3f24a4b0370e287023edc5ccf8c9b4d8af69e97a2f698cf3aa6dae8c558
toolsget_tagtag1ace926bc7cdee5323e297d439d2d268286749252b1c7f5e332d5003681d092d
toolsget_team_membersdescriptione86ce60eeea8d7fcc9a5e50ae24c13b083aed10d254af864402ec8167502bbc4
toolsget_team_membersorg8f82b1e1d8e55b252e1e32296aab20a519ec407a92f986379d8fc2b3e905ccf9
toolsget_team_membersteam_slug80b01119e50dfe735a6881fe673751b4e5ea652b3060fd46cfbabb9a32c94202
toolsget_teamsdescription99380d708092b4760246658a3e9bc5f7991d7bcecc75c3dea03e13fcff6aa27b
toolsget_teamsusere7014fc86ff0dc1234683bd328e76b2d368abb424043c57b75e86007b281b4fc
toolsissue_readdescriptione3ccc7984b309935391ec33b448056c6177cd97383005727831d46e8c73213dc
toolsissue_readissue_number792880d24307a7c2e3ccb34d164888a960335024892f6faa8729fe06657409fe
toolsissue_readmethod8fc24ff5c235579b50c9495070de7e897a2d006321c4cb11d0cd277392c80521
toolsissue_readowneree38b59dccfd5b3c8d391330a1f61654141c77f7a3bfcd3da617d6f32f3fba55
toolsissue_readpageb7c5240244916494e69b93a6fc0ad57b364a457e44ef68ed22739cb55ffb1359
toolsissue_readperPage059dde8a01aac1a755c9e5efbbfaccb57fa34c3988494a154c873dfa7779a1d7
toolsissue_readrepo707cdfc2a1225dbd1d0ab3c3e9c69aa50df8556f176cfcb822744bef5cee4481
toolsissue_writedescription8fe78ac80b6a1295e9149d41aab56393236e2c6155abf09a5b56a23b09ef587c
toolsissue_writeassignees4b3bd4c85313c2684d6dcf769e368485947d08818835207a231a61700dc3552b
toolsissue_writebody16e4f6813850b28daf1d698946455b18a587988665d95175da2e415938a906f7
toolsissue_writeduplicate_of53698074a89edce07b87d2fee16e63accc21cdea6e50f4058a028e85da3ef427
toolsissue_writeissue_number45f54a035e52ddd24bd931710aed635cc2d5a202ba687d0708c618fe76095437
toolsissue_writelabels14ab87d13af5cc4d90c937d8c30258158c0afe9d6cedfb89b4a10d0d057d0397
toolsissue_writemethod52170d190606d783c3383db65d6b72a6f4e6e9598ef831aa9f442874816bac38
toolsissue_writemilestone87dbe6860309e747c0fc0fc44621cdc1b20e79faaccdd485a4b74c5daa8e333d
toolsissue_writeownerf0d16bda4d13e782383008c51526b15a1d34e639b794b48ce0e4aaa9929b2a4a
toolsissue_writerepoa2b1b3f24a4b0370e287023edc5ccf8c9b4d8af69e97a2f698cf3aa6dae8c558
toolsissue_writestate73d2abfb99c5146711a52488e33aa097ebd94cc1f1d14a0e21e9a6ed88709818
toolsissue_writestate_reason9cea5f38007ac5ff5923758f8747775d5c14bf17a46336e52c159b26ef467128
toolsissue_writetitlebaebb0f722db7150e454ecfb2d432205f6331d57837328637d25ac8413f84644
toolsissue_writetype4cdfe6d81ac007f40e6ffe451a7e4b3154c8a20af966032818941ef3d6588bd2
toolslist_branchesdescription8ce903bf8c1572fd527fd93f38d7d2ccb9b8d463ffe947100aeb1b8187363840
toolslist_branchesownerf0d16bda4d13e782383008c51526b15a1d34e639b794b48ce0e4aaa9929b2a4a
toolslist_branchespageb7c5240244916494e69b93a6fc0ad57b364a457e44ef68ed22739cb55ffb1359
toolslist_branchesperPage059dde8a01aac1a755c9e5efbbfaccb57fa34c3988494a154c873dfa7779a1d7
toolslist_branchesrepoa2b1b3f24a4b0370e287023edc5ccf8c9b4d8af69e97a2f698cf3aa6dae8c558
toolslist_commitsdescriptiondd2e7a438ec8ef9f8c31a41ce203325fc971ad1dc601c7647f5a9a39ca372df9
toolslist_commitsauthor1f1de9b0a4f304b5c277397fc0f2ccfa560bd738a0629c1dfbea414c3b0d5525
toolslist_commitsownerf0d16bda4d13e782383008c51526b15a1d34e639b794b48ce0e4aaa9929b2a4a
toolslist_commitspageb7c5240244916494e69b93a6fc0ad57b364a457e44ef68ed22739cb55ffb1359
toolslist_commitsperPage059dde8a01aac1a755c9e5efbbfaccb57fa34c3988494a154c873dfa7779a1d7
toolslist_commitsrepoa2b1b3f24a4b0370e287023edc5ccf8c9b4d8af69e97a2f698cf3aa6dae8c558
toolslist_commitssha32370fb2be08709a082e75aad76c4ea68131ea14e7c7d5397589551b4c578590
toolslist_issue_typesdescriptionaad76d81c64bef558b289deaa559d6df71f073175296d652177fa5269ff75b46
toolslist_issue_typesownera52c8fb1e603a20184e28ac2617bf3691d25622e5c59b880455382e0b2992169
toolslist_issuesdescriptionc41469eaf78f99580e51ff1bbbadc2922bdec37e47f0e5d142e1e576f3390c87
toolslist_issuesafter08dda1d80d90e055580fd030062b62012b8ea50c39e1c4c8cb3224c35ab4c326
toolslist_issuesdirectionfee43777658d13fc2a11ea0f8b5b82f03a410bef3ef26750efe89d8818d62951
toolslist_issueslabelscd8837d9c837a6e1991502a822f57a44fc95a741eeece870f890f82c275c16a3
toolslist_issuesorderByf275807f86362c1b5c51261dd4081b2fd8997a5fc1c80b85fb7d6a9c40762cf5
toolslist_issuesownerf0d16bda4d13e782383008c51526b15a1d34e639b794b48ce0e4aaa9929b2a4a
toolslist_issuesperPage059dde8a01aac1a755c9e5efbbfaccb57fa34c3988494a154c873dfa7779a1d7
toolslist_issuesrepoa2b1b3f24a4b0370e287023edc5ccf8c9b4d8af69e97a2f698cf3aa6dae8c558
toolslist_issuessinceea0dd87c74f5845692af7bc86972f1f210d984342fb26602fe35c0c04a3a49cd
toolslist_issuesstateda8480769e2cb1db597453b840eba06b9528d242e2ff2e0c4a3f6f5be675559b
toolslist_pull_requestsdescriptionc249adc3491b598845fda74d1b7f815b368107b47786634fc6e44ef0ea5f1a06
toolslist_pull_requestsbase3915eefd074b833c42fa1a78466ff3667210bb7cd9e867bce531f6d69b6b25f1
toolslist_pull_requestsdirection29c8371d927b118d8d71544c8c8d336f340b0fe893a48faa5a746880f578f373
toolslist_pull_requestsheaddc15fecf43097ca55e53fff94ae252ac6f7a0325fa37efb0ba854276c2eea920
toolslist_pull_requestsownerf0d16bda4d13e782383008c51526b15a1d34e639b794b48ce0e4aaa9929b2a4a
toolslist_pull_requestspageb7c5240244916494e69b93a6fc0ad57b364a457e44ef68ed22739cb55ffb1359
toolslist_pull_requestsperPage059dde8a01aac1a755c9e5efbbfaccb57fa34c3988494a154c873dfa7779a1d7
toolslist_pull_requestsrepoa2b1b3f24a4b0370e287023edc5ccf8c9b4d8af69e97a2f698cf3aa6dae8c558
toolslist_pull_requestssortc9129025bd3ff6522a7eeebc1abf1481f36e4ac9d74524a473ac1c3be1c6fc2f
toolslist_pull_requestsstate2b25d08228e3152d0b529fbf269381f1f000c2adf30f1186b7e9ac7eb2cba425
toolslist_releasesdescription16c40a2d80141352b60b845be6bb163ab868e1dc3b7edbdbe14ca7b2d664e411
toolslist_releasesownerf0d16bda4d13e782383008c51526b15a1d34e639b794b48ce0e4aaa9929b2a4a
toolslist_releasespageb7c5240244916494e69b93a6fc0ad57b364a457e44ef68ed22739cb55ffb1359
toolslist_releasesperPage059dde8a01aac1a755c9e5efbbfaccb57fa34c3988494a154c873dfa7779a1d7
toolslist_releasesrepoa2b1b3f24a4b0370e287023edc5ccf8c9b4d8af69e97a2f698cf3aa6dae8c558
toolslist_tagsdescriptionb45b57651e9a56b5d03befc9edb790d1c1d92742cc6e1cd9d56f6b41fc3dca92
toolslist_tagsownerf0d16bda4d13e782383008c51526b15a1d34e639b794b48ce0e4aaa9929b2a4a
toolslist_tagspageb7c5240244916494e69b93a6fc0ad57b364a457e44ef68ed22739cb55ffb1359
toolslist_tagsperPage059dde8a01aac1a755c9e5efbbfaccb57fa34c3988494a154c873dfa7779a1d7
toolslist_tagsrepoa2b1b3f24a4b0370e287023edc5ccf8c9b4d8af69e97a2f698cf3aa6dae8c558
toolsmerge_pull_requestdescription124cd641ce348386107609b1831084962d2198fa82fe58f7a040dd7e1cebb6b4
toolsmerge_pull_requestcommit_message8b3fd7f52419bc6922db1546614fcd15e214033be38066ff4cd1cbb841ba27ce
toolsmerge_pull_requestcommit_titledf303c95cc0cb2a4ceb92b29c47c9b965ec484d53b5fee6add5c9189e2f96342
toolsmerge_pull_requestmerge_method889b19c3b7a37b0d3249fd662f04c6cdc914c42bfc45d642c5d74946ca8837db
toolsmerge_pull_requestownerf0d16bda4d13e782383008c51526b15a1d34e639b794b48ce0e4aaa9929b2a4a
toolsmerge_pull_requestpullNumberc45ef7560e9361e486ad92db8751f01655bdaad2e8375566effb91d07090b338
toolsmerge_pull_requestrepoa2b1b3f24a4b0370e287023edc5ccf8c9b4d8af69e97a2f698cf3aa6dae8c558
toolspull_request_readdescription2d2b3f1fbb088bc1a5eef4fd77b7c8abdfd2753e2356abce8401dba5236cae5b
toolspull_request_readmethod37b490bb771936c01b0ae2f765733376b218f25e74770b1f4f1af20fd4d9bc98
toolspull_request_readownerf0d16bda4d13e782383008c51526b15a1d34e639b794b48ce0e4aaa9929b2a4a
toolspull_request_readpageb7c5240244916494e69b93a6fc0ad57b364a457e44ef68ed22739cb55ffb1359
toolspull_request_readperPage059dde8a01aac1a755c9e5efbbfaccb57fa34c3988494a154c873dfa7779a1d7
toolspull_request_readpullNumberc45ef7560e9361e486ad92db8751f01655bdaad2e8375566effb91d07090b338
toolspull_request_readrepoa2b1b3f24a4b0370e287023edc5ccf8c9b4d8af69e97a2f698cf3aa6dae8c558
toolspull_request_review_writedescription4395e0a7f82f40a8dd040d9b8a7a4711f37b4eda463858ccb989eecf00d33090
toolspull_request_review_writebody305435be37ca49348dd59f76ed78d1d3db653263c87268f19e38edd8e9903f8a
toolspull_request_review_writecommitID8edaee0cc39481736353ab6b261838e08ea25f5a48ff2235247349671fd2d092
toolspull_request_review_writeevent00abd179b03232fbd602ad69bd7c4e4eec497999929b7b10ebc5b45cf762fd8e
toolspull_request_review_writemethod6c9da86826c33d7875ac0f6c7a8a9f9c2f75507258df8b9e23f9bc152b71bc2a
toolspull_request_review_writeownerf0d16bda4d13e782383008c51526b15a1d34e639b794b48ce0e4aaa9929b2a4a
toolspull_request_review_writepullNumberc45ef7560e9361e486ad92db8751f01655bdaad2e8375566effb91d07090b338
toolspull_request_review_writerepoa2b1b3f24a4b0370e287023edc5ccf8c9b4d8af69e97a2f698cf3aa6dae8c558
toolspush_filesdescription0ea99ad23e44e739ed503658bdaab5ee2dc239246cb00e715d8fff3d80fe544f
toolspush_filesbranch903fd236be715d2d2dabe8871e567bebdb55a876b1f9b4db0c49400e3b944e01
toolspush_filesfiles1c55ce034da38092a4c35795368bf7da13897eb6ab576f0539b22e02cda877a0
toolspush_filesmessage26306d203c4a6f1a77f32cd065d7d11593ba0c7a9b5c52c188b98f22b620941f
toolspush_filesownerf0d16bda4d13e782383008c51526b15a1d34e639b794b48ce0e4aaa9929b2a4a
toolspush_filesrepoa2b1b3f24a4b0370e287023edc5ccf8c9b4d8af69e97a2f698cf3aa6dae8c558
toolsrequest_copilot_reviewdescription0a31c498daefdb4310ae1335e16496ed8d238d01ebf12c04d45a1b215e4c7de3
toolsrequest_copilot_reviewownerf0d16bda4d13e782383008c51526b15a1d34e639b794b48ce0e4aaa9929b2a4a
toolsrequest_copilot_reviewpullNumberc45ef7560e9361e486ad92db8751f01655bdaad2e8375566effb91d07090b338
toolsrequest_copilot_reviewrepoa2b1b3f24a4b0370e287023edc5ccf8c9b4d8af69e97a2f698cf3aa6dae8c558
toolssearch_codedescription80d70342e3a3eb8b9ad5df5eb159840c6a363b7ef54bc757e541990984e2b2ad
toolssearch_codeorder459d5b91cd6d44d4d449ac7ea47b374b8a64f41347ea88c26ff60293e91a5410
toolssearch_codepageb7c5240244916494e69b93a6fc0ad57b364a457e44ef68ed22739cb55ffb1359
toolssearch_codeperPage059dde8a01aac1a755c9e5efbbfaccb57fa34c3988494a154c873dfa7779a1d7
toolssearch_codequery4195e12d52f49f89827d3e4e20190f0b9246a116802728e6714b4fdc247f90ac
toolssearch_codesort5a8b728c15aab0284ebfeb9dfb94debf67e55d178d8bf7c3b660fe36ef92855f
toolssearch_issuesdescription43486d364155338655b54fc20c59d4b770504ecad84b4878c826745c01a3e39e
toolssearch_issuesorder3c9b30285f90cf05528b2502044ec5c2b125b6c1885be9af8aeff0ba722fffbb
toolssearch_issuesowner2b0b674feebefdb92c2ae156a0d69926ea5c9b5bb7488dd0ee8dc69a6b475ff4
toolssearch_issuespageb7c5240244916494e69b93a6fc0ad57b364a457e44ef68ed22739cb55ffb1359
toolssearch_issuesperPage059dde8a01aac1a755c9e5efbbfaccb57fa34c3988494a154c873dfa7779a1d7
toolssearch_issuesqueryba2ce5263245f1c7beda19f750b937dee26e69df9b0773c5ee3902142e81e3ee
toolssearch_issuesrepo1123ae7af5aa2a436f142f42ac4e8a8ec6c5242d90711eb443f60ca51bec7fd1
toolssearch_issuessort45f652334776f448a204bdd17cb144e1d6a7b0bf6e6746e677874ad01432470d
toolssearch_pull_requestsdescriptiond8a220faae6baa7cd5dfad6e2acd46e0949ef79854cd1d98baa8c6a5e15b1cea
toolssearch_pull_requestsorder3c9b30285f90cf05528b2502044ec5c2b125b6c1885be9af8aeff0ba722fffbb
toolssearch_pull_requestsownerb4630553300033a3784143bef3cd6eaaf07fa13ac3ece89ad63b5af747263e59
toolssearch_pull_requestspageb7c5240244916494e69b93a6fc0ad57b364a457e44ef68ed22739cb55ffb1359
toolssearch_pull_requestsperPage059dde8a01aac1a755c9e5efbbfaccb57fa34c3988494a154c873dfa7779a1d7
toolssearch_pull_requestsquery2eb3b226fb8c4d8de76cb2cafa5f133b8ad6d117590eb9eda9a79f0b7445b47d
toolssearch_pull_requestsrepo689f726331c0f078fde7f7a94e4d9af223b58df8dd79d309a2a1d3fd5c4f59a3
toolssearch_pull_requestssort45f652334776f448a204bdd17cb144e1d6a7b0bf6e6746e677874ad01432470d
toolssearch_repositoriesdescription7b9c5ffba195b04b1c4d835eca98ea84c999b254239740dd5a38e89d6f46ab02
toolssearch_repositoriesminimal_output4af9b88e9893e72033a60d84efb0087f44790e176b455f738cc15b7f6db7f3ab
toolssearch_repositoriesorder3c9b30285f90cf05528b2502044ec5c2b125b6c1885be9af8aeff0ba722fffbb
toolssearch_repositoriespageb7c5240244916494e69b93a6fc0ad57b364a457e44ef68ed22739cb55ffb1359
toolssearch_repositoriesperPage059dde8a01aac1a755c9e5efbbfaccb57fa34c3988494a154c873dfa7779a1d7
toolssearch_repositoriesquery1c6a82bc7504d47ba45d87b94e4c35cab4392381291e88647e4215798d36bb3b
toolssearch_repositoriessort5bee5ee03cb669d6152c8059a10341aa6efdd05dbc76fc10a8d089556052867a
toolssearch_usersdescriptione2c14890a74e50c883b5ba65dd1ae521152ef8e7ffe67aab5336091fcefe0807
toolssearch_usersorder3c9b30285f90cf05528b2502044ec5c2b125b6c1885be9af8aeff0ba722fffbb
toolssearch_userspageb7c5240244916494e69b93a6fc0ad57b364a457e44ef68ed22739cb55ffb1359
toolssearch_usersperPage059dde8a01aac1a755c9e5efbbfaccb57fa34c3988494a154c873dfa7779a1d7
toolssearch_usersquery2bdd0f05eb601997f555c602d81a9a9fe3edde63d396cad58aea855fa094e00e
toolssearch_userssort70aa5854fb750b213cbc0d4e95a3a50ced65335a521cd617c62673fb00894df3
toolssub_issue_writedescription0e8fa66b77f7ec60fa9ee3a6402d1aa53a8b4ee45621b52dea19a7777b9692c9
toolssub_issue_writeafter_idb8451ca1764a44349b69eebff232b4a8eae441e4bf69e17632bb1798bb56cfb4
toolssub_issue_writebefore_idc7b4548a5c32f2c45c00bdc0623fcbe84709343305e28c2d0f19f859e3ba5c04
toolssub_issue_writeissue_number0ec2e63e1a2a883d952d2a60cec7f5c1cf7aa6af1da3e8477bfb3d3f825a374f
toolssub_issue_writemethod70c3e687e87f43455200f2166483a85fb7a1d0ce1f6ad4bed7da4de0022a6d20
toolssub_issue_writeownerf0d16bda4d13e782383008c51526b15a1d34e639b794b48ce0e4aaa9929b2a4a
toolssub_issue_writereplace_parentee0549613454cbb10045f6efc25cc6d31b1a29de3daab4aceb13f1c7c3abc2bc
toolssub_issue_writerepoa2b1b3f24a4b0370e287023edc5ccf8c9b4d8af69e97a2f698cf3aa6dae8c558
toolssub_issue_writesub_issue_id7016cafc44f9fd8fa96bec3e4c8f108772df7aec76cf899e1a6471fa8abcc6b3
toolsupdate_pull_requestdescriptionbed4d74cfd86d23ab02749d6b4fffa5ba43c3290bfa7c9810514cf821e0563eb
toolsupdate_pull_requestbase33cd739abf299499afc569d0b3bf88e53d9833841bb0af1c9e7c3a61c827991a
toolsupdate_pull_requestbody23b7ce65508de7bbfb013fd25a384491f896e839f62116c96813ec6f53945e98
toolsupdate_pull_requestdraft2348581419a41833f3019df10f6c1508524410025f4f0054b6995e508227a03f
toolsupdate_pull_requestmaintainer_can_modify4c61cb2daa11e76d1bd1483894ba1f0c8d8430cf9011793815d3cbd017f341ad
toolsupdate_pull_requestownerf0d16bda4d13e782383008c51526b15a1d34e639b794b48ce0e4aaa9929b2a4a
toolsupdate_pull_requestpullNumber4f4b068a5c13d2a2547b7a13655111963fd97b583156f8cea0fd62c4a16f7375
toolsupdate_pull_requestrepoa2b1b3f24a4b0370e287023edc5ccf8c9b4d8af69e97a2f698cf3aa6dae8c558
toolsupdate_pull_requestreviewers9b88c448f5064122e6adde819b4b684e78631a4f6915b1bc5f4e67d29fef3c77
toolsupdate_pull_requeststate73d2abfb99c5146711a52488e33aa097ebd94cc1f1d14a0e21e9a6ed88709818
toolsupdate_pull_requesttitle522156b9b0af7eb99063569c92036931a3c9f027728ac6de8a70bcd0a1d3721c
toolsupdate_pull_request_branchdescriptionbb1dacdad1b56b12c6b26f7833d5b189a7827f66ea3d04917632eed63277d80d
toolsupdate_pull_request_branchexpectedHeadSha86e4137627e7ef4e6244395428104ab03f903b5c98f1a4be25279deb54f96c00
toolsupdate_pull_request_branchownerf0d16bda4d13e782383008c51526b15a1d34e639b794b48ce0e4aaa9929b2a4a
toolsupdate_pull_request_branchpullNumberc45ef7560e9361e486ad92db8751f01655bdaad2e8375566effb91d07090b338
toolsupdate_pull_request_branchrepoa2b1b3f24a4b0370e287023edc5ccf8c9b4d8af69e97a2f698cf3aa6dae8c558

💬 Questions? Open an issue or contact support@acuvity.ai . 📦 Contributions welcome!

Related Documents