Skip to main content
Glama
PhialsBasement

GitHub MCP Server Plus

GitHub MCP サーバー プラス

npmダウンロード

GitHub API 用の MCP サーバー。ファイル操作、リポジトリ管理、検索機能などを有効にします。

特徴

  • 自動ブランチ作成: ファイルを作成/更新したり変更をプッシュしたりするときに、ブランチが存在しない場合は自動的に作成されます。

  • 包括的なエラー処理: 一般的な問題に対する明確なエラーメッセージ

  • Git 履歴の保存: 強制プッシュなしで適切な Git 履歴を維持する操作

  • バッチ操作: コンテンツまたはファイルパスを使用した単一ファイルと複数ファイルの操作の両方をサポート

  • 高度な検索: コード、問題/PR、ユーザーの検索をサポート

ツール

  1. create_or_update_file

    • リポジトリ内の単一のファイルを作成または更新する

    • 入力:

      • owner (文字列): リポジトリの所有者(ユーザー名または組織)

      • repo (文字列): リポジトリ名

      • path (文字列): ファイルを作成/更新するパス

      • content (文字列): ファイルの内容

      • message (文字列): コミットメッセージ

      • branch (文字列): ファイルを作成/更新するブランチ

      • sha (オプションの文字列): 置き換えられるファイルのSHA (更新用)

    • 戻り値: ファイルの内容とコミットの詳細

  2. push_files_content

    • 1回のコミットで直接コンテンツを含む複数のファイルをプッシュする

    • 入力:

      • owner (文字列): リポジトリの所有者

      • repo (文字列): リポジトリ名

      • branch (文字列): プッシュ先のブランチ

      • files (配列): プッシュするファイル。 pathcontentがそれぞれ指定されます。

      • message (文字列): コミットメッセージ

    • 戻り値: 更新されたブランチ参照

  3. push_files_from_path

    • 1回のコミットでファイルシステムパスから複数のファイルをプッシュする

    • 入力:

      • owner (文字列): リポジトリの所有者

      • repo (文字列): リポジトリ名

      • branch (文字列): プッシュ先のブランチ

      • files (配列): プッシュするファイル。それぞれ以下の内容が含まれます。

        • path (文字列): リポジトリ内のターゲットパス

        • filepath (文字列): 読み取り元のファイルシステムのパス

      • message (文字列): コミットメッセージ

    • 戻り値: 更新されたブランチ参照

  4. search_repositories

    • GitHubリポジトリを検索する

    • 入力:

      • query (文字列): 検索クエリ

      • page (オプションの数値):ページ番号

      • perPage (オプションの数値):1ページあたりの結果数(最大100件)

    • 戻り値: リポジトリ検索結果

  5. create_repository

    • 新しいGitHubリポジトリを作成する

    • 入力:

      • name (文字列): リポジトリ名

      • description (オプションの文字列): リポジトリの説明

      • private (オプションのブール値): リポジトリを非公開にするかどうか

      • autoInit (オプションのブール値): READMEで初期化する

    • 戻り値: 作成されたリポジトリの詳細

  6. get_file_contents

    • ファイルまたはディレクトリの内容を取得する

    • 入力:

      • owner (文字列): リポジトリの所有者

      • repo (文字列): リポジトリ名

      • path (文字列): ファイル/ディレクトリへのパス

      • branch (オプションの文字列):コンテンツを取得するブランチ

    • 戻り値: ファイル/ディレクトリの内容

  7. create_issue

    • 新しい問題を作成する

    • 入力:

      • owner (文字列): リポジトリの所有者

      • repo (文字列): リポジトリ名

      • title (文字列): 問題のタイトル

      • body (オプションの文字列): 問題の説明

      • assignees (オプションの文字列[]):割り当てるユーザー名

      • labels (オプションの文字列[]):追加するラベル

      • milestone (オプションの番号):マイルストーン番号

    • 返品: 作成された問題の詳細

  8. create_pull_request

    • 新しいプルリクエストを作成する

    • 入力:

      • owner (文字列): リポジトリの所有者

      • repo (文字列): リポジトリ名

      • title (文字列): PRのタイトル

      • body (オプションの文字列): PRの説明

      • head (文字列): 変更を含むブランチ

      • base (文字列): マージ先のブランチ

      • draft (オプションのブール値): ドラフト PR として作成

      • maintainer_can_modify (オプションのブール値): メンテナーによる編集を許可する

    • 戻り値: 作成されたプルリクエストの詳細

  9. fork_repository

    • リポジトリをフォークする

    • 入力:

      • owner (文字列): リポジトリの所有者

      • repo (文字列): リポジトリ名

      • organization (オプションの文字列):フォーク先の組織

    • 戻り値: フォークされたリポジトリの詳細

  10. create_branch

  • 新しいブランチを作成する

  • 入力:

    • owner (文字列): リポジトリの所有者

    • repo (文字列): リポジトリ名

    • branch (文字列): 新しいブランチの名前

    • from_branch (オプションの文字列): ソースブランチ (デフォルトはリポジトリのデフォルト)

  • 戻り値: 作成されたブランチ参照

  1. list_issues

  • リポジトリの問題の一覧表示とフィルタリング

  • 入力:

    • owner (文字列): リポジトリの所有者

    • repo (文字列): リポジトリ名

    • state (オプションの文字列):状態(「open」、「closed」、「all」)でフィルタリング

    • labels (オプションの文字列[]):ラベルでフィルタリング

    • sort (オプションの文字列): ('created'、'updated'、'comments') で並べ替え

    • direction (オプションの文字列):並べ替えの方向('asc'、'desc')

    • since (オプションの文字列): 日付でフィルタリング (ISO 8601 タイムスタンプ)

    • page (オプションの数字): ページ番号

    • per_page (オプションの数値):ページあたりの結果数

  • 戻り値: 問題の詳細の配列

  1. update_issue

  • 既存の問題を更新する

  • 入力:

    • owner (文字列): リポジトリの所有者

    • repo (文字列): リポジトリ名

    • issue_number (数値): 更新する問題番号

    • title (オプションの文字列):新しいタイトル

    • body (オプションの文字列): 新しい説明

    • state (オプションの文字列):新しい状態(「open」または「closed」)

    • labels (オプションの文字列[]):新しいラベル

    • assignees (オプションの文字列[]): 新しい担当者

    • milestone (オプションの番号):新しいマイルストーン番号

  • 返品: 問題の詳細を更新しました

  1. add_issue_comment

  • 問題にコメントを追加する

  • 入力:

    • owner (文字列): リポジトリの所有者

    • repo (文字列): リポジトリ名

    • issue_number (数値): コメントする問題番号

    • body (文字列): コメントテキスト

  • 戻り値: 作成されたコメントの詳細

  1. search_code

  • GitHubリポジトリ全体でコードを検索する

  • 入力:

    • q (文字列): GitHubコード検索構文を使用した検索クエリ

    • sort (オプションの文字列): ソートフィールド ('indexed' のみ)

    • order (オプションの文字列): ソート順 ('asc' または 'desc')

    • per_page (オプションの数値):1ページあたりの結果数(最大100件)

    • page (オプションの数字):ページ番号

  • 戻り値: リポジトリコンテキストを含むコード検索結果

  1. search_issues

  • 問題とプルリクエストを検索する

  • 入力:

    • q (文字列): GitHub の問題検索構文を使用した検索クエリ

    • sort (オプションの文字列): 並べ替えフィールド (コメント、反応、作成など)

    • order (オプションの文字列): ソート順 ('asc' または 'desc')

    • per_page (オプションの数値):1ページあたりの結果数(最大100件)

    • page (オプションの数字):ページ番号

  • 戻り値: 問題とプルリクエストの検索結果

  1. search_users

  • GitHubユーザーを検索

  • 入力:

    • q (文字列): GitHubユーザーの検索構文を使用した検索クエリ

    • sort (オプションの文字列): 並べ替えフィールド (フォロワー、リポジトリ、参加)

    • order (オプションの文字列): ソート順 ('asc' または 'desc')

    • per_page (オプションの数値):1ページあたりの結果数(最大100件)

    • page (オプションの数字):ページ番号

  • 返されるもの: ユーザー検索結果

  1. list_commits

  • リポジトリ内のブランチのコミットを取得します

  • 入力:

    • owner (文字列): リポジトリの所有者

    • repo (文字列): リポジトリ名

    • page (オプションの文字列):ページ番号

    • per_page (オプションの文字列):ページあたりのレコード数

    • sha (オプションの文字列): ブランチ名

  • 戻り値: コミットのリスト

  1. get_issue

  • リポジトリ内の問題の内容を取得します

  • 入力:

    • owner (文字列): リポジトリの所有者

    • repo (文字列): リポジトリ名

    • issue_number (数値): 取得する問題番号

  • 戻り値: GitHub Issueオブジェクトと詳細

  1. get_pull_request

  • 特定のプルリクエストの詳細を取得する

  • 入力:

    • owner (文字列): リポジトリの所有者

    • repo (文字列): リポジトリ名

    • pull_number (数値): プルリクエスト番号

  • 戻り値: 差分とレビューステータスを含むプルリクエストの詳細

  1. list_pull_requests

  • リポジトリのプルリクエストの一覧表示とフィルタリング

  • 入力:

    • owner (文字列): リポジトリの所有者

    • repo (文字列): リポジトリ名

    • state (オプションの文字列):状態(「open」、「closed」、「all」)でフィルタリング

    • head (オプションの文字列): ヘッドユーザー/組織とブランチでフィルタリング

    • base (オプションの文字列): ベースブランチでフィルタリング

    • sort (オプションの文字列): ('created'、'updated'、'popularity'、'long-running') で並べ替え

    • direction (オプションの文字列):並べ替えの方向('asc'、'desc')

    • per_page (オプションの数値):1ページあたりの結果数(最大100件)

    • page (オプションの数字):ページ番号

  • 戻り値: プルリクエストの詳細の配列

  1. create_pull_request_review

  • プルリクエストのレビューを作成する

  • 入力:

    • owner (文字列): リポジトリの所有者

    • repo (文字列): リポジトリ名

    • pull_number (数値): プルリクエスト番号

    • body (文字列): レビューコメントのテキスト

    • event (文字列):レビューアクション('APPROVE'、'REQUEST_CHANGES'、'COMMENT')

    • commit_id (オプションの文字列): レビューするコミットのSHA

    • comments (オプションの配列): 行固有のコメント。それぞれ次の内容が含まれます。

      • path (文字列): ファイルパス

      • position (数値):diff内の行位置

      • body (文字列): コメントテキスト

  • 返品: 作成されたレビューの詳細

  1. merge_pull_request

  • プルリクエストをマージする

  • 入力:

    • owner (文字列): リポジトリの所有者

    • repo (文字列): リポジトリ名

    • pull_number (数値): プルリクエスト番号

    • commit_title (オプションの文字列): マージコミットのタイトル

    • commit_message (オプションの文字列):マージコミットの詳細

    • merge_method (オプションの文字列): マージ方法 ('merge'、'squash'、'rebase')

  • 戻り値: マージ結果の詳細

  1. get_pull_request_files

  • プルリクエストで変更されたファイルのリストを取得する

  • 入力:

    • owner (文字列): リポジトリの所有者

    • repo (文字列): リポジトリ名

    • pull_number (数値): プルリクエスト番号

  • 戻り値: パッチとステータスの詳細を含む変更されたファイルの配列

  1. get_pull_request_status

  • プルリクエストのすべてのステータスチェックを組み合わせたステータスを取得します

  • 入力:

    • owner (文字列): リポジトリの所有者

    • repo (文字列): リポジトリ名

    • pull_number (数値): プルリクエスト番号

  • 戻り値: ステータスチェックの結果と個々のチェックの詳細を組み合わせたもの

  1. update_pull_request_branch

  • ベースブランチからの最新の変更でプルリクエストブランチを更新する

  • 入力:

    • owner (文字列): リポジトリの所有者

    • repo (文字列): リポジトリ名

    • pull_number (数値): プルリクエスト番号

    • expected_head_sha (オプションの文字列): プルリクエストのHEAD参照の予想されるSHA

  • 戻り値: ブランチが更新されたときの成功メッセージ

  1. get_pull_request_comments

  • プルリクエストのレビューコメントを取得する

  • 入力:

    • owner (文字列): リポジトリの所有者

    • repo (文字列): リポジトリ名

    • pull_number (数値): プルリクエスト番号

  • 戻り値: プルリクエストのレビューコメントの配列

  1. get_pull_request_reviews

  • プルリクエストのレビューを取得する

  • 入力:

    • owner (文字列): リポジトリの所有者

    • repo (文字列): リポジトリ名

    • pull_number (数値): プルリクエスト番号

  • 戻り値: プルリクエストレビューの配列

