├── .dockerignore ├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── agents │ └── go-sdk-tool-migrator.md ├── copilot-instructions.md ├── dependabot.yml ├── licenses.tmpl ├── prompts │ ├── bug-report-review.prompt.yml │ └── default-issue-review.prompt.yml ├── pull_request_template.md └── workflows │ ├── ai-issue-assessment.yml │ ├── close-inactive-issues.yml │ ├── code-scanning.yml │ ├── docker-publish.yml │ ├── docs-check.yml │ ├── go.yml │ ├── goreleaser.yml │ ├── license-check.yml │ ├── lint.yml │ ├── moderator.yml │ └── registry-releaser.yml ├── .gitignore ├── .golangci.yml ├── .goreleaser.yaml ├── .vscode └── launch.json ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Dockerfile ├── LICENSE ├── README.md ├── SECURITY.md ├── SUPPORT.md ├── cmd ├── github-mcp-server │ ├── generate_docs.go │ └── main.go └── mcpcurl │ ├── README.md │ ├── main.go │ └── mcpcurl ├── docs ├── error-handling.md ├── host-integration.md ├── installation-guides │ ├── README.md │ ├── install-claude.md │ ├── install-codex.md │ ├── install-cursor.md │ ├── install-gemini-cli.md │ ├── install-other-copilot-ides.md │ └── install-windsurf.md ├── policies-and-governance.md ├── remote-server.md ├── server-configuration.md └── testing.md ├── e2e ├── README.md └── e2e_test.go ├── gemini-extension.json ├── go.mod ├── go.sum ├── internal ├── ghmcp │ └── server.go ├── githubv4mock │ ├── githubv4mock.go │ ├── local_round_tripper.go │ ├── objects_are_equal_values.go │ ├── objects_are_equal_values_test.go │ └── query.go ├── profiler │ └── profiler.go └── toolsnaps │ ├── toolsnaps.go │ └── toolsnaps_test.go ├── pkg ├── buffer │ └── buffer.go ├── errors │ ├── error.go │ └── error_test.go ├── github │ ├── __toolsnaps__ │ │ ├── add_comment_to_pending_review.snap │ │ ├── add_issue_comment.snap │ │ ├── add_project_item.snap │ │ ├── assign_copilot_to_issue.snap │ │ ├── cancel_workflow_run.snap │ │ ├── create_branch.snap │ │ ├── create_gist.snap │ │ ├── create_issue.snap │ │ ├── create_or_update_file.snap │ │ ├── create_pull_request.snap │ │ ├── create_repository.snap │ │ ├── delete_file.snap │ │ ├── delete_project_item.snap │ │ ├── delete_workflow_run_logs.snap │ │ ├── dismiss_notification.snap │ │ ├── download_workflow_run_artifact.snap │ │ ├── fork_repository.snap │ │ ├── get_code_scanning_alert.snap │ │ ├── get_commit.snap │ │ ├── get_dependabot_alert.snap │ │ ├── get_discussion.snap │ │ ├── get_discussion_comments.snap │ │ ├── get_file_contents.snap │ │ ├── get_gist.snap │ │ ├── get_global_security_advisory.snap │ │ ├── get_job_logs.snap │ │ ├── get_label.snap │ │ ├── get_latest_release.snap │ │ ├── get_me.snap │ │ ├── get_notification_details.snap │ │ ├── get_project.snap │ │ ├── get_project_field.snap │ │ ├── get_project_item.snap │ │ ├── get_release_by_tag.snap │ │ ├── get_repository_tree.snap │ │ ├── get_secret_scanning_alert.snap │ │ ├── get_tag.snap │ │ ├── get_team_members.snap │ │ ├── get_teams.snap │ │ ├── get_workflow_run.snap │ │ ├── get_workflow_run_logs.snap │ │ ├── get_workflow_run_usage.snap │ │ ├── issue_read.snap │ │ ├── issue_write.snap │ │ ├── label_write.snap │ │ ├── list_branches.snap │ │ ├── list_code_scanning_alerts.snap │ │ ├── list_commits.snap │ │ ├── list_dependabot_alerts.snap │ │ ├── list_discussion_categories.snap │ │ ├── list_discussions.snap │ │ ├── list_gists.snap │ │ ├── list_global_security_advisories.snap │ │ ├── list_issue_types.snap │ │ ├── list_issues.snap │ │ ├── list_label.snap │ │ ├── list_notifications.snap │ │ ├── list_org_repository_security_advisories.snap │ │ ├── list_project_fields.snap │ │ ├── list_project_items.snap │ │ ├── list_projects.snap │ │ ├── list_pull_requests.snap │ │ ├── list_releases.snap │ │ ├── list_repository_security_advisories.snap │ │ ├── list_secret_scanning_alerts.snap │ │ ├── list_starred_repositories.snap │ │ ├── list_tags.snap │ │ ├── list_workflow_jobs.snap │ │ ├── list_workflow_run_artifacts.snap │ │ ├── list_workflow_runs.snap │ │ ├── list_workflows.snap │ │ ├── manage_notification_subscription.snap │ │ ├── manage_repository_notification_subscription.snap │ │ ├── mark_all_notifications_read.snap │ │ ├── merge_pull_request.snap │ │ ├── pull_request_read.snap │ │ ├── pull_request_review_write.snap │ │ ├── push_files.snap │ │ ├── request_copilot_review.snap │ │ ├── rerun_failed_jobs.snap │ │ ├── rerun_workflow_run.snap │ │ ├── run_workflow.snap │ │ ├── search_code.snap │ │ ├── search_issues.snap │ │ ├── search_orgs.snap │ │ ├── search_pull_requests.snap │ │ ├── search_repositories.snap │ │ ├── search_users.snap │ │ ├── star_repository.snap │ │ ├── sub_issue_write.snap │ │ ├── unstar_repository.snap │ │ ├── update_gist.snap │ │ ├── update_project_item.snap │ │ ├── update_pull_request.snap │ │ └── update_pull_request_branch.snap │ ├── actions.go │ ├── actions_test.go │ ├── code_scanning.go │ ├── code_scanning_test.go │ ├── context_tools.go │ ├── context_tools_test.go │ ├── dependabot.go │ ├── dependabot_test.go │ ├── deprecated_tool_aliases.go │ ├── discussions.go │ ├── discussions_test.go │ ├── dynamic_tools.go │ ├── feature_flags.go │ ├── gists.go │ ├── gists_test.go │ ├── git.go │ ├── git_test.go │ ├── helper_test.go │ ├── instructions.go │ ├── instructions_test.go │ ├── issues.go │ ├── issues_test.go │ ├── labels.go │ ├── labels_test.go │ ├── minimal_types.go │ ├── notifications.go │ ├── notifications_test.go │ ├── projects.go │ ├── projects_test.go │ ├── pullrequests.go │ ├── pullrequests_test.go │ ├── repositories.go │ ├── repositories_test.go │ ├── repository_resource.go │ ├── repository_resource_completions.go │ ├── repository_resource_completions_test.go │ ├── repository_resource_test.go │ ├── search.go │ ├── search_test.go │ ├── search_utils.go │ ├── search_utils_test.go │ ├── secret_scanning.go │ ├── secret_scanning_test.go │ ├── security_advisories.go │ ├── security_advisories_test.go │ ├── server.go │ ├── server_test.go │ ├── tools.go │ ├── tools_test.go │ └── workflow_prompts.go ├── lockdown │ ├── lockdown.go │ └── lockdown_test.go ├── log │ ├── io.go │ └── io_test.go ├── raw │ ├── raw.go │ ├── raw_mock.go │ └── raw_test.go ├── sanitize │ ├── sanitize.go │ └── sanitize_test.go ├── toolsets │ ├── toolsets.go │ └── toolsets_test.go ├── translations │ └── translations.go └── utils │ └── result.go ├── script ├── generate-docs ├── get-discussions ├── get-me ├── licenses ├── licenses-check ├── lint ├── prettyprint-log ├── tag-release └── test ├── server.json ├── third-party-licenses.darwin.md ├── third-party-licenses.linux.md ├── third-party-licenses.windows.md └── third-party ├── github.com ├── aymerick │ └── douceur │ │ └── LICENSE ├── fsnotify │ └── fsnotify │ │ └── LICENSE ├── go-openapi │ ├── jsonpointer │ │ └── LICENSE │ └── swag │ │ └── LICENSE ├── go-viper │ └── mapstructure │ │ └── v2 │ │ └── LICENSE ├── google │ ├── go-github │ │ ├── v71 │ │ │ └── github │ │ │ │ └── LICENSE │ │ └── v79 │ │ │ └── github │ │ │ └── LICENSE │ ├── go-querystring │ │ └── query │ │ │ └── LICENSE │ └── jsonschema-go │ │ └── jsonschema │ │ └── LICENSE ├── gorilla │ ├── css │ │ └── scanner │ │ │ └── LICENSE │ └── mux │ │ └── LICENSE ├── inconshreveable │ └── mousetrap │ │ └── LICENSE ├── josephburnett │ └── jd │ │ └── v2 │ │ └── LICENSE ├── josharian │ └── intern │ │ └── license.md ├── mailru │ └── easyjson │ │ └── LICENSE ├── microcosm-cc │ └── bluemonday │ │ └── LICENSE.md ├── migueleliasweb │ └── go-github-mock │ │ └── src │ │ └── mock │ │ └── LICENSE ├── modelcontextprotocol │ └── go-sdk │ │ └── LICENSE ├── muesli │ └── cache2go │ │ └── LICENSE.txt ├── pelletier │ └── go-toml │ │ └── v2 │ │ └── LICENSE ├── sagikazarmark │ └── locafero │ │ └── LICENSE ├── shurcooL │ ├── githubv4 │ │ └── LICENSE │ └── graphql │ │ └── LICENSE ├── sourcegraph │ └── conc │ │ └── LICENSE ├── spf13 │ ├── afero │ │ └── LICENSE.txt │ ├── cast │ │ └── LICENSE │ ├── cobra │ │ └── LICENSE.txt │ ├── pflag │ │ └── LICENSE │ └── viper │ │ └── LICENSE ├── subosito │ └── gotenv │ │ └── LICENSE ├── yosida95 │ └── uritemplate │ │ └── v3 │ │ └── LICENSE └── yudai │ └── golcs │ └── LICENSE ├── go.yaml.in └── yaml │ └── v3 │ ├── LICENSE │ └── NOTICE ├── golang.org └── x │ ├── exp │ └── LICENSE │ ├── net │ └── html │ │ └── LICENSE │ ├── sys │ ├── unix │ │ └── LICENSE │ └── windows │ │ └── LICENSE │ ├── text │ └── LICENSE │ └── time │ └── rate │ └── LICENSE └── gopkg.in └── yaml.v2 ├── LICENSE └── NOTICE /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/.dockerignore -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/agents/go-sdk-tool-migrator.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/.github/agents/go-sdk-tool-migrator.md -------------------------------------------------------------------------------- /.github/copilot-instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/.github/copilot-instructions.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/licenses.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/.github/licenses.tmpl -------------------------------------------------------------------------------- /.github/prompts/bug-report-review.prompt.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/.github/prompts/bug-report-review.prompt.yml -------------------------------------------------------------------------------- /.github/prompts/default-issue-review.prompt.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/.github/prompts/default-issue-review.prompt.yml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/ai-issue-assessment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/.github/workflows/ai-issue-assessment.yml -------------------------------------------------------------------------------- /.github/workflows/close-inactive-issues.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/.github/workflows/close-inactive-issues.yml -------------------------------------------------------------------------------- /.github/workflows/code-scanning.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/.github/workflows/code-scanning.yml -------------------------------------------------------------------------------- /.github/workflows/docker-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/.github/workflows/docker-publish.yml -------------------------------------------------------------------------------- /.github/workflows/docs-check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/.github/workflows/docs-check.yml -------------------------------------------------------------------------------- /.github/workflows/go.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/.github/workflows/go.yml -------------------------------------------------------------------------------- /.github/workflows/goreleaser.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/.github/workflows/goreleaser.yml -------------------------------------------------------------------------------- /.github/workflows/license-check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/.github/workflows/license-check.yml -------------------------------------------------------------------------------- /.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/.github/workflows/lint.yml -------------------------------------------------------------------------------- /.github/workflows/moderator.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/.github/workflows/moderator.yml -------------------------------------------------------------------------------- /.github/workflows/registry-releaser.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/.github/workflows/registry-releaser.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/.gitignore -------------------------------------------------------------------------------- /.golangci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/.golangci.yml -------------------------------------------------------------------------------- /.goreleaser.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/.goreleaser.yaml -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/SECURITY.md -------------------------------------------------------------------------------- /SUPPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/SUPPORT.md -------------------------------------------------------------------------------- /cmd/github-mcp-server/generate_docs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/cmd/github-mcp-server/generate_docs.go -------------------------------------------------------------------------------- /cmd/github-mcp-server/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/cmd/github-mcp-server/main.go -------------------------------------------------------------------------------- /cmd/mcpcurl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/cmd/mcpcurl/README.md -------------------------------------------------------------------------------- /cmd/mcpcurl/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/cmd/mcpcurl/main.go -------------------------------------------------------------------------------- /cmd/mcpcurl/mcpcurl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/cmd/mcpcurl/mcpcurl -------------------------------------------------------------------------------- /docs/error-handling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/docs/error-handling.md -------------------------------------------------------------------------------- /docs/host-integration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/docs/host-integration.md -------------------------------------------------------------------------------- /docs/installation-guides/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/docs/installation-guides/README.md -------------------------------------------------------------------------------- /docs/installation-guides/install-claude.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/docs/installation-guides/install-claude.md -------------------------------------------------------------------------------- /docs/installation-guides/install-codex.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/docs/installation-guides/install-codex.md -------------------------------------------------------------------------------- /docs/installation-guides/install-cursor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/docs/installation-guides/install-cursor.md -------------------------------------------------------------------------------- /docs/installation-guides/install-gemini-cli.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/docs/installation-guides/install-gemini-cli.md -------------------------------------------------------------------------------- /docs/installation-guides/install-other-copilot-ides.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/docs/installation-guides/install-other-copilot-ides.md -------------------------------------------------------------------------------- /docs/installation-guides/install-windsurf.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/docs/installation-guides/install-windsurf.md -------------------------------------------------------------------------------- /docs/policies-and-governance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/docs/policies-and-governance.md -------------------------------------------------------------------------------- /docs/remote-server.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/docs/remote-server.md -------------------------------------------------------------------------------- /docs/server-configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/docs/server-configuration.md -------------------------------------------------------------------------------- /docs/testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/docs/testing.md -------------------------------------------------------------------------------- /e2e/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/e2e/README.md -------------------------------------------------------------------------------- /e2e/e2e_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/e2e/e2e_test.go -------------------------------------------------------------------------------- /gemini-extension.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/gemini-extension.json -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/go.sum -------------------------------------------------------------------------------- /internal/ghmcp/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/internal/ghmcp/server.go -------------------------------------------------------------------------------- /internal/githubv4mock/githubv4mock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/internal/githubv4mock/githubv4mock.go -------------------------------------------------------------------------------- /internal/githubv4mock/local_round_tripper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/internal/githubv4mock/local_round_tripper.go -------------------------------------------------------------------------------- /internal/githubv4mock/objects_are_equal_values.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/internal/githubv4mock/objects_are_equal_values.go -------------------------------------------------------------------------------- /internal/githubv4mock/objects_are_equal_values_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/internal/githubv4mock/objects_are_equal_values_test.go -------------------------------------------------------------------------------- /internal/githubv4mock/query.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/internal/githubv4mock/query.go -------------------------------------------------------------------------------- /internal/profiler/profiler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/internal/profiler/profiler.go -------------------------------------------------------------------------------- /internal/toolsnaps/toolsnaps.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/internal/toolsnaps/toolsnaps.go -------------------------------------------------------------------------------- /internal/toolsnaps/toolsnaps_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/internal/toolsnaps/toolsnaps_test.go -------------------------------------------------------------------------------- /pkg/buffer/buffer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/pkg/buffer/buffer.go -------------------------------------------------------------------------------- /pkg/errors/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/pkg/errors/error.go -------------------------------------------------------------------------------- /pkg/errors/error_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/pkg/errors/error_test.go -------------------------------------------------------------------------------- /pkg/github/__toolsnaps__/add_comment_to_pending_review.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/pkg/github/__toolsnaps__/add_comment_to_pending_review.snap -------------------------------------------------------------------------------- /pkg/github/__toolsnaps__/add_issue_comment.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/pkg/github/__toolsnaps__/add_issue_comment.snap -------------------------------------------------------------------------------- /pkg/github/__toolsnaps__/add_project_item.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/pkg/github/__toolsnaps__/add_project_item.snap -------------------------------------------------------------------------------- /pkg/github/__toolsnaps__/assign_copilot_to_issue.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/pkg/github/__toolsnaps__/assign_copilot_to_issue.snap -------------------------------------------------------------------------------- /pkg/github/__toolsnaps__/cancel_workflow_run.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/pkg/github/__toolsnaps__/cancel_workflow_run.snap -------------------------------------------------------------------------------- /pkg/github/__toolsnaps__/create_branch.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/pkg/github/__toolsnaps__/create_branch.snap -------------------------------------------------------------------------------- /pkg/github/__toolsnaps__/create_gist.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/pkg/github/__toolsnaps__/create_gist.snap -------------------------------------------------------------------------------- /pkg/github/__toolsnaps__/create_issue.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/pkg/github/__toolsnaps__/create_issue.snap -------------------------------------------------------------------------------- /pkg/github/__toolsnaps__/create_or_update_file.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/pkg/github/__toolsnaps__/create_or_update_file.snap -------------------------------------------------------------------------------- /pkg/github/__toolsnaps__/create_pull_request.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/pkg/github/__toolsnaps__/create_pull_request.snap -------------------------------------------------------------------------------- /pkg/github/__toolsnaps__/create_repository.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/pkg/github/__toolsnaps__/create_repository.snap -------------------------------------------------------------------------------- /pkg/github/__toolsnaps__/delete_file.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/pkg/github/__toolsnaps__/delete_file.snap -------------------------------------------------------------------------------- /pkg/github/__toolsnaps__/delete_project_item.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/pkg/github/__toolsnaps__/delete_project_item.snap -------------------------------------------------------------------------------- /pkg/github/__toolsnaps__/delete_workflow_run_logs.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/pkg/github/__toolsnaps__/delete_workflow_run_logs.snap -------------------------------------------------------------------------------- /pkg/github/__toolsnaps__/dismiss_notification.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/pkg/github/__toolsnaps__/dismiss_notification.snap -------------------------------------------------------------------------------- /pkg/github/__toolsnaps__/download_workflow_run_artifact.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/pkg/github/__toolsnaps__/download_workflow_run_artifact.snap -------------------------------------------------------------------------------- /pkg/github/__toolsnaps__/fork_repository.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/pkg/github/__toolsnaps__/fork_repository.snap -------------------------------------------------------------------------------- /pkg/github/__toolsnaps__/get_code_scanning_alert.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/pkg/github/__toolsnaps__/get_code_scanning_alert.snap -------------------------------------------------------------------------------- /pkg/github/__toolsnaps__/get_commit.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/pkg/github/__toolsnaps__/get_commit.snap -------------------------------------------------------------------------------- /pkg/github/__toolsnaps__/get_dependabot_alert.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/pkg/github/__toolsnaps__/get_dependabot_alert.snap -------------------------------------------------------------------------------- /pkg/github/__toolsnaps__/get_discussion.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/pkg/github/__toolsnaps__/get_discussion.snap -------------------------------------------------------------------------------- /pkg/github/__toolsnaps__/get_discussion_comments.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/pkg/github/__toolsnaps__/get_discussion_comments.snap -------------------------------------------------------------------------------- /pkg/github/__toolsnaps__/get_file_contents.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/pkg/github/__toolsnaps__/get_file_contents.snap -------------------------------------------------------------------------------- /pkg/github/__toolsnaps__/get_gist.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/pkg/github/__toolsnaps__/get_gist.snap -------------------------------------------------------------------------------- /pkg/github/__toolsnaps__/get_global_security_advisory.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/pkg/github/__toolsnaps__/get_global_security_advisory.snap -------------------------------------------------------------------------------- /pkg/github/__toolsnaps__/get_job_logs.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/pkg/github/__toolsnaps__/get_job_logs.snap -------------------------------------------------------------------------------- /pkg/github/__toolsnaps__/get_label.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/pkg/github/__toolsnaps__/get_label.snap -------------------------------------------------------------------------------- /pkg/github/__toolsnaps__/get_latest_release.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/pkg/github/__toolsnaps__/get_latest_release.snap -------------------------------------------------------------------------------- /pkg/github/__toolsnaps__/get_me.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/pkg/github/__toolsnaps__/get_me.snap -------------------------------------------------------------------------------- /pkg/github/__toolsnaps__/get_notification_details.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/pkg/github/__toolsnaps__/get_notification_details.snap -------------------------------------------------------------------------------- /pkg/github/__toolsnaps__/get_project.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/pkg/github/__toolsnaps__/get_project.snap -------------------------------------------------------------------------------- /pkg/github/__toolsnaps__/get_project_field.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/pkg/github/__toolsnaps__/get_project_field.snap -------------------------------------------------------------------------------- /pkg/github/__toolsnaps__/get_project_item.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/pkg/github/__toolsnaps__/get_project_item.snap -------------------------------------------------------------------------------- /pkg/github/__toolsnaps__/get_release_by_tag.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/pkg/github/__toolsnaps__/get_release_by_tag.snap -------------------------------------------------------------------------------- /pkg/github/__toolsnaps__/get_repository_tree.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/pkg/github/__toolsnaps__/get_repository_tree.snap -------------------------------------------------------------------------------- /pkg/github/__toolsnaps__/get_secret_scanning_alert.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/pkg/github/__toolsnaps__/get_secret_scanning_alert.snap -------------------------------------------------------------------------------- /pkg/github/__toolsnaps__/get_tag.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/pkg/github/__toolsnaps__/get_tag.snap -------------------------------------------------------------------------------- /pkg/github/__toolsnaps__/get_team_members.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/pkg/github/__toolsnaps__/get_team_members.snap -------------------------------------------------------------------------------- /pkg/github/__toolsnaps__/get_teams.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/pkg/github/__toolsnaps__/get_teams.snap -------------------------------------------------------------------------------- /pkg/github/__toolsnaps__/get_workflow_run.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/pkg/github/__toolsnaps__/get_workflow_run.snap -------------------------------------------------------------------------------- /pkg/github/__toolsnaps__/get_workflow_run_logs.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/pkg/github/__toolsnaps__/get_workflow_run_logs.snap -------------------------------------------------------------------------------- /pkg/github/__toolsnaps__/get_workflow_run_usage.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/pkg/github/__toolsnaps__/get_workflow_run_usage.snap -------------------------------------------------------------------------------- /pkg/github/__toolsnaps__/issue_read.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/pkg/github/__toolsnaps__/issue_read.snap -------------------------------------------------------------------------------- /pkg/github/__toolsnaps__/issue_write.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/pkg/github/__toolsnaps__/issue_write.snap -------------------------------------------------------------------------------- /pkg/github/__toolsnaps__/label_write.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/pkg/github/__toolsnaps__/label_write.snap -------------------------------------------------------------------------------- /pkg/github/__toolsnaps__/list_branches.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/pkg/github/__toolsnaps__/list_branches.snap -------------------------------------------------------------------------------- /pkg/github/__toolsnaps__/list_code_scanning_alerts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/pkg/github/__toolsnaps__/list_code_scanning_alerts.snap -------------------------------------------------------------------------------- /pkg/github/__toolsnaps__/list_commits.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/pkg/github/__toolsnaps__/list_commits.snap -------------------------------------------------------------------------------- /pkg/github/__toolsnaps__/list_dependabot_alerts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/pkg/github/__toolsnaps__/list_dependabot_alerts.snap -------------------------------------------------------------------------------- /pkg/github/__toolsnaps__/list_discussion_categories.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/pkg/github/__toolsnaps__/list_discussion_categories.snap -------------------------------------------------------------------------------- /pkg/github/__toolsnaps__/list_discussions.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/pkg/github/__toolsnaps__/list_discussions.snap -------------------------------------------------------------------------------- /pkg/github/__toolsnaps__/list_gists.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/pkg/github/__toolsnaps__/list_gists.snap -------------------------------------------------------------------------------- /pkg/github/__toolsnaps__/list_global_security_advisories.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/pkg/github/__toolsnaps__/list_global_security_advisories.snap -------------------------------------------------------------------------------- /pkg/github/__toolsnaps__/list_issue_types.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/pkg/github/__toolsnaps__/list_issue_types.snap -------------------------------------------------------------------------------- /pkg/github/__toolsnaps__/list_issues.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/pkg/github/__toolsnaps__/list_issues.snap -------------------------------------------------------------------------------- /pkg/github/__toolsnaps__/list_label.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/pkg/github/__toolsnaps__/list_label.snap -------------------------------------------------------------------------------- /pkg/github/__toolsnaps__/list_notifications.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/pkg/github/__toolsnaps__/list_notifications.snap -------------------------------------------------------------------------------- /pkg/github/__toolsnaps__/list_org_repository_security_advisories.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/pkg/github/__toolsnaps__/list_org_repository_security_advisories.snap -------------------------------------------------------------------------------- /pkg/github/__toolsnaps__/list_project_fields.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/pkg/github/__toolsnaps__/list_project_fields.snap -------------------------------------------------------------------------------- /pkg/github/__toolsnaps__/list_project_items.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/pkg/github/__toolsnaps__/list_project_items.snap -------------------------------------------------------------------------------- /pkg/github/__toolsnaps__/list_projects.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/pkg/github/__toolsnaps__/list_projects.snap -------------------------------------------------------------------------------- /pkg/github/__toolsnaps__/list_pull_requests.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/pkg/github/__toolsnaps__/list_pull_requests.snap -------------------------------------------------------------------------------- /pkg/github/__toolsnaps__/list_releases.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/pkg/github/__toolsnaps__/list_releases.snap -------------------------------------------------------------------------------- /pkg/github/__toolsnaps__/list_repository_security_advisories.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/pkg/github/__toolsnaps__/list_repository_security_advisories.snap -------------------------------------------------------------------------------- /pkg/github/__toolsnaps__/list_secret_scanning_alerts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/pkg/github/__toolsnaps__/list_secret_scanning_alerts.snap -------------------------------------------------------------------------------- /pkg/github/__toolsnaps__/list_starred_repositories.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/pkg/github/__toolsnaps__/list_starred_repositories.snap -------------------------------------------------------------------------------- /pkg/github/__toolsnaps__/list_tags.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/pkg/github/__toolsnaps__/list_tags.snap -------------------------------------------------------------------------------- /pkg/github/__toolsnaps__/list_workflow_jobs.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/pkg/github/__toolsnaps__/list_workflow_jobs.snap -------------------------------------------------------------------------------- /pkg/github/__toolsnaps__/list_workflow_run_artifacts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/pkg/github/__toolsnaps__/list_workflow_run_artifacts.snap -------------------------------------------------------------------------------- /pkg/github/__toolsnaps__/list_workflow_runs.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/pkg/github/__toolsnaps__/list_workflow_runs.snap -------------------------------------------------------------------------------- /pkg/github/__toolsnaps__/list_workflows.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/pkg/github/__toolsnaps__/list_workflows.snap -------------------------------------------------------------------------------- /pkg/github/__toolsnaps__/manage_notification_subscription.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/pkg/github/__toolsnaps__/manage_notification_subscription.snap -------------------------------------------------------------------------------- /pkg/github/__toolsnaps__/manage_repository_notification_subscription.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/pkg/github/__toolsnaps__/manage_repository_notification_subscription.snap -------------------------------------------------------------------------------- /pkg/github/__toolsnaps__/mark_all_notifications_read.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/pkg/github/__toolsnaps__/mark_all_notifications_read.snap -------------------------------------------------------------------------------- /pkg/github/__toolsnaps__/merge_pull_request.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/pkg/github/__toolsnaps__/merge_pull_request.snap -------------------------------------------------------------------------------- /pkg/github/__toolsnaps__/pull_request_read.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/pkg/github/__toolsnaps__/pull_request_read.snap -------------------------------------------------------------------------------- /pkg/github/__toolsnaps__/pull_request_review_write.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/pkg/github/__toolsnaps__/pull_request_review_write.snap -------------------------------------------------------------------------------- /pkg/github/__toolsnaps__/push_files.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/pkg/github/__toolsnaps__/push_files.snap -------------------------------------------------------------------------------- /pkg/github/__toolsnaps__/request_copilot_review.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/pkg/github/__toolsnaps__/request_copilot_review.snap -------------------------------------------------------------------------------- /pkg/github/__toolsnaps__/rerun_failed_jobs.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/pkg/github/__toolsnaps__/rerun_failed_jobs.snap -------------------------------------------------------------------------------- /pkg/github/__toolsnaps__/rerun_workflow_run.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/pkg/github/__toolsnaps__/rerun_workflow_run.snap -------------------------------------------------------------------------------- /pkg/github/__toolsnaps__/run_workflow.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/pkg/github/__toolsnaps__/run_workflow.snap -------------------------------------------------------------------------------- /pkg/github/__toolsnaps__/search_code.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/pkg/github/__toolsnaps__/search_code.snap -------------------------------------------------------------------------------- /pkg/github/__toolsnaps__/search_issues.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/pkg/github/__toolsnaps__/search_issues.snap -------------------------------------------------------------------------------- /pkg/github/__toolsnaps__/search_orgs.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/pkg/github/__toolsnaps__/search_orgs.snap -------------------------------------------------------------------------------- /pkg/github/__toolsnaps__/search_pull_requests.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/pkg/github/__toolsnaps__/search_pull_requests.snap -------------------------------------------------------------------------------- /pkg/github/__toolsnaps__/search_repositories.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/pkg/github/__toolsnaps__/search_repositories.snap -------------------------------------------------------------------------------- /pkg/github/__toolsnaps__/search_users.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/pkg/github/__toolsnaps__/search_users.snap -------------------------------------------------------------------------------- /pkg/github/__toolsnaps__/star_repository.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/pkg/github/__toolsnaps__/star_repository.snap -------------------------------------------------------------------------------- /pkg/github/__toolsnaps__/sub_issue_write.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/pkg/github/__toolsnaps__/sub_issue_write.snap -------------------------------------------------------------------------------- /pkg/github/__toolsnaps__/unstar_repository.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/pkg/github/__toolsnaps__/unstar_repository.snap -------------------------------------------------------------------------------- /pkg/github/__toolsnaps__/update_gist.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/pkg/github/__toolsnaps__/update_gist.snap -------------------------------------------------------------------------------- /pkg/github/__toolsnaps__/update_project_item.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/pkg/github/__toolsnaps__/update_project_item.snap -------------------------------------------------------------------------------- /pkg/github/__toolsnaps__/update_pull_request.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/pkg/github/__toolsnaps__/update_pull_request.snap -------------------------------------------------------------------------------- /pkg/github/__toolsnaps__/update_pull_request_branch.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/pkg/github/__toolsnaps__/update_pull_request_branch.snap -------------------------------------------------------------------------------- /pkg/github/actions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/pkg/github/actions.go -------------------------------------------------------------------------------- /pkg/github/actions_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/pkg/github/actions_test.go -------------------------------------------------------------------------------- /pkg/github/code_scanning.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/pkg/github/code_scanning.go -------------------------------------------------------------------------------- /pkg/github/code_scanning_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/pkg/github/code_scanning_test.go -------------------------------------------------------------------------------- /pkg/github/context_tools.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/pkg/github/context_tools.go -------------------------------------------------------------------------------- /pkg/github/context_tools_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/pkg/github/context_tools_test.go -------------------------------------------------------------------------------- /pkg/github/dependabot.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/pkg/github/dependabot.go -------------------------------------------------------------------------------- /pkg/github/dependabot_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/pkg/github/dependabot_test.go -------------------------------------------------------------------------------- /pkg/github/deprecated_tool_aliases.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/pkg/github/deprecated_tool_aliases.go -------------------------------------------------------------------------------- /pkg/github/discussions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/pkg/github/discussions.go -------------------------------------------------------------------------------- /pkg/github/discussions_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/pkg/github/discussions_test.go -------------------------------------------------------------------------------- /pkg/github/dynamic_tools.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/pkg/github/dynamic_tools.go -------------------------------------------------------------------------------- /pkg/github/feature_flags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/pkg/github/feature_flags.go -------------------------------------------------------------------------------- /pkg/github/gists.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/pkg/github/gists.go -------------------------------------------------------------------------------- /pkg/github/gists_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/pkg/github/gists_test.go -------------------------------------------------------------------------------- /pkg/github/git.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/pkg/github/git.go -------------------------------------------------------------------------------- /pkg/github/git_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/pkg/github/git_test.go -------------------------------------------------------------------------------- /pkg/github/helper_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/pkg/github/helper_test.go -------------------------------------------------------------------------------- /pkg/github/instructions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/pkg/github/instructions.go -------------------------------------------------------------------------------- /pkg/github/instructions_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/pkg/github/instructions_test.go -------------------------------------------------------------------------------- /pkg/github/issues.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/pkg/github/issues.go -------------------------------------------------------------------------------- /pkg/github/issues_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/pkg/github/issues_test.go -------------------------------------------------------------------------------- /pkg/github/labels.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/pkg/github/labels.go -------------------------------------------------------------------------------- /pkg/github/labels_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/pkg/github/labels_test.go -------------------------------------------------------------------------------- /pkg/github/minimal_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/pkg/github/minimal_types.go -------------------------------------------------------------------------------- /pkg/github/notifications.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/pkg/github/notifications.go -------------------------------------------------------------------------------- /pkg/github/notifications_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/pkg/github/notifications_test.go -------------------------------------------------------------------------------- /pkg/github/projects.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/pkg/github/projects.go -------------------------------------------------------------------------------- /pkg/github/projects_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/pkg/github/projects_test.go -------------------------------------------------------------------------------- /pkg/github/pullrequests.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/pkg/github/pullrequests.go -------------------------------------------------------------------------------- /pkg/github/pullrequests_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/pkg/github/pullrequests_test.go -------------------------------------------------------------------------------- /pkg/github/repositories.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/pkg/github/repositories.go -------------------------------------------------------------------------------- /pkg/github/repositories_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/pkg/github/repositories_test.go -------------------------------------------------------------------------------- /pkg/github/repository_resource.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/pkg/github/repository_resource.go -------------------------------------------------------------------------------- /pkg/github/repository_resource_completions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/pkg/github/repository_resource_completions.go -------------------------------------------------------------------------------- /pkg/github/repository_resource_completions_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/pkg/github/repository_resource_completions_test.go -------------------------------------------------------------------------------- /pkg/github/repository_resource_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/pkg/github/repository_resource_test.go -------------------------------------------------------------------------------- /pkg/github/search.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/pkg/github/search.go -------------------------------------------------------------------------------- /pkg/github/search_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/pkg/github/search_test.go -------------------------------------------------------------------------------- /pkg/github/search_utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/pkg/github/search_utils.go -------------------------------------------------------------------------------- /pkg/github/search_utils_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/pkg/github/search_utils_test.go -------------------------------------------------------------------------------- /pkg/github/secret_scanning.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/pkg/github/secret_scanning.go -------------------------------------------------------------------------------- /pkg/github/secret_scanning_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/pkg/github/secret_scanning_test.go -------------------------------------------------------------------------------- /pkg/github/security_advisories.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/pkg/github/security_advisories.go -------------------------------------------------------------------------------- /pkg/github/security_advisories_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/pkg/github/security_advisories_test.go -------------------------------------------------------------------------------- /pkg/github/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/pkg/github/server.go -------------------------------------------------------------------------------- /pkg/github/server_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/pkg/github/server_test.go -------------------------------------------------------------------------------- /pkg/github/tools.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/pkg/github/tools.go -------------------------------------------------------------------------------- /pkg/github/tools_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/pkg/github/tools_test.go -------------------------------------------------------------------------------- /pkg/github/workflow_prompts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/pkg/github/workflow_prompts.go -------------------------------------------------------------------------------- /pkg/lockdown/lockdown.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/pkg/lockdown/lockdown.go -------------------------------------------------------------------------------- /pkg/lockdown/lockdown_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/pkg/lockdown/lockdown_test.go -------------------------------------------------------------------------------- /pkg/log/io.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/pkg/log/io.go -------------------------------------------------------------------------------- /pkg/log/io_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/pkg/log/io_test.go -------------------------------------------------------------------------------- /pkg/raw/raw.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/pkg/raw/raw.go -------------------------------------------------------------------------------- /pkg/raw/raw_mock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/pkg/raw/raw_mock.go -------------------------------------------------------------------------------- /pkg/raw/raw_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/pkg/raw/raw_test.go -------------------------------------------------------------------------------- /pkg/sanitize/sanitize.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/pkg/sanitize/sanitize.go -------------------------------------------------------------------------------- /pkg/sanitize/sanitize_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/pkg/sanitize/sanitize_test.go -------------------------------------------------------------------------------- /pkg/toolsets/toolsets.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/pkg/toolsets/toolsets.go -------------------------------------------------------------------------------- /pkg/toolsets/toolsets_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/pkg/toolsets/toolsets_test.go -------------------------------------------------------------------------------- /pkg/translations/translations.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/pkg/translations/translations.go -------------------------------------------------------------------------------- /pkg/utils/result.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/pkg/utils/result.go -------------------------------------------------------------------------------- /script/generate-docs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/script/generate-docs -------------------------------------------------------------------------------- /script/get-discussions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/script/get-discussions -------------------------------------------------------------------------------- /script/get-me: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/script/get-me -------------------------------------------------------------------------------- /script/licenses: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/script/licenses -------------------------------------------------------------------------------- /script/licenses-check: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/script/licenses-check -------------------------------------------------------------------------------- /script/lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/script/lint -------------------------------------------------------------------------------- /script/prettyprint-log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/script/prettyprint-log -------------------------------------------------------------------------------- /script/tag-release: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/script/tag-release -------------------------------------------------------------------------------- /script/test: -------------------------------------------------------------------------------- 1 | set -eu 2 | 3 | go test -race ./... -------------------------------------------------------------------------------- /server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/server.json -------------------------------------------------------------------------------- /third-party-licenses.darwin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/third-party-licenses.darwin.md -------------------------------------------------------------------------------- /third-party-licenses.linux.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/third-party-licenses.linux.md -------------------------------------------------------------------------------- /third-party-licenses.windows.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/third-party-licenses.windows.md -------------------------------------------------------------------------------- /third-party/github.com/aymerick/douceur/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/third-party/github.com/aymerick/douceur/LICENSE -------------------------------------------------------------------------------- /third-party/github.com/fsnotify/fsnotify/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/third-party/github.com/fsnotify/fsnotify/LICENSE -------------------------------------------------------------------------------- /third-party/github.com/go-openapi/jsonpointer/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/third-party/github.com/go-openapi/jsonpointer/LICENSE -------------------------------------------------------------------------------- /third-party/github.com/go-openapi/swag/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/third-party/github.com/go-openapi/swag/LICENSE -------------------------------------------------------------------------------- /third-party/github.com/go-viper/mapstructure/v2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/third-party/github.com/go-viper/mapstructure/v2/LICENSE -------------------------------------------------------------------------------- /third-party/github.com/google/go-github/v71/github/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/third-party/github.com/google/go-github/v71/github/LICENSE -------------------------------------------------------------------------------- /third-party/github.com/google/go-github/v79/github/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/third-party/github.com/google/go-github/v79/github/LICENSE -------------------------------------------------------------------------------- /third-party/github.com/google/go-querystring/query/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/third-party/github.com/google/go-querystring/query/LICENSE -------------------------------------------------------------------------------- /third-party/github.com/google/jsonschema-go/jsonschema/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/third-party/github.com/google/jsonschema-go/jsonschema/LICENSE -------------------------------------------------------------------------------- /third-party/github.com/gorilla/css/scanner/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/third-party/github.com/gorilla/css/scanner/LICENSE -------------------------------------------------------------------------------- /third-party/github.com/gorilla/mux/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/third-party/github.com/gorilla/mux/LICENSE -------------------------------------------------------------------------------- /third-party/github.com/inconshreveable/mousetrap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/third-party/github.com/inconshreveable/mousetrap/LICENSE -------------------------------------------------------------------------------- /third-party/github.com/josephburnett/jd/v2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/third-party/github.com/josephburnett/jd/v2/LICENSE -------------------------------------------------------------------------------- /third-party/github.com/josharian/intern/license.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/third-party/github.com/josharian/intern/license.md -------------------------------------------------------------------------------- /third-party/github.com/mailru/easyjson/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/third-party/github.com/mailru/easyjson/LICENSE -------------------------------------------------------------------------------- /third-party/github.com/microcosm-cc/bluemonday/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/third-party/github.com/microcosm-cc/bluemonday/LICENSE.md -------------------------------------------------------------------------------- /third-party/github.com/migueleliasweb/go-github-mock/src/mock/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/third-party/github.com/migueleliasweb/go-github-mock/src/mock/LICENSE -------------------------------------------------------------------------------- /third-party/github.com/modelcontextprotocol/go-sdk/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/third-party/github.com/modelcontextprotocol/go-sdk/LICENSE -------------------------------------------------------------------------------- /third-party/github.com/muesli/cache2go/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/third-party/github.com/muesli/cache2go/LICENSE.txt -------------------------------------------------------------------------------- /third-party/github.com/pelletier/go-toml/v2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/third-party/github.com/pelletier/go-toml/v2/LICENSE -------------------------------------------------------------------------------- /third-party/github.com/sagikazarmark/locafero/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/third-party/github.com/sagikazarmark/locafero/LICENSE -------------------------------------------------------------------------------- /third-party/github.com/shurcooL/githubv4/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/third-party/github.com/shurcooL/githubv4/LICENSE -------------------------------------------------------------------------------- /third-party/github.com/shurcooL/graphql/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/third-party/github.com/shurcooL/graphql/LICENSE -------------------------------------------------------------------------------- /third-party/github.com/sourcegraph/conc/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/third-party/github.com/sourcegraph/conc/LICENSE -------------------------------------------------------------------------------- /third-party/github.com/spf13/afero/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/third-party/github.com/spf13/afero/LICENSE.txt -------------------------------------------------------------------------------- /third-party/github.com/spf13/cast/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/third-party/github.com/spf13/cast/LICENSE -------------------------------------------------------------------------------- /third-party/github.com/spf13/cobra/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/third-party/github.com/spf13/cobra/LICENSE.txt -------------------------------------------------------------------------------- /third-party/github.com/spf13/pflag/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/third-party/github.com/spf13/pflag/LICENSE -------------------------------------------------------------------------------- /third-party/github.com/spf13/viper/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/third-party/github.com/spf13/viper/LICENSE -------------------------------------------------------------------------------- /third-party/github.com/subosito/gotenv/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/third-party/github.com/subosito/gotenv/LICENSE -------------------------------------------------------------------------------- /third-party/github.com/yosida95/uritemplate/v3/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/third-party/github.com/yosida95/uritemplate/v3/LICENSE -------------------------------------------------------------------------------- /third-party/github.com/yudai/golcs/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/third-party/github.com/yudai/golcs/LICENSE -------------------------------------------------------------------------------- /third-party/go.yaml.in/yaml/v3/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/third-party/go.yaml.in/yaml/v3/LICENSE -------------------------------------------------------------------------------- /third-party/go.yaml.in/yaml/v3/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/third-party/go.yaml.in/yaml/v3/NOTICE -------------------------------------------------------------------------------- /third-party/golang.org/x/exp/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/third-party/golang.org/x/exp/LICENSE -------------------------------------------------------------------------------- /third-party/golang.org/x/net/html/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/third-party/golang.org/x/net/html/LICENSE -------------------------------------------------------------------------------- /third-party/golang.org/x/sys/unix/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/third-party/golang.org/x/sys/unix/LICENSE -------------------------------------------------------------------------------- /third-party/golang.org/x/sys/windows/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/third-party/golang.org/x/sys/windows/LICENSE -------------------------------------------------------------------------------- /third-party/golang.org/x/text/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/third-party/golang.org/x/text/LICENSE -------------------------------------------------------------------------------- /third-party/golang.org/x/time/rate/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/third-party/golang.org/x/time/rate/LICENSE -------------------------------------------------------------------------------- /third-party/gopkg.in/yaml.v2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/third-party/gopkg.in/yaml.v2/LICENSE -------------------------------------------------------------------------------- /third-party/gopkg.in/yaml.v2/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-mcp-server/HEAD/third-party/gopkg.in/yaml.v2/NOTICE --------------------------------------------------------------------------------