Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also orlearn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also.Learn more about diff comparisons here.
base repository:github/github-mcp-server
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base:v0.14.0
Choose a base ref
Loading
...
head repository:github/github-mcp-server
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare:v0.15.0
Choose a head ref
Loading
  • 9commits
  • 28files changed
  • 23contributors

Commits on Sep 4, 2025

  1. build(deps): bump actions/checkout from 4 to 5 (#878)

    Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 5.- [Release notes](https://github.com/actions/checkout/releases)- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)- [Commits](actions/checkout@v4...v5)---updated-dependencies:- dependency-name: actions/checkout  dependency-version: '5'  dependency-type: direct:production  update-type: version-update:semver-major...Signed-off-by: dependabot[bot] <support@github.com>Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    @dependabot
    dependabot[bot] authoredSep 4, 2025
    Configuration menu
    Copy the full SHA
    7dd6c7fView commit details
    Browse the repository at this point in the history
  2. Bump github.com/stretchr/testify from 1.10.0 to 1.11.1 (#1031)

    Bumps [github.com/stretchr/testify](https://github.com/stretchr/testify) from 1.10.0 to 1.11.1.- [Release notes](https://github.com/stretchr/testify/releases)- [Commits](stretchr/testify@v1.10.0...v1.11.1)---updated-dependencies:- dependency-name: github.com/stretchr/testify  dependency-version: 1.11.1  dependency-type: direct:production  update-type: version-update:semver-minor...Signed-off-by: dependabot[bot] <support@github.com>Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    @dependabot
    dependabot[bot] authoredSep 4, 2025
    Configuration menu
    Copy the full SHA
    a8c0293View commit details
    Browse the repository at this point in the history
  3. docs: Add Google Gemini CLI installation guide and integration (#757)

    * docs: Add Google Gemini CLI installation guide and integration- Add comprehensive installation guide for Google Gemini CLI- Include Docker and binary configuration options- Add authentication setup for Gemini API and Vertex AI- Update main README.md to include Gemini CLI in installation guides- Update installation guides index with Gemini CLI entry and support matrix- Follow established documentation patterns and security best practices* Fix Gemini CLI command syntax and add remote server method- Replace all 'gemini-cli' commands with correct 'gemini' syntax- Fix verification commands to use '/mcp list' and '/tools' prompts- Add httpUrl remote server method as primary configuration option- Update config file paths from settings.json to config.json- Correct npx installation command syntax- Add link to official Gemini CLI documentationAddresses feedback from soisyourface in PR review.* Emphasize official Gemini CLI documentation linkReduce detailed installation steps and direct users to official docs forup-to-date instructions, addressing reviewer feedback about maintainability.* Fix Gemini CLI configuration file name: config.json -> settings.jsonThe correct configuration file for Gemini CLI is settings.json, not config.json.This applies to both global (~/.gemini/settings.json) and project-specific(.gemini/settings.json) configurations as confirmed by official documentation.* Remove Gemini CLI installation and authentication sectionsRemoved lines 11-41 containing Gemini CLI installation commands andauthentication setup instructions.* Add Podman as Docker alternative in prerequisitesAdded Podman as container engine option alongside Docker.* Remove references to deprecated npm package* Add comprehensive ~/.gemini/.env file example* Fix authorization header to use literal token placeholderEnvironment variable substitution in headers is not yet supportedby Gemini CLI (seegoogle-gemini/gemini-cli#5282).* Add issue types (#869)* feat: add type to issues* test: add `type` test for create and update issues* Generate docs and toolsnaps* Update pkg/github/issues.goCo-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>* Use github ptr---------Co-authored-by: Pranav RK <pranavrk7@gmail.com>Co-authored-by: Pranav RK <39577726+radar07@users.noreply.github.com>Co-authored-by: Alon Kenneth <11458012+akenneth@users.noreply.github.com>Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>* Enable Dependabot (#654)* Create/Update dependabot.yaml* Apply suggestion from @CopilotCo-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>---------Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>* Bump SDK version to 0.36.0 (#863)* Use server.ServerResourceTemplate and server.ServerPrompt wrappers (#886)* Update "Close inactive issues" workflow to close issues after 180 days of inactivity (#909)* update PR_DAYS_BEFORE_STALE* update to mark as stale after 60 days* Update Claude MCP install guide after testing (#706)* Revise Claude installation guide- Verified Claude Code installation steps- Identified and documented issues with Claude Desktop setup- Updated installation documentation based on testing* Revise instructions for opening Claude CodeUpdated recommendations for opening Claude Code.* Update docs/installation-guides/install-claude.mdCo-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>* Update docs/installation-guides/install-claude.mdCo-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>* Update installation guide for Claude setupAdded installation option for using Claude Code using a release binary.* Change section title for Go Binary installationUpdated section title for clarity regarding installation without Docker.* Close double quote in bash command---------Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>Co-authored-by: LuluBeatson <lulubeatson@github.com>Co-authored-by: Matt Holloway <mattdholloway@github.com>Co-authored-by: Tommaso Moro <37270480+tommaso-moro@users.noreply.github.com>* Add actions job log buffer and profiler (#866)* add sliding window for actions logs* refactor: fix sliding* remove trim content* only use up to 1mb of memory for logs* update to tail lines in second pass* add better memory usage calculation* increase window size to 5MB* update test* update vers* undo vers change* add incremental memory tracking* use ring buffer* remove unused ctx param* remove manual GC clear* fix cca feedback* extract ring buffer logic to new package* handle log content processing errors and use correct param for maxjobloglines* fix tailing* account for if tailLines exceeds window size* add profiling thats reusable* remove profiler testing* refactor profiler: introduce safeMemoryDelta for accurate memory delta calculations* linter fixes* Update pkg/buffer/buffer.goCo-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>* use flag for maxJobLogLines* add param passing for context window size* refactor: rename contextWindowSize to contentWindowSize for consistency* fix: use tailLines if bigger but only if <= 5000* fix: limit tailLines to a maximum of 500 for log content download* Update cmd/github-mcp-server/main.goCo-authored-by: Adam Holt <omgitsads@github.com>* Update cmd/github-mcp-server/main.goCo-authored-by: Adam Holt <omgitsads@github.com>* move profiler to internal/* update actions test with new profiler location* fix: adjust buffer size limits* make line buffer 1028kb* fix mod path* change test to use same buffer size as normal use* improve test for non-sliding window implementation to not count empty lines* make test memory measurement more accurate* remove impossible conditional---------Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>Co-authored-by: Adam Holt <omgitsads@github.com>* Add get_release_by_tag tool (#938)* add get_release_by_tag tool* add tool* add tests* autogen* remove comment* docs(readme): Update readme to point to correct installation guides index (#892)* docs(readme): Update readme to point to correct installation guides index* feat(contributors): add list_repository_contributors tool* Revert "feat(contributors): add list_repository_contributors tool"This reverts commitece480e.---------Co-authored-by: Tommaso Moro <37270480+tommaso-moro@users.noreply.github.com>* Add Global Security Advisories Toolset (#919)* Repository security advisories (#925)* Add support for listing repo level security advisories* Add support for listing repo security advisories at the org level* Update Cursor installation link (#940)* use new link* update local install link* Change role from "system" to "user" in prompt messages for `AssignCodingAgentPrompt` and `IssueToFixWorkflowPrompt`. Role "system" is not allowed by Claude Code in MCP provided prompt (allowed only role "user" and "assistant") (#941)Co-authored-by: 0xGosu <0xGosu@gmail.com>* Local MCP is supported* Refactor Gemini CLI install guide* Remove Bearer from Authorization header* Add reference to main README for latest config* Bearer needed for headers, add references* Add minimal response to CRUD tools, `repositories` and `search` toolsets (#988)* add comprehensive minimal response where appropriate* remove unneeded comments* remove incorrect diff param* update docs* rm comment* Update pkg/github/repositories.goCo-authored-by: Lulu <59149422+LuluBeatson@users.noreply.github.com>* update toolsnaps and docs* change minimal_output to use new OptionalBoolParamWithDefault* Update pkg/github/repositories.goCo-authored-by: Lulu <59149422+LuluBeatson@users.noreply.github.com>* refactor minimal conversion funcs to minimal_types.go* consolidate response structs and remove unneeded message field* consolidate response further* remove CloneURL field* Update pkg/github/repositories.goCo-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>* Update pkg/github/server.goCo-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>* fix undefined* change incorrect comment* remove old err var declaration* Update pkg/github/repositories.goCo-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>* fix syntax issue* update toolsnaps---------Co-authored-by: Lulu <59149422+LuluBeatson@users.noreply.github.com>Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>* initial org repo create support (#1023)---------Co-authored-by: JoannaaKL <joannaakl@github.com>Co-authored-by: Pranav RK <pranavrk7@gmail.com>Co-authored-by: Pranav RK <39577726+radar07@users.noreply.github.com>Co-authored-by: Alon Kenneth <11458012+akenneth@users.noreply.github.com>Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>Co-authored-by: Zack Koppert <zkoppert@github.com>Co-authored-by: Ksenia Bobrova <almaleksia@github.com>Co-authored-by: Tommaso Moro <37270480+tommaso-moro@users.noreply.github.com>Co-authored-by: Dimitrios Philliou <d1m1tr10s@github.com>Co-authored-by: LuluBeatson <lulubeatson@github.com>Co-authored-by: Matt Holloway <mattdholloway@github.com>Co-authored-by: Adam Holt <omgitsads@github.com>Co-authored-by: Rebecca Biju <113070179+beccccaboo@users.noreply.github.com>Co-authored-by: Jurre <jurre@github.com>Co-authored-by: 0xGosu <0xGosu@gmail.com>Co-authored-by: Lulu <59149422+LuluBeatson@users.noreply.github.com>
    @ipapapa@JoannaaKL
    @radar07@akenneth@Copilot@zkoppert@almaleksia@tommaso-moro@D1M1TR10S@LuluBeatson@mattdholloway@omgitsads@beccccaboo@jurre@0xGosu
    17 people authoredSep 4, 2025
    Configuration menu
    Copy the full SHA
    c345e9bView commit details
    Browse the repository at this point in the history
  4. Update README.md (#1044)

    Removing public preview note.Co-authored-by: Iryna Kulakova <52420926+IrynaKulakova@users.noreply.github.com>Co-authored-by: Adam Holt <omgitsads@github.com>
    @D1M1TR10S@IrynaKulakova@omgitsads
    3 people authoredSep 4, 2025
    Configuration menu
    Copy the full SHA
    3dc912cView commit details
    Browse the repository at this point in the history
  5. build(deps): bump docker/metadata-action from 5.0.0 to 5.8.0 (#880)

    Bumps [docker/metadata-action](https://github.com/docker/metadata-action) from 5.0.0 to 5.8.0.- [Release notes](https://github.com/docker/metadata-action/releases)- [Commits](docker/metadata-action@96383f4...c1e5197)---updated-dependencies:- dependency-name: docker/metadata-action  dependency-version: 5.8.0  dependency-type: direct:production  update-type: version-update:semver-minor...Signed-off-by: dependabot[bot] <support@github.com>Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    @dependabot
    dependabot[bot] authoredSep 4, 2025
    1Configuration menu
    Copy the full SHA
    bbb411fView commit details
    Browse the repository at this point in the history

Commits on Sep 9, 2025

  1. Updating tool get_pull_request_comments -> get_pull_request_review_co…

    …mments (#1062)* update get_pull_request_comments to get_pull_request_review_comments to signify difference* fix remaining old references* cleanup dangling tool snap
    @tonytrg
    tonytrg authoredSep 9, 2025
    Configuration menu
    Copy the full SHA
    9db2e17View commit details
    Browse the repository at this point in the history

Commits on Sep 11, 2025

  1. Add return ID to CRUD tools (#1074)

    * add return ID to crud tools* Update pkg/github/gists.goCo-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>* Update pkg/github/gists.goCo-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>* fix gist id to string conv---------Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
    @mattdholloway@Copilot
    mattdholloway andCopilot authoredSep 11, 2025
    Configuration menu
    Copy the full SHA
    0c5cfc3View commit details
    Browse the repository at this point in the history

Commits on Sep 12, 2025

  1. Add specifying state change reason toupdate_issuetool (#1073)

    * add state_reason param* add close as duplicate functionality* refactor and improve tests* fix state reason validation logic and update tests* move state and state reason handling to gql* fix marshal failures* address latest feedback
    @kerobbi
    kerobbi authoredSep 12, 2025
    Configuration menu
    Copy the full SHA
    b6486a3View commit details
    Browse the repository at this point in the history
  2. Add starred repository support to GitHub MCP server (#1078)

    * Initial plan* Initial exploration and planning for starred repository supportCo-authored-by: tonytrg <40869903+tonytrg@users.noreply.github.com>* Implement starred repository functionality with comprehensive tests- Add ListStarredRepositories tool for listing starred repos- Add StarRepository tool for starring repositories- Add UnstarRepository tool for unstarring repositories- Update MinimalRepository struct with StarredAt field- Add comprehensive test coverage for all new functionality- Register new tools in the repos toolsetCo-authored-by: tonytrg <40869903+tonytrg@users.noreply.github.com>* Update README documentation with starred repository tools- Add list_starred_repositories tool documentation- Add star_repository tool documentation- Add unstar_repository tool documentation- Include comprehensive parameter descriptions for all new toolsCo-authored-by: tonytrg <40869903+tonytrg@users.noreply.github.com>* Add starred repository support to GitHub MCP serverCo-authored-by: tonytrg <40869903+tonytrg@users.noreply.github.com>* remove starredat from minimal view* update descriptions* remove bin* dont commit the binary---------Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>Co-authored-by: tonytrg <40869903+tonytrg@users.noreply.github.com>Co-authored-by: tonytrg <tonytrg@github.com>
    @Copilot@tonytrg
    3 people authoredSep 12, 2025
    Configuration menu
    Copy the full SHA
    010cf9bView commit details
    Browse the repository at this point in the history
Loading

[8]ページ先頭

©2009-2025 Movatter.jp