Related MCP server: mcp-github

検索クエリ構文

コード検索

  • language:javascript : プログラミング言語で検索

  • repo:owner/name : 特定のリポジトリを検索

  • path:app/src : 特定のパスで検索

  • extension:js : ファイル拡張子で検索

  • 例: q: "import express" language:typescript path:src/

問題検索

  • is:issueまたはis:pr : タイプでフィルタリング

  • is:openまたはis:closed : 状態でフィルタリング

  • label:bug : ラベルで検索

  • author:username :著者で検索

  • 例: q: "memory leak" is:issue is:open label:bug

ユーザー検索

  • type:userまたはtype:org : アカウントの種類でフィルタリング

  • followers:>1000 : フォロワー数でフィルタリング

  • location:London : 場所で検索

  • 例: q: "fullstack developer" location:London followers:>100

詳細な検索構文については、 GitHub の検索ドキュメントを参照してください。

設定

個人アクセストークン

適切な権限を持つGitHub 個人アクセス トークンを作成します

  • 個人アクセストークンに移動します(GitHubの設定>開発者設定)

  • このトークンでアクセスするリポジトリを選択します(パブリック、すべて、または選択)

  • repoスコープ(「プライベートリポジトリのフルコントロール」)を持つトークンを作成します

    • あるいは、パブリックリポジトリのみで作業する場合は、 public_repoスコープのみを選択します。

  • 生成されたトークンをコピーする

