{
  "identity": {
    "name": "mcp-server-git",
    "version": "0.6.2",
    "publisher": {
      "name": "Anthropic, PBC."
    },
    "source": "https://github.com/modelcontextprotocol/servers",
    "license": "MIT",
    "type": "mcp_server"
  },
  "interface_": {
    "transport": [
      "stdio"
    ],
    "tools": [
      {
        "name": "git_status",
        "description": "Shows the working tree status",
        "input_schema": {
          "type": "object",
          "properties": {
            "repo_path": {
              "title": "Repo Path",
              "type": "string"
            }
          },
          "required": [
            "repo_path"
          ],
          "title": "GitStatus"
        }
      },
      {
        "name": "git_diff_unstaged",
        "description": "Shows changes in the working directory that are not yet staged",
        "input_schema": {
          "type": "object",
          "properties": {
            "repo_path": {
              "title": "Repo Path",
              "type": "string"
            },
            "context_lines": {
              "default": 3,
              "title": "Context Lines",
              "type": "integer"
            }
          },
          "required": [
            "repo_path"
          ],
          "title": "GitDiffUnstaged"
        }
      },
      {
        "name": "git_diff_staged",
        "description": "Shows changes that are staged for commit",
        "input_schema": {
          "type": "object",
          "properties": {
            "repo_path": {
              "title": "Repo Path",
              "type": "string"
            },
            "context_lines": {
              "default": 3,
              "title": "Context Lines",
              "type": "integer"
            }
          },
          "required": [
            "repo_path"
          ],
          "title": "GitDiffStaged"
        }
      },
      {
        "name": "git_diff",
        "description": "Shows differences between branches or commits",
        "input_schema": {
          "type": "object",
          "properties": {
            "repo_path": {
              "title": "Repo Path",
              "type": "string"
            },
            "target": {
              "title": "Target",
              "type": "string"
            },
            "context_lines": {
              "default": 3,
              "title": "Context Lines",
              "type": "integer"
            }
          },
          "required": [
            "repo_path",
            "target"
          ],
          "title": "GitDiff"
        }
      },
      {
        "name": "git_commit",
        "description": "Records changes to the repository",
        "input_schema": {
          "type": "object",
          "properties": {
            "repo_path": {
              "title": "Repo Path",
              "type": "string"
            },
            "message": {
              "title": "Message",
              "type": "string"
            }
          },
          "required": [
            "repo_path",
            "message"
          ],
          "title": "GitCommit"
        }
      },
      {
        "name": "git_add",
        "description": "Adds file contents to the staging area",
        "input_schema": {
          "type": "object",
          "properties": {
            "repo_path": {
              "title": "Repo Path",
              "type": "string"
            },
            "files": {
              "items": {
                "type": "string"
              },
              "title": "Files",
              "type": "array"
            }
          },
          "required": [
            "repo_path",
            "files"
          ],
          "title": "GitAdd"
        }
      },
      {
        "name": "git_reset",
        "description": "Unstages all staged changes",
        "input_schema": {
          "type": "object",
          "properties": {
            "repo_path": {
              "title": "Repo Path",
              "type": "string"
            }
          },
          "required": [
            "repo_path"
          ],
          "title": "GitReset"
        }
      },
      {
        "name": "git_log",
        "description": "Shows the commit logs",
        "input_schema": {
          "type": "object",
          "properties": {
            "repo_path": {
              "title": "Repo Path",
              "type": "string"
            },
            "max_count": {
              "default": 10,
              "title": "Max Count",
              "type": "integer"
            },
            "start_timestamp": {
              "anyOf": [
                {
                  "type": "string"
                },
                {
                  "type": "null"
                }
              ],
              "default": null,
              "description": "Start timestamp for filtering commits. Accepts: ISO 8601 format (e.g., '2024-01-15T14:30:25'), relative dates (e.g., '2 weeks ago', 'yesterday'), or absolute dates (e.g., '2024-01-15', 'Jan 15 2024')",
              "title": "Start Timestamp"
            },
            "end_timestamp": {
              "anyOf": [
                {
                  "type": "string"
                },
                {
                  "type": "null"
                }
              ],
              "default": null,
              "description": "End timestamp for filtering commits. Accepts: ISO 8601 format (e.g., '2024-01-15T14:30:25'), relative dates (e.g., '2 weeks ago', 'yesterday'), or absolute dates (e.g., '2024-01-15', 'Jan 15 2024')",
              "title": "End Timestamp"
            }
          },
          "required": [
            "repo_path"
          ],
          "title": "GitLog"
        }
      },
      {
        "name": "git_create_branch",
        "description": "Creates a new branch from an optional base branch",
        "input_schema": {
          "type": "object",
          "properties": {
            "repo_path": {
              "title": "Repo Path",
              "type": "string"
            },
            "branch_name": {
              "title": "Branch Name",
              "type": "string"
            },
            "base_branch": {
              "anyOf": [
                {
                  "type": "string"
                },
                {
                  "type": "null"
                }
              ],
              "default": null,
              "title": "Base Branch"
            }
          },
          "required": [
            "repo_path",
            "branch_name"
          ],
          "title": "GitCreateBranch"
        }
      },
      {
        "name": "git_checkout",
        "description": "Switches branches",
        "input_schema": {
          "type": "object",
          "properties": {
            "repo_path": {
              "title": "Repo Path",
              "type": "string"
            },
            "branch_name": {
              "title": "Branch Name",
              "type": "string"
            }
          },
          "required": [
            "repo_path",
            "branch_name"
          ],
          "title": "GitCheckout"
        }
      },
      {
        "name": "git_show",
        "description": "Shows the contents of a commit",
        "input_schema": {
          "type": "object",
          "properties": {
            "repo_path": {
              "title": "Repo Path",
              "type": "string"
            },
            "revision": {
              "title": "Revision",
              "type": "string"
            }
          },
          "required": [
            "repo_path",
            "revision"
          ],
          "title": "GitShow"
        }
      },
      {
        "name": "git_branch",
        "description": "List Git branches",
        "input_schema": {
          "type": "object",
          "properties": {
            "repo_path": {
              "description": "The path to the Git repository.",
              "title": "Repo Path",
              "type": "string"
            },
            "branch_type": {
              "description": "Whether to list local branches ('local'), remote branches ('remote') or all branches('all').",
              "title": "Branch Type",
              "type": "string"
            },
            "contains": {
              "anyOf": [
                {
                  "type": "string"
                },
                {
                  "type": "null"
                }
              ],
              "default": null,
              "description": "The commit sha that branch should contain. Do not pass anything to this param if no commit sha is specified",
              "title": "Contains"
            },
            "not_contains": {
              "anyOf": [
                {
                  "type": "string"
                },
                {
                  "type": "null"
                }
              ],
              "default": null,
              "description": "The commit sha that branch should NOT contain. Do not pass anything to this param if no commit sha is specified",
              "title": "Not Contains"
            }
          },
          "required": [
            "repo_path",
            "branch_type"
          ],
          "title": "GitBranch"
        }
      }
    ],
    "resources": [],
    "prompts": []
  },
  "dependencies": [
    {
      "type": "runtime",
      "name": "python",
      "version": ">=3.10",
      "required": true
    },
    {
      "type": "pypi_package",
      "name": "click",
      "version": ">=8.1.7",
      "required": true
    },
    {
      "type": "pypi_package",
      "name": "gitpython",
      "version": ">=3.1.45",
      "required": true
    },
    {
      "type": "pypi_package",
      "name": "mcp",
      "version": ">=1.0.0",
      "required": true
    },
    {
      "type": "pypi_package",
      "name": "pydantic",
      "version": ">=2.0.0",
      "required": true
    }
  ],
  "package_description": "A Model Context Protocol server providing tools to read, search, and manipulate Git repositories programmatically via LLMs",
  "readme_content": "# mcp-server-git: A git MCP server\r\n\r\n<!-- mcp-name: io.github.modelcontextprotocol/server-git -->\r\n\r\n## Overview\r\n\r\nA Model Context Protocol server for Git repository interaction and automation. This server provides tools to read, search, and manipulate Git repositories via Large Language Models.\r\n\r\nPlease note that mcp-server-git is currently in early development. The functionality and available tools are subject to change and expansion as we continue to develop and improve the server.\r\n\r\n### Tools\r\n\r\n1. `git_status`\r\n   - Shows the working tree status\r\n   - Input:\r\n     - `repo_path` (string): Path to Git repository\r\n   - Returns: Current status of working directory as text output\r\n\r\n2. `git_diff_unstaged`\r\n   - Shows changes in working directory not yet staged\r\n   - Inputs:\r\n     - `repo_path` (string): Path to Git repository\r\n     - `context_lines` (number, optional): Number of context lines to show (default: 3)\r\n   - Returns: Diff output of unstaged changes\r\n\r\n3. `git_diff_staged`\r\n   - Shows changes that are staged for commit\r\n   - Inputs:\r\n     - `repo_path` (string): Path to Git repository\r\n     - `context_lines` (number, optional): Number of context lines to show (default: 3)\r\n   - Returns: Diff output of staged changes\r\n\r\n4. `git_diff`\r\n   - Shows differences between branches or commits\r\n   - Inputs:\r\n     - `repo_path` (string): Path to Git repository\r\n     - `target` (string): Target branch or commit to compare with\r\n     - `context_lines` (number, optional): Number of context lines to show (default: 3)\r\n   - Returns: Diff output comparing current state with target\r\n\r\n5. `git_commit`\r\n   - Records changes to the repository\r\n   - Inputs:\r\n     - `repo_path` (string): Path to Git repository\r\n     - `message` (string): Commit message\r\n   - Returns: Confirmation with new commit hash\r\n\r\n6. `git_add`\r\n   - Adds file contents to the staging area\r\n   - Inputs:\r\n     - `repo_path` (string): Path to Git repository\r\n     - `files` (string[]): Array of file paths to stage\r\n   - Returns: Confirmation of staged files\r\n\r\n7. `git_reset`\r\n   - Unstages all staged changes\r\n   - Input:\r\n     - `repo_path` (string): Path to Git repository\r\n   - Returns: Confirmation of reset operation\r\n\r\n8. `git_log`\r\n   - Shows the commit logs with optional date filtering\r\n   - Inputs:\r\n     - `repo_path` (string): Path to Git repository\r\n     - `max_count` (number, optional): Maximum number of commits to show (default: 10)\r\n     - `start_timestamp` (string, optional): Start timestamp for filtering commits. Accepts ISO 8601 format (e.g., '2024-01-15T14:30:25'), relative dates (e.g., '2 weeks ago', 'yesterday'), or absolute dates (e.g., '2024-01-15', 'Jan 15 2024')\r\n     - `end_timestamp` (string, optional): End timestamp for filtering commits. Accepts ISO 8601 format (e.g., '2024-01-15T14:30:25'), relative dates (e.g., '2 weeks ago', 'yesterday'), or absolute dates (e.g., '2024-01-15', 'Jan 15 2024')\r\n   - Returns: Array of commit entries with hash, author, date, and message\r\n\r\n9. `git_create_branch`\r\n   - Creates a new branch\r\n   - Inputs:\r\n     - `repo_path` (string): Path to Git repository\r\n     - `branch_name` (string): Name of the new branch\r\n     - `base_branch` (string, optional): Base branch to create from (defaults to current branch)\r\n   - Returns: Confirmation of branch creation\r\n10. `git_checkout`\r\n   - Switches branches\r\n   - Inputs:\r\n     - `repo_path` (string): Path to Git repository\r\n     - `branch_name` (string): Name of branch to checkout\r\n   - Returns: Confirmation of branch switch\r\n11. `git_show`\r\n   - Shows the contents of a commit\r\n   - Inputs:\r\n     - `repo_path` (string): Path to Git repository\r\n     - `revision` (string): The revision (commit hash, branch name, tag) to show\r\n   - Returns: Contents of the specified commit\r\n\r\n12. `git_branch`\r\n   - List Git branches\r\n   - Inputs:\r\n     - `repo_path` (string): Path to the Git repository.\r\n     - `branch_type` (string): Whether to list local branches ('local'), remote branches ('remote') or all branches('all').\r\n     - `contains` (string, optional): The commit sha that branch should contain. Do not pass anything to this param if no commit sha is specified\r\n     - `not_contains` (string, optional): The commit sha that branch should NOT contain. Do not pass anything to this param if no commit sha is specified\r\n   - Returns: List of branches\r\n\r\n## Installation\r\n\r\n### Using uv (recommended)\r\n\r\nWhen using [`uv`](https://docs.astral.sh/uv/) no specific installation is needed. We will\r\nuse [`uvx`](https://docs.astral.sh/uv/guides/tools/) to directly run *mcp-server-git*.\r\n\r\n### Using PIP\r\n\r\nAlternatively you can install `mcp-server-git` via pip:\r\n\r\n```\r\npip install mcp-server-git\r\n```\r\n\r\nAfter installation, you can run it as a script using:\r\n\r\n```\r\npython -m mcp_server_git\r\n```\r\n\r\n## Configuration\r\n\r\n### Usage with Claude Desktop\r\n\r\nAdd this to your `claude_desktop_config.json`:\r\n\r\n<details>\r\n<summary>Using uvx</summary>\r\n\r\n```json\r\n\"mcpServers\": {\r\n  \"git\": {\r\n    \"command\": \"uvx\",\r\n    \"args\": [\"mcp-server-git\", \"--repository\", \"path/to/git/repo\"]\r\n  }\r\n}\r\n```\r\n</details>\r\n\r\n<details>\r\n<summary>Using docker</summary>\r\n\r\n* Note: replace '/Users/username' with the a path that you want to be accessible by this tool\r\n\r\n```json\r\n\"mcpServers\": {\r\n  \"git\": {\r\n    \"command\": \"docker\",\r\n    \"args\": [\"run\", \"--rm\", \"-i\", \"--mount\", \"type=bind,src=/Users/username,dst=/Users/username\", \"mcp/git\"]\r\n  }\r\n}\r\n```\r\n</details>\r\n\r\n<details>\r\n<summary>Using pip installation</summary>\r\n\r\n```json\r\n\"mcpServers\": {\r\n  \"git\": {\r\n    \"command\": \"python\",\r\n    \"args\": [\"-m\", \"mcp_server_git\", \"--repository\", \"path/to/git/repo\"]\r\n  }\r\n}\r\n```\r\n</details>\r\n\r\n### Usage with VS Code\r\n\r\nFor quick installation, use one of the one-click install buttons below...\r\n\r\n[![Install with UV in VS Code](https://img.shields.io/badge/VS_Code-UV-0098FF?style=flat-square&logo=visualstudiocode&logoColor=white)](https://insiders.vscode.dev/redirect/mcp/install?name=git&config=%7B%22command%22%3A%22uvx%22%2C%22args%22%3A%5B%22mcp-server-git%22%5D%7D) [![Install with UV in VS Code Insiders](https://img.shields.io/badge/VS_Code_Insiders-UV-24bfa5?style=flat-square&logo=visualstudiocode&logoColor=white)](https://insiders.vscode.dev/redirect/mcp/install?name=git&config=%7B%22command%22%3A%22uvx%22%2C%22args%22%3A%5B%22mcp-server-git%22%5D%7D&quality=insiders)\r\n\r\n[![Install with Docker in VS Code](https://img.shields.io/badge/VS_Code-Docker-0098FF?style=flat-square&logo=visualstudiocode&logoColor=white)](https://insiders.vscode.dev/redirect/mcp/install?name=git&config=%7B%22command%22%3A%22docker%22%2C%22args%22%3A%5B%22run%22%2C%22--rm%22%2C%22-i%22%2C%22--mount%22%2C%22type%3Dbind%2Csrc%3D%24%7BworkspaceFolder%7D%2Cdst%3D%2Fworkspace%22%2C%22mcp%2Fgit%22%5D%7D) [![Install with Docker in VS Code Insiders](https://img.shields.io/badge/VS_Code_Insiders-Docker-24bfa5?style=flat-square&logo=visualstudiocode&logoColor=white)](https://insiders.vscode.dev/redirect/mcp/install?name=git&config=%7B%22command%22%3A%22docker%22%2C%22args%22%3A%5B%22run%22%2C%22--rm%22%2C%22-i%22%2C%22--mount%22%2C%22type%3Dbind%2Csrc%3D%24%7BworkspaceFolder%7D%2Cdst%3D%2Fworkspace%22%2C%22mcp%2Fgit%22%5D%7D&quality=insiders)\r\n\r\nFor manual installation, you can configure the MCP server using one of these methods:\r\n\r\n**Method 1: User Configuration (Recommended)**\r\nAdd the configuration to your user-level MCP configuration file. Open the Command Palette (`Ctrl + Shift + P`) and run `MCP: Open User Configuration`. This will open your user `mcp.json` file where you can add the server configuration.\r\n\r\n**Method 2: Workspace Configuration**\r\nAlternatively, you can add the configuration to a file called `.vscode/mcp.json` in your workspace. This will allow you to share the configuration with others.\r\n\r\n> For more details about MCP configuration in VS Code, see the [official VS Code MCP documentation](https://code.visualstudio.com/docs/copilot/customization/mcp-servers).\r\n\r\n```json\r\n{\r\n  \"servers\": {\r\n    \"git\": {\r\n      \"command\": \"uvx\",\r\n      \"args\": [\"mcp-server-git\"]\r\n    }\r\n  }\r\n}\r\n```\r\n\r\nFor Docker installation:\r\n\r\n```json\r\n{\r\n  \"mcp\": {\r\n    \"servers\": {\r\n      \"git\": {\r\n        \"command\": \"docker\",\r\n        \"args\": [\r\n          \"run\",\r\n          \"--rm\",\r\n          \"-i\",\r\n          \"--mount\", \"type=bind,src=${workspaceFolder},dst=/workspace\",\r\n          \"mcp/git\"\r\n        ]\r\n      }\r\n    }\r\n  }\r\n}\r\n```\r\n\r\n### Usage with [Zed](https://github.com/zed-industries/zed)\r\n\r\nAdd to your Zed settings.json:\r\n\r\n<details>\r\n<summary>Using uvx</summary>\r\n\r\n```json\r\n\"context_servers\": [\r\n  \"mcp-server-git\": {\r\n    \"command\": {\r\n      \"path\": \"uvx\",\r\n      \"args\": [\"mcp-server-git\"]\r\n    }\r\n  }\r\n],\r\n```\r\n</details>\r\n\r\n<details>\r\n<summary>Using pip installation</summary>\r\n\r\n```json\r\n\"context_servers\": {\r\n  \"mcp-server-git\": {\r\n    \"command\": {\r\n      \"path\": \"python\",\r\n      \"args\": [\"-m\", \"mcp_server_git\"]\r\n    }\r\n  }\r\n},\r\n```\r\n</details>\r\n\r\n### Usage with [Zencoder](https://zencoder.ai)\r\n\r\n1. Go to the Zencoder menu (...)\r\n2. From the dropdown menu, select `Agent Tools`\r\n3. Click on the `Add Custom MCP`\r\n4. Add the name (i.e. git) and server configuration from below, and make sure to hit the `Install` button\r\n\r\n<details>\r\n<summary>Using uvx</summary>\r\n\r\n```json\r\n{\r\n    \"command\": \"uvx\",\r\n    \"args\": [\"mcp-server-git\", \"--repository\", \"path/to/git/repo\"]\r\n}\r\n```\r\n</details>\r\n\r\n## Debugging\r\n\r\nYou can use the MCP inspector to debug the server. For uvx installations:\r\n\r\n```\r\nnpx @modelcontextprotocol/inspector uvx mcp-server-git\r\n```\r\n\r\nOr if you've installed the package in a specific directory or are developing on it:\r\n\r\n```\r\ncd path/to/servers/src/git\r\nnpx @modelcontextprotocol/inspector uv run mcp-server-git\r\n```\r\n\r\nRunning `tail -n 20 -f ~/Library/Logs/Claude/mcp*.log` will show the logs from the server and may\r\nhelp you debug any issues.\r\n\r\n## Development\r\n\r\nIf you are doing local development, there are two ways to test your changes:\r\n\r\n1. Run the MCP inspector to test your changes. See [Debugging](#debugging) for run instructions.\r\n\r\n2. Test using the Claude desktop app. Add the following to your `claude_desktop_config.json`:\r\n\r\n### Docker\r\n\r\n```json\r\n{\r\n  \"mcpServers\": {\r\n    \"git\": {\r\n      \"command\": \"docker\",\r\n      \"args\": [\r\n        \"run\",\r\n        \"--rm\",\r\n        \"-i\",\r\n        \"--mount\", \"type=bind,src=/Users/username/Desktop,dst=/projects/Desktop\",\r\n        \"--mount\", \"type=bind,src=/path/to/other/allowed/dir,dst=/projects/other/allowed/dir,ro\",\r\n        \"--mount\", \"type=bind,src=/path/to/file.txt,dst=/projects/path/to/file.txt\",\r\n        \"mcp/git\"\r\n      ]\r\n    }\r\n  }\r\n}\r\n```\r\n\r\n### UVX\r\n```json\r\n{\r\n\"mcpServers\": {\r\n  \"git\": {\r\n    \"command\": \"uv\",\r\n    \"args\": [\r\n      \"--directory\",\r\n      \"/<path to mcp-servers>/mcp-servers/src/git\",\r\n      \"run\",\r\n      \"mcp-server-git\"\r\n    ]\r\n    }\r\n  }\r\n}\r\n```\r\n\r\n## Build\r\n\r\nDocker build:\r\n\r\n```bash\r\ncd src/git\r\ndocker build -t mcp/git .\r\n```\r\n\r\n## License\r\n\r\nThis MCP server is licensed under the MIT License. This means you are free to use, modify, and distribute the software, subject to the terms and conditions of the MIT License. For more details, please see the LICENSE file in the project repository.\r\n",
  "instruction_file": {
    "relative_path": "README.md",
    "absolute_path": "C:\\Users\\scott\\Desktop\\Projects\\contract-pipeline\\pipeline\\data\\repos\\modelcontextprotocol\\servers\\src\\git\\README.md",
    "hash": "sha256:76e29532c41ac3467d87d56d111dea3e1b6bc8624a711203f0b5ed49e55c95b0",
    "exists": true
  },
  "protocolGuarantees": {
    "does": [
      "Provides tool \"git_status\": Shows the working tree status",
      "Provides tool \"git_diff_unstaged\": Shows changes in the working directory that are not yet staged",
      "Provides tool \"git_diff_staged\": Shows changes that are staged for commit",
      "Provides tool \"git_diff\": Shows differences between branches or commits",
      "Provides tool \"git_commit\": Records changes to the repository",
      "Provides tool \"git_add\": Adds file contents to the staging area",
      "Provides tool \"git_reset\": Unstages all staged changes",
      "Provides tool \"git_log\": Shows the commit logs",
      "Provides tool \"git_create_branch\": Creates a new branch from an optional base branch",
      "Provides tool \"git_checkout\": Switches branches",
      "Provides tool \"git_show\": Shows the contents of a commit",
      "Provides tool \"git_branch\": List Git branches"
    ],
    "does_not": [],
    "scope_boundaries": {
      "modifies_files": false,
      "creates_files": false,
      "deletes_files": false,
      "makes_network_requests": false,
      "accesses_env_variables": false,
      "invokes_external_tools": false
    },
    "edge_cases": [],
    "source": "protocol"
  },
  "readmeGuarantees": {
    "does": [
      "Provides tools to read, search, and manipulate Git repositories via Large Language Models",
      "Shows working tree status via git_status tool",
      "Shows changes in working directory not yet staged via git_diff_unstaged tool",
      "Shows changes that are staged for commit via git_diff_staged tool",
      "Shows differences between branches or commits via git_diff tool",
      "Records changes to the repository via git_commit tool",
      "Adds file contents to the staging area via git_add tool",
      "Unstages all staged changes via git_reset tool",
      "Shows commit logs with optional date filtering via git_log tool",
      "Creates new branches via git_create_branch tool",
      "Switches branches via git_checkout tool",
      "Shows contents of a commit via git_show tool",
      "Lists Git branches via git_branch tool",
      "Accepts ISO 8601 format, relative dates, or absolute dates for timestamp filtering in git_log",
      "Returns confirmation with new commit hash for git_commit operations",
      "Returns confirmation of staged files for git_add operations",
      "Returns confirmation of reset operation for git_reset",
      "Returns confirmation of branch creation for git_create_branch",
      "Returns confirmation of branch switch for git_checkout"
    ],
    "does_not": [],
    "scope_boundaries": {
      "modifies_files": true,
      "creates_files": false,
      "deletes_files": false,
      "makes_network_requests": false,
      "accesses_env_variables": false,
      "invokes_external_tools": true
    },
    "edge_cases": [
      "Currently in early development - functionality and available tools are subject to change and expansion"
    ],
    "confidence": 0.9,
    "source": "author"
  },
  "sourceHash": "sha256:5fd9be2fec91372c6641e30dda8fc08d620e8bcfaa2490f147705c7e4bfb0974",
  "buildStatus": {
    "installed": true,
    "built": true,
    "buildError": null
  },
  "extractedAt": "2026-03-28T21:39:26.527Z",
  "extractionMethod": "mcp_client",
  "durationMs": 22442,
  "gitSha": "f4244583a6af9425633e433a3eec000d23f4e011"
}