Claude Desktopでの使用

Claude Desktop でこれを使用するには、 claude_desktop_config.jsonに以下を追加します。

ドッカー

{
  "mcpServers": {
    "github": {
      "command": "docker",
      "args": [
        "run",
        "-i",
        "--rm",
        "-e",
        "GITHUB_PERSONAL_ACCESS_TOKEN",
        "mcp/github"
      ],
      "env": {
        "GITHUB_PERSONAL_ACCESS_TOKEN": "<YOUR_TOKEN>"
      }
    }
  }
}

NPX

{
  "mcpServers": {
    "github": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-github"
      ],
      "env": {
        "GITHUB_PERSONAL_ACCESS_TOKEN": "<YOUR_TOKEN>"
      }
    }
  }
}

建てる

Dockerビルド:

docker build -t mcp/github -f src/github/Dockerfile .

ライセンス

このMCPサーバーはMITライセンスに基づいてライセンスされています。つまり、MITライセンスの条件に従って、ソフトウェアを自由に使用、改変、配布することができます。詳細については、プロジェクトリポジトリのLICENSEファイルをご覧ください。

Available Tools

18 tools
add_issue_commentC

Add a comment to an existing issue

ParametersJSON Schema
NameRequiredDescriptionDefault
ownerYes
repoYes
issue_numberYes
bodyYes

TDQS

C2.8/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries full burden for behavioral disclosure. While 'Add a comment' implies a write/mutation operation, it doesn't disclose permission requirements, rate limits, whether comments are editable/deletable, or what happens on success/failure. For a mutation tool with zero annotation coverage, this is insufficient.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, efficient sentence that states the core purpose without unnecessary words. It's appropriately sized for a straightforward tool and front-loads the essential information.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a mutation tool with 4 parameters, 0% schema coverage, no annotations, and no output schema, the description is inadequate. It doesn't explain parameter meanings, behavioral implications, or what to expect upon execution. The context demands more comprehensive documentation than provided.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters2/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 0%, meaning all 4 parameters are undocumented in the schema. The description provides no information about what 'owner', 'repo', 'issue_number', or 'body' mean, their formats, or constraints. It doesn't compensate for the complete lack of schema documentation.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the action ('Add a comment') and target resource ('to an existing issue'), providing a specific verb+resource combination. However, it doesn't distinguish this tool from its sibling 'update_issue', which might also handle comments, leaving room for ambiguity.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides no guidance on when to use this tool versus alternatives like 'update_issue' or 'create_issue'. It mentions 'existing issue' which implies a prerequisite, but doesn't explicitly state when-not-to-use scenarios or reference sibling tools for different contexts.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

create_branchC

Create a new branch in a GitHub repository

ParametersJSON Schema
NameRequiredDescriptionDefault
ownerYesRepository owner (username or organization)
repoYesRepository name
branchYesName for the new branch
from_branchNoOptional: source branch to create from (defaults to the repository's default branch)

TDQS

C2.9/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description carries the full burden of behavioral disclosure. While 'Create' implies a mutation, the description lacks details on permissions required, whether the operation is idempotent, error handling (e.g., if the branch already exists), or rate limits. This is inadequate for a mutation tool with zero annotation coverage.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, efficient sentence that directly states the tool's purpose without unnecessary words. It's appropriately sized and front-loaded, making it easy to parse quickly.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the complexity of a GitHub branch creation tool (a mutation with potential side effects), no annotations, and no output schema, the description is insufficient. It doesn't cover behavioral aspects like authentication needs, error cases, or return values, leaving significant gaps for an AI agent to use it correctly.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The description adds no parameter-specific information beyond what's in the input schema, which has 100% coverage with clear descriptions for all four parameters. This meets the baseline of 3, as the schema fully documents the parameters, but the description doesn't enhance understanding with additional context or examples.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the action ('Create') and resource ('new branch in a GitHub repository'), making the purpose immediately understandable. However, it doesn't differentiate this tool from sibling tools like 'create_repository' or 'create_pull_request' beyond the obvious resource difference, missing explicit sibling distinction.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides no guidance on when to use this tool versus alternatives. It doesn't mention prerequisites (e.g., needing repository access), when not to use it (e.g., for existing branches), or how it relates to siblings like 'fork_repository' or 'create_pull_request' for branch-related workflows.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

create_issueC

Create a new issue in a GitHub repository

ParametersJSON Schema
NameRequiredDescriptionDefault
ownerYes
repoYes
titleYes
bodyNo
assigneesNo
milestoneNo
labelsNo

TDQS

C2.8/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries full burden for behavioral disclosure. It states this is a creation operation but doesn't mention permission requirements, rate limits, what happens on success/failure, or whether it's idempotent. For a write operation with zero annotation coverage, this leaves significant behavioral gaps.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, efficient sentence with zero wasted words. It's appropriately sized for a basic tool description and front-loads the essential information about what the tool does.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a 7-parameter write operation with no annotations, no output schema, and 0% schema description coverage, the description is inadequate. It doesn't explain return values, error conditions, authentication needs, or parameter semantics, leaving the agent with insufficient context to use the tool effectively.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters2/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

With 0% schema description coverage for all 7 parameters, the description provides no parameter information beyond what's inferred from the tool name. It doesn't explain what 'owner', 'repo', 'title', 'body', 'assignees', 'milestone', or 'labels' mean or how they should be formatted, failing to compensate for the schema's lack of descriptions.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the action ('Create a new issue') and target resource ('in a GitHub repository'), providing a specific verb+resource combination. However, it doesn't differentiate from sibling tools like 'update_issue' or 'add_issue_comment', which would require explicit comparison to earn a 5.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides no guidance on when to use this tool versus alternatives like 'update_issue' for modifying existing issues or 'add_issue_comment' for adding comments. There's no mention of prerequisites, context, or exclusions, leaving the agent with minimal usage direction.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

create_or_update_fileC

Create or update a single file in a GitHub repository

ParametersJSON Schema
NameRequiredDescriptionDefault
ownerYesRepository owner (username or organization)
repoYesRepository name
pathYesPath where to create/update the file
contentYesContent of the file
messageYesCommit message
branchYesBranch to create/update the file in
shaNoSHA of the file being replaced (required when updating existing files)

TDQS

C2.9/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries the full burden of behavioral disclosure. It states the tool can 'create or update' files, implying mutation, but doesn't mention authentication requirements, rate limits, error conditions, or what happens when creating versus updating (e.g., the 'sha' parameter requirement for updates). This leaves significant gaps for an agent to understand the tool's behavior.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, efficient sentence that front-loads the core purpose. There's no wasted language or redundancy, making it easy to parse quickly.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a mutation tool with 7 parameters, no annotations, and no output schema, the description is insufficient. It doesn't cover behavioral aspects like authentication, error handling, or the create/update distinction, leaving the agent with incomplete context to use the tool effectively.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The schema description coverage is 100%, so all parameters are documented in the schema. The description adds no additional parameter semantics beyond what's already in the schema (e.g., it doesn't explain the relationship between 'sha' and updating files, though the schema hints at this). This meets the baseline expectation when schema coverage is complete.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the action ('create or update') and resource ('a single file in a GitHub repository'), making the purpose immediately understandable. However, it doesn't explicitly differentiate this tool from sibling tools like 'push_files_content' or 'push_files_from_path', which might have overlapping functionality.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides no guidance on when to use this tool versus alternatives. There's no mention of prerequisites, when to choose this over sibling tools like 'push_files_content', or any constraints on usage. The agent must infer usage from the tool name alone.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

create_pull_requestC

Create a new pull request in a GitHub repository

ParametersJSON Schema
NameRequiredDescriptionDefault
ownerYesRepository owner (username or organization)
repoYesRepository name
titleYesPull request title
bodyNoPull request body/description
headYesThe name of the branch where your changes are implemented
baseYesThe name of the branch you want the changes pulled into
draftNoWhether to create the pull request as a draft
maintainer_can_modifyNoWhether maintainers can modify the pull request

TDQS

C2.9/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries full burden for behavioral disclosure but offers minimal information. It states the tool creates a pull request but doesn't mention authentication requirements, rate limits, what happens on success/failure, whether it triggers notifications, or if it's idempotent. For a write operation with zero annotation coverage, this leaves critical behavioral traits undocumented.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, efficient sentence that states the core functionality without unnecessary words. It's appropriately sized and front-loaded, making it easy to parse quickly. Every word earns its place by conveying the essential action and target.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a complex write operation with 8 parameters, no annotations, and no output schema, the description is insufficient. It doesn't explain what the tool returns, error conditions, or behavioral nuances like GitHub-specific constraints. The high parameter count and mutation nature demand more contextual information than provided.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, providing clear documentation for all 8 parameters. The description adds no parameter-specific information beyond what's in the schema, so it meets the baseline of 3. However, it doesn't compensate for any gaps since there are none in the schema.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the action ('create') and resource ('pull request in a GitHub repository'), making the purpose immediately understandable. However, it doesn't distinguish this tool from sibling tools like create_issue or create_repository, which would require mentioning it's specifically for code review workflows between branches.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides no guidance on when to use this tool versus alternatives. It doesn't mention prerequisites (e.g., needing existing branches), contrast with create_issue for non-code changes, or specify when draft vs. regular pull requests are appropriate. Without this context, agents must infer usage from the tool name alone.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

create_repositoryC

Create a new GitHub repository in your account

ParametersJSON Schema
NameRequiredDescriptionDefault
nameYesRepository name
descriptionNoRepository description
privateNoWhether the repository should be private
autoInitNoInitialize with README.md

TDQS

C2.9/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries the full burden of behavioral disclosure. While 'Create' implies a write operation, the description doesn't mention authentication requirements, rate limits, what happens on success/failure, or whether this is a destructive operation that creates permanent resources. It lacks essential context for safe and effective use.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, clear sentence with zero wasted words. It's perfectly front-loaded and communicates the core purpose immediately without unnecessary elaboration.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a write operation with no annotations and no output schema, the description is insufficient. It doesn't explain what happens after creation (what's returned), authentication needs, error conditions, or how this differs from similar tools like fork_repository. The context signals indicate this is a non-trivial operation that requires more guidance.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

With 100% schema description coverage, the schema already documents all 4 parameters thoroughly. The description adds no parameter-specific information beyond what's in the schema. This meets the baseline expectation when schema coverage is high.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the action ('Create') and resource ('new GitHub repository in your account'), making the purpose immediately understandable. However, it doesn't differentiate this tool from sibling tools like 'fork_repository' or explain why to use create_repository versus fork_repository when both create repositories.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides no guidance on when to use this tool versus alternatives. There's no mention of prerequisites (like authentication), when to use create_repository versus fork_repository, or any limitations (like rate limits or account restrictions).

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

fork_repositoryB

Fork a GitHub repository to your account or specified organization

ParametersJSON Schema
NameRequiredDescriptionDefault
ownerYesRepository owner (username or organization)
repoYesRepository name
organizationNoOptional: organization to fork to (defaults to your personal account)

TDQS

B3.4/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries full burden but only states the basic action. It doesn't disclose behavioral traits like authentication requirements, rate limits, whether the fork inherits all branches/tags, what happens if the target organization lacks permissions, or what the response contains. For a mutation tool with zero annotation coverage, this is inadequate.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, efficient sentence with zero waste. It's front-loaded with the core action and includes essential scope information. Every word earns its place without redundancy.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a mutation tool with no annotations and no output schema, the description is incomplete. It doesn't explain what the tool returns, error conditions, or important behavioral constraints. Given the complexity of repository forking (permissions, inheritance, etc.), more context is needed beyond the basic action statement.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, so the schema already documents all three parameters thoroughly. The description adds no additional parameter semantics beyond what's in the schema (e.g., no examples, format details, or edge cases). Baseline 3 is appropriate when schema does the heavy lifting.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the specific action ('Fork') and resource ('a GitHub repository'), with precise scope ('to your account or specified organization'). It distinguishes from siblings like create_repository (which creates new repos) and other tools that modify existing repos rather than creating forks.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies usage context by specifying the target ('your account or specified organization'), but doesn't explicitly state when to use this vs alternatives like create_repository or when not to use it. No prerequisites or exclusions are mentioned, leaving some guidance gaps.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

get_file_contentsC

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

ParametersJSON Schema
NameRequiredDescriptionDefault
ownerYesRepository owner (username or organization)
repoYesRepository name
pathYesPath to the file or directory
branchNoBranch to get contents from

TDQS

C2.9/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries full burden for behavioral disclosure. While 'Get the contents' implies a read operation, it doesn't specify whether this requires authentication, rate limits, what happens with large directories, or the format of returned content. For a tool with 4 parameters and no annotation coverage, this is insufficient.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, efficient sentence that communicates the core purpose without unnecessary words. It's appropriately sized for a straightforward tool and front-loads the essential information.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a tool with 4 parameters, no annotations, and no output schema, the description is inadequate. It doesn't explain what 'contents' means (file content vs metadata), how directories are handled, error conditions, or return format. The description should provide more context given the lack of structured information elsewhere.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The schema description coverage is 100%, so all parameters are documented in the schema. The description adds no additional parameter semantics beyond what's already in the schema - it doesn't explain relationships between parameters or provide usage examples. This meets the baseline for high schema coverage.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the action ('Get the contents') and resource ('file or directory from a GitHub repository'), making the purpose immediately understandable. However, it doesn't differentiate from sibling tools like 'search_code' or 'list_commits' that might also retrieve repository content in different ways.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides no guidance on when to use this tool versus alternatives. There's no mention of when this tool is appropriate versus using 'search_code' for broader searches or 'list_commits' for commit history, nor any prerequisites or constraints for usage.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

get_issueC

Get details of a specific issue in a GitHub repository.

ParametersJSON Schema
NameRequiredDescriptionDefault
ownerYes
repoYes
issue_numberYes

TDQS

C2.8/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description carries the full burden. It states the action ('Get details') but does not disclose behavioral traits like authentication needs, rate limits, error handling, or what details are returned. For a read operation with zero annotation coverage, this is a significant gap in transparency.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, efficient sentence that directly states the tool's purpose without unnecessary words. It is appropriately sized and front-loaded, with every part earning its place.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool's complexity (3 required parameters), lack of annotations, and no output schema, the description is incomplete. It does not explain return values, error cases, or usage context, making it inadequate for effective tool selection and invocation by an AI agent.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters2/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 0%, so the schema provides no parameter details. The description does not add any meaning beyond the parameter names (owner, repo, issue_number), such as explaining what these represent (e.g., GitHub username, repository name, issue ID) or their formats. It fails to compensate for the low coverage.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the verb ('Get details') and resource ('specific issue in a GitHub repository'), making the purpose unambiguous. However, it does not explicitly differentiate from sibling tools like 'list_issues' or 'search_issues', which would require a more specific scope or distinction.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides no guidance on when to use this tool versus alternatives such as 'list_issues' for multiple issues or 'search_issues' for filtered searches. It lacks explicit context, prerequisites, or exclusions, leaving usage decisions to inference.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

list_commitsC

Get list of commits of a branch in a GitHub repository

ParametersJSON Schema
NameRequiredDescriptionDefault
ownerYes
repoYes
shaNo
pageNo
perPageNo

TDQS

C2.8/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries the full burden of behavioral disclosure but offers minimal information. It implies a read-only operation ('Get list'), but doesn't specify whether authentication is required, if there are rate limits, how pagination works (given the 'page' and 'perPage' parameters), or what the output format looks like. This is inadequate for a tool with multiple parameters and no structured annotations.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, clear sentence with zero wasted words. It's front-loaded with the core purpose ('Get list of commits'), making it easy to scan and understand quickly. Every word earns its place, achieving optimal conciseness.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the complexity (5 parameters, 0% schema coverage, no annotations, no output schema), the description is incomplete. It doesn't explain parameter meanings, behavioral traits like pagination or authentication, or what the output contains. For a tool that likely returns structured commit data, this leaves significant gaps for an AI agent to use it effectively.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters2/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The schema description coverage is 0%, meaning none of the 5 parameters are documented in the schema. The description only vaguely references 'branch' (implied by 'sha' parameter) and 'GitHub repository' (implied by 'owner' and 'repo'), but doesn't explain what 'sha', 'page', or 'perPage' mean or how they affect the output. It adds minimal value beyond the bare schema.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the action ('Get list of commits') and the resource ('of a branch in a GitHub repository'), making the purpose immediately understandable. However, it doesn't explicitly differentiate this tool from potential sibling tools like 'search_code' or 'get_file_contents' that might also involve repository data, which prevents a perfect score.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides no guidance on when to use this tool versus alternatives. It doesn't mention prerequisites (e.g., authentication needs), compare it to siblings like 'search_code' for finding specific commits, or indicate scenarios where it's preferred over other tools. This leaves the agent with minimal context for selection.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

list_issuesC

List issues in a GitHub repository with filtering options

ParametersJSON Schema
NameRequiredDescriptionDefault
ownerYes
repoYes
directionNo
labelsNo
pageNo
per_pageNo
sinceNo
sortNo
stateNo

TDQS

C2.8/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries full burden for behavioral disclosure but only states the basic action. It doesn't mention whether this is a read-only operation, if it requires authentication, how pagination works (despite 'page' and 'per_page' parameters), rate limits, or what the output format looks like. This leaves critical behavioral traits undocumented.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, efficient sentence that front-loads the core purpose ('List issues in a GitHub repository') and adds essential context ('with filtering options') without any wasted words. It's appropriately sized for the tool's complexity.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool's complexity (9 parameters, no annotations, no output schema), the description is incomplete. It doesn't explain the return values, pagination behavior, authentication requirements, or how to interpret parameters like 'direction' or 'sort'. For a listing tool with rich filtering options, more context is needed to use it effectively.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters2/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 0%, so the description must compensate but only vaguely mentions 'filtering options' without explaining any of the 9 parameters. It doesn't clarify what 'owner', 'repo', or other parameters mean, their formats (e.g., 'since' as timestamp), or how filtering works with arrays like 'labels'. The description adds minimal value beyond the bare schema.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the verb ('List') and resource ('issues in a GitHub repository') with scope ('with filtering options'), making the purpose specific and understandable. However, it doesn't explicitly distinguish this tool from sibling tools like 'search_issues' or 'get_issue', which handle similar resources but with different approaches.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides no guidance on when to use this tool versus alternatives like 'search_issues' or 'get_issue'. It mentions filtering options but doesn't specify scenarios where this listing approach is preferred over searching or retrieving individual issues, leaving the agent without usage context.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

push_files_contentA

Push multiple files with direct content to a GitHub repository in a single commit

ParametersJSON Schema
NameRequiredDescriptionDefault
ownerYesRepository owner (username or organization)
repoYesRepository name
branchYesBranch to push to (e.g., 'main' or 'master')
filesYesArray of files to push with their content
messageYesCommit message

TDQS

A3.7/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries full burden for behavioral disclosure. It states the tool performs a write operation ('push') but doesn't mention critical behavioral aspects: whether it overwrites existing files, requires authentication/permissions, handles errors, or has rate limits. For a mutation tool with zero annotation coverage, this leaves significant gaps in understanding how it behaves beyond the basic action.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, well-structured sentence that efficiently communicates the core functionality without unnecessary words. It's front-loaded with the main action and includes all essential elements: what (push files with content), where (GitHub repository), and how (single commit). Every word earns its place.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a mutation tool with 5 parameters, 100% schema coverage, but no annotations or output schema, the description is minimally complete. It covers the basic purpose and scope but lacks behavioral details (overwrite behavior, error handling, authentication needs) and output information. Given the complexity of a GitHub file-push operation, more context would be helpful, though the schema handles parameter documentation adequately.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, so all parameters are documented in the schema. The description adds minimal value beyond the schema by implying 'multiple files' (matching the 'files' array parameter) and 'single commit' (related to the 'message' parameter), but doesn't provide additional semantic context about parameter usage, constraints, or relationships. This meets the baseline for high schema coverage.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the specific action ('push multiple files with direct content'), the target resource ('to a GitHub repository'), and the operational scope ('in a single commit'). It distinguishes itself from sibling tools like 'push_files_from_path' by specifying 'direct content' rather than file paths, and from 'create_or_update_file' by handling multiple files in one commit.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies usage context by specifying 'multiple files with direct content' and 'single commit', suggesting it's for batch updates rather than individual file operations. However, it doesn't explicitly state when to use this tool versus alternatives like 'push_files_from_path' (which likely uses file system paths) or 'create_or_update_file' (which handles single files). The context is clear but lacks explicit comparison guidance.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

push_files_from_pathA

Push multiple files from filesystem paths to a GitHub repository in a single commit

ParametersJSON Schema
NameRequiredDescriptionDefault
ownerYesRepository owner (username or organization)
repoYesRepository name
branchYesBranch to push to (e.g., 'main' or 'master')
filesYesArray of files to push from filesystem paths
messageYesCommit message

TDQS

A3.9/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description carries the full burden. It discloses the batch operation and single-commit behavior, which is useful. However, it lacks details on permissions required, error handling (e.g., if files don't exist), rate limits, or whether it overwrites existing files. For a mutation tool with zero annotation coverage, this leaves gaps in behavioral understanding.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, efficient sentence that front-loads the core purpose with no wasted words. It clearly communicates the tool's function without redundancy or unnecessary elaboration, making it easy to parse quickly.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a mutation tool with 5 parameters and no annotations or output schema, the description is adequate but incomplete. It covers the basic operation but lacks details on behavioral aspects (e.g., side effects, error cases) and doesn't hint at return values. Given the complexity, more context would be beneficial for safe and effective use.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, so the schema already documents all 5 parameters clearly. The description adds minimal value beyond the schema by implying 'multiple files' and 'filesystem paths,' but doesn't explain parameter interactions (e.g., how 'files' array works) or provide examples. Baseline 3 is appropriate when the schema does the heavy lifting.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the specific action ('push multiple files'), resource ('from filesystem paths to a GitHub repository'), and scope ('in a single commit'). It distinguishes itself from sibling tools like 'push_files_content' (which likely pushes content directly rather than from filesystem paths) and 'create_or_update_file' (which handles individual files).

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies usage context by specifying 'multiple files from filesystem paths' and 'single commit,' suggesting it's for batch operations rather than individual file updates. However, it doesn't explicitly state when to use this tool versus alternatives like 'push_files_content' or 'create_or_update_file,' nor does it mention prerequisites (e.g., authentication, file existence).

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

search_codeC

Search for code across GitHub repositories

ParametersJSON Schema
NameRequiredDescriptionDefault
qYes
orderNo
pageNo
per_pageNo

TDQS

C2.4/5.0
Behavior1/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description carries the full burden of behavioral disclosure. The description only states what the tool does at a high level ('Search for code across GitHub repositories') without revealing any behavioral traits like authentication requirements, rate limits, pagination behavior, error conditions, or what the search results look like. For a search tool with zero annotation coverage, this is completely inadequate.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, efficient sentence that gets straight to the point. There's no wasted verbiage or unnecessary elaboration. It's appropriately sized for a basic tool description, though this conciseness comes at the cost of completeness.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness1/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the complexity of a search operation with 4 parameters, no annotations, and no output schema, the description is completely inadequate. It doesn't explain what the tool returns, how results are structured, authentication requirements, rate limits, or parameter usage. For a search tool that likely returns complex results, this minimal description leaves the agent with insufficient information to use the tool effectively.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters1/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The description provides no information about parameters beyond what's implied by the tool name. With 0% schema description coverage and 4 parameters (q, order, page, per_page), the description doesn't explain what 'q' represents (search query syntax?), what 'order' sorts by, or how pagination works. The description fails to compensate for the complete lack of schema documentation.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the action ('Search for code') and resource ('across GitHub repositories'), which is specific and unambiguous. However, it doesn't differentiate this from sibling tools like search_issues, search_repositories, or search_users, which all perform different types of searches within GitHub.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides no guidance on when to use this tool versus alternatives. There's no mention of when to choose search_code over other search tools (search_issues, search_repositories, search_users) or when to use it versus browsing tools like get_file_contents. The agent must infer usage from the name alone.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

search_issuesC

Search for issues and pull requests across GitHub repositories

ParametersJSON Schema
NameRequiredDescriptionDefault
qYes
orderNo
pageNo
per_pageNo
sortNo

TDQS

C2.8/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description carries the full burden of behavioral disclosure. It states the action 'search' but doesn't describe what the search returns (e.g., paginated results, error handling, rate limits, or authentication needs). For a search tool with 5 parameters and no annotation coverage, this is a significant gap in transparency.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, efficient sentence that front-loads the core purpose without unnecessary words. It's appropriately sized for a search tool, making it easy for an agent to parse quickly.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the complexity of 5 parameters (including enums for 'order' and 'sort'), 0% schema description coverage, no annotations, and no output schema, the description is incomplete. It doesn't explain the search behavior, result format, or parameter usage, leaving critical gaps for an agent to invoke the tool correctly.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters2/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The schema description coverage is 0%, meaning none of the 5 parameters are documented in the schema. The description doesn't add any parameter semantics—it doesn't explain what 'q' represents (e.g., search query syntax), the meaning of 'order', 'page', 'per_page', or 'sort' options. This fails to compensate for the lack of schema documentation.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the verb 'search' and the resources 'issues and pull requests' with the scope 'across GitHub repositories', which is specific and actionable. However, it doesn't explicitly distinguish this tool from sibling tools like 'list_issues' or 'search_code', which would require more precise differentiation to achieve a score of 5.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides no guidance on when to use this tool versus alternatives such as 'list_issues' (for issues in a specific repository) or 'search_code' (for code search). There's no mention of prerequisites, context, or exclusions, leaving the agent to infer usage from the tool name alone.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

search_repositoriesC

Search for GitHub repositories

ParametersJSON Schema
NameRequiredDescriptionDefault
queryYesSearch query (see GitHub search syntax)
pageNoPage number for pagination (default: 1)
perPageNoNumber of results per page (default: 30, max: 100)

TDQS

C2.9/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries full burden for behavioral disclosure but provides minimal information. It states this is a search operation but doesn't describe what the search returns (repository metadata, full objects?), authentication requirements, rate limits, error conditions, or whether this is a read-only operation. The agent must infer behavior from the name alone.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is maximally concise - a single clear sentence that states exactly what the tool does. There's zero wasted language, no redundancy, and it's perfectly front-loaded with the core functionality. Every word earns its place in this minimal description.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a search tool with no annotations and no output schema, the description is insufficiently complete. It doesn't explain what format results come in, what fields are returned, whether there are limitations on search scope, or how results are structured. The agent knows what to search for but not what to expect back or under what constraints the search operates.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, so the schema already documents all three parameters thoroughly. The description adds no parameter information beyond what's in the schema - it doesn't explain search syntax examples, typical query patterns, or how results are ordered. The baseline of 3 is appropriate when the schema does all the parameter documentation work.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the action ('Search for') and resource ('GitHub repositories'), making the purpose immediately understandable. However, it doesn't differentiate this tool from sibling search tools like 'search_code', 'search_issues', or 'search_users' - all of which also search GitHub but for different resource types.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides no guidance on when to use this tool versus alternatives. It doesn't mention when this tool is appropriate compared to other search tools (search_code, search_issues, search_users) or when to use it versus browsing repositories through other means. There's no indication of prerequisites, limitations, or typical use cases.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

search_usersC

Search for users on GitHub

ParametersJSON Schema
NameRequiredDescriptionDefault
qYes
orderNo
pageNo
per_pageNo
sortNo

TDQS

C2.8/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries the full burden of behavioral disclosure. 'Search for users' implies a read-only operation, but it doesn't disclose important behavioral traits like pagination behavior (implied by page/per_page parameters), rate limits, authentication requirements, or what the response format looks like. The description is minimal and lacks behavioral context.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is maximally concise with a single clear sentence that states the core purpose. There's no wasted language or unnecessary elaboration, making it efficiently front-loaded.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a search tool with 5 parameters (one required), no annotations, no output schema, and 0% schema description coverage, the description is inadequate. It doesn't provide enough context about how to use the tool effectively, what parameters mean, or what to expect in return. The minimal description doesn't compensate for the missing structured information.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters2/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

With 0% schema description coverage for 5 parameters, the description provides no parameter information beyond what's implied by the tool name. It doesn't explain what 'q' represents (search query), what the order/sort options mean, or how pagination works. The description fails to compensate for the complete lack of schema descriptions.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the action ('Search for') and resource ('users on GitHub'), providing specific verb+resource pairing. However, it doesn't differentiate from sibling search tools like search_code, search_issues, and search_repositories, which all search different GitHub resources.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

No guidance is provided about when to use this tool versus alternatives. The description doesn't mention when this search is appropriate versus other user-related operations or how it differs from the other search tools on the server (search_code, search_issues, search_repositories).

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

update_issueC

Update an existing issue in a GitHub repository

ParametersJSON Schema
NameRequiredDescriptionDefault
ownerYes
repoYes
issue_numberYes
titleNo
bodyNo
assigneesNo
milestoneNo
labelsNo
stateNo

TDQS

C2.8/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description carries full burden for behavioral disclosure. 'Update an existing issue' implies a mutation operation, but it doesn't specify what happens with partial updates, whether changes are reversible, authentication requirements, rate limits, or error conditions. For a 9-parameter mutation tool, this leaves significant gaps in understanding its behavior.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, efficient sentence that states the core purpose without unnecessary words. It's appropriately front-loaded with the essential information, though this brevity comes at the cost of completeness for such a complex tool.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a mutation tool with 9 parameters, 0% schema coverage, no annotations, and no output schema, the description is severely inadequate. It provides only the basic purpose without addressing parameter meanings, behavioral characteristics, usage context, or return values. The agent would struggle to use this tool correctly without additional documentation.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters2/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

With 0% schema description coverage and 9 parameters (only 3 required), the description provides no information about any parameters. It doesn't mention that 'owner', 'repo', and 'issue_number' are required identifiers, nor does it explain the purpose of optional fields like 'title', 'body', 'assignees', etc. The description fails to compensate for the complete lack of schema documentation.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the action ('Update') and resource ('existing issue in a GitHub repository'), making the purpose immediately understandable. However, it doesn't differentiate this tool from similar siblings like 'create_issue' or 'get_issue' beyond the basic verb difference, missing an opportunity to clarify scope boundaries.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides no guidance on when to use this tool versus alternatives. With siblings like 'create_issue' for new issues and 'get_issue' for reading, the agent must infer usage from the verb alone. There's no mention of prerequisites, permissions needed, or typical scenarios for updating versus creating issues.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. 18 tool updates
    • First observedadd_issue_comment
    • First observedcreate_branch
    • First observedcreate_issue
    • First observedcreate_or_update_file
    • First observedcreate_pull_request
    • First observedcreate_repository
    • First observedfork_repository
    • First observedget_file_contents
    • First observedget_issue
    • First observedlist_commits
    • First observedlist_issues
    • First observedpush_files_content
    • First observedpush_files_from_path
    • First observedsearch_code
    • First observedsearch_issues
    • First observedsearch_repositories
    • First observedsearch_users
    • First observedupdate_issue

TDQS

B3.3/5.0
Disambiguation4/5

Most tools have distinct purposes targeting specific GitHub resources and actions, but there is some overlap between push_files_content and push_files_from_path (both push multiple files, differing only in input source) and between list_issues and search_issues (both retrieve issues, differing in scope). Descriptions help clarify these distinctions, but agents might occasionally confuse them.

Naming Consistency5/5

All tools follow a consistent verb_noun or verb_noun_preposition pattern (e.g., create_issue, get_file_contents, search_repositories), with no mixing of conventions like camelCase or snake_case variations. The naming is predictable and readable throughout the set.

Tool Count4/5

With 18 tools, the count is slightly high but reasonable for a comprehensive GitHub server covering repositories, issues, files, search, and operations. It avoids being excessive (under 25) and each tool appears to serve a specific function, though some could be consolidated (e.g., the two push tools).

Completeness5/5

The tool set provides complete coverage for core GitHub workflows, including CRUD operations for repositories, issues, files, and branches, along with search across code, issues, repositories, and users. There are no obvious gaps; agents can perform end-to-end tasks like creating repos, managing issues, and pushing code without dead ends.

Maintenance

ActivityInactive
ResponsivenessSyncing

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Connectors

Related MCP Servers

  • F
    license
    Not graded
    quality
    C
    maintenance
    MCP server for the GitHub REST API that enables interaction with repositories, pull requests, issues, branches, commits, reviews, and code search, with configurable write and destructive operations.
    -
  • F
    license
    Not graded
    quality
    D
    maintenance
    Standalone MCP server for GitHub that enables repository management, branch operations, pull request handling, and commit retrieval via tools listed in the README.
    1
    -
  • A
    license
    B
    quality
    D
    maintenance
    MCP (Model Context Protocol) server for GitHub API integration. This server provides comprehensive tools for interacting with GitHub repositories, issues, pull requests, branches, and code search through a unified interface.
    15
    14
    MIT

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/PhialsBasement/mcp-github-server-plus'

If you have feedback or need assistance with the MCP directory API, please join our Discord server