LICENSE
LICENSE-COMMERCIAL
README.md
pyproject.toml
setup.py
src/github_mcp/__init__.py
src/github_mcp/__main__.py
src/github_mcp/cli.py
src/github_mcp/deno.json
src/github_mcp/deno_runtime.py
src/github_mcp/server.py
src/github_mcp/auth/github_app.py
src/github_mcp/deno_executor/README.md
src/github_mcp/deno_executor/code-validator.test.ts
src/github_mcp/deno_executor/code-validator.ts
src/github_mcp/deno_executor/error-codes.ts
src/github_mcp/deno_executor/error-handling.test.ts
src/github_mcp/deno_executor/mod-pooled.ts
src/github_mcp/deno_executor/mod.ts
src/github_mcp/deno_executor/test_runtime.ts
src/github_mcp/deno_executor/tool-definitions.ts
src/github_mcp/models/__init__.py
src/github_mcp/models/enums.py
src/github_mcp/models/inputs.py
src/github_mcp/servers/client-deno.ts
src/github_mcp/servers/client.ts
src/github_mcp/servers/package-lock.json
src/github_mcp/servers/package.json
src/github_mcp/servers/test-connection.ts
src/github_mcp/servers/test-error-handling.ts
src/github_mcp/servers/test-params.ts
src/github_mcp/servers/test-simple.ts
src/github_mcp/servers/test-tool-call.ts
src/github_mcp/servers/tsconfig.json
src/github_mcp/servers/github/index.ts
src/github_mcp/servers/github/advisor/github-suggest-workflow.ts
src/github_mcp/servers/github/advisor/index.ts
src/github_mcp/servers/github/commits/github-list-commits.ts
src/github_mcp/servers/github/commits/index.ts
src/github_mcp/servers/github/files/github-batch-file-operations.ts
src/github_mcp/servers/github/files/github-create-file.ts
src/github_mcp/servers/github/files/github-delete-file.ts
src/github_mcp/servers/github/files/github-get-file-content.ts
src/github_mcp/servers/github/files/github-update-file.ts
src/github_mcp/servers/github/files/index.ts
src/github_mcp/servers/github/issues/github-create-issue.ts
src/github_mcp/servers/github/issues/github-list-issues.ts
src/github_mcp/servers/github/issues/github-search-issues.ts
src/github_mcp/servers/github/issues/github-update-issue.ts
src/github_mcp/servers/github/issues/index.ts
src/github_mcp/servers/github/license/github-license-info.ts
src/github_mcp/servers/github/license/index.ts
src/github_mcp/servers/github/pulls/github-close-pull-request.ts
src/github_mcp/servers/github/pulls/github-create-pr-review.ts
src/github_mcp/servers/github/pulls/github-create-pull-request.ts
src/github_mcp/servers/github/pulls/github-get-pr-details.ts
src/github_mcp/servers/github/pulls/github-get-pr-overview-graphql.ts
src/github_mcp/servers/github/pulls/github-list-pull-requests.ts
src/github_mcp/servers/github/pulls/github-merge-pull-request.ts
src/github_mcp/servers/github/pulls/index.ts
src/github_mcp/servers/github/releases/github-create-release.ts
src/github_mcp/servers/github/releases/github-delete-release.ts
src/github_mcp/servers/github/releases/github-get-release.ts
src/github_mcp/servers/github/releases/github-list-releases.ts
src/github_mcp/servers/github/releases/github-update-release.ts
src/github_mcp/servers/github/releases/index.ts
src/github_mcp/servers/github/remote/github-grep.ts
src/github_mcp/servers/github/remote/github-read-file-chunk.ts
src/github_mcp/servers/github/remote/github-str-replace.ts
src/github_mcp/servers/github/remote/index.ts
src/github_mcp/servers/github/repos/github-archive-repository.ts
src/github_mcp/servers/github/repos/github-create-repository.ts
src/github_mcp/servers/github/repos/github-get-repo-info.ts
src/github_mcp/servers/github/repos/github-list-repo-contents.ts
src/github_mcp/servers/github/repos/github-update-repository.ts
src/github_mcp/servers/github/repos/index.ts
src/github_mcp/servers/github/search/github-search-code.ts
src/github_mcp/servers/github/search/github-search-repositories.ts
src/github_mcp/servers/github/search/index.ts
src/github_mcp/servers/github/users/github-get-user-info.ts
src/github_mcp/servers/github/users/index.ts
src/github_mcp/servers/github/workflows/github-get-workflow-runs.ts
src/github_mcp/servers/github/workflows/github-list-workflows.ts
src/github_mcp/servers/github/workflows/index.ts
src/github_mcp/servers/github/workspace/index.ts
src/github_mcp/servers/github/workspace/workspace-grep.ts
src/github_mcp/servers/github/workspace/workspace-read-file.ts
src/github_mcp/servers/github/workspace/workspace-str-replace.ts
src/github_mcp/tools/__init__.py
src/github_mcp/tools/actions.py
src/github_mcp/tools/branches.py
src/github_mcp/tools/collaborators.py
src/github_mcp/tools/comments.py
src/github_mcp/tools/commits.py
src/github_mcp/tools/discussions.py
src/github_mcp/tools/files.py
src/github_mcp/tools/gists.py
src/github_mcp/tools/issues.py
src/github_mcp/tools/labels.py
src/github_mcp/tools/misc.py
src/github_mcp/tools/notifications.py
src/github_mcp/tools/projects.py
src/github_mcp/tools/pull_requests.py
src/github_mcp/tools/releases.py
src/github_mcp/tools/repositories.py
src/github_mcp/tools/search.py
src/github_mcp/tools/security.py
src/github_mcp/tools/stargazers.py
src/github_mcp/tools/users.py
src/github_mcp/tools/workspace.py
src/github_mcp/utils/__init__.py
src/github_mcp/utils/deno_pool.py
src/github_mcp/utils/errors.py
src/github_mcp/utils/formatting.py
src/github_mcp/utils/github_client.py
src/github_mcp/utils/graphql_client.py
src/github_mcp/utils/health.py
src/github_mcp/utils/license_manager.py
src/github_mcp/utils/pool_stats.py
src/github_mcp/utils/requests.py
src/github_mcp/utils/typing_helpers.py
src/github_mcp/utils/workspace_validation.py
src/github_mcp_server.egg-info/PKG-INFO
src/github_mcp_server.egg-info/SOURCES.txt
src/github_mcp_server.egg-info/dependency_links.txt
src/github_mcp_server.egg-info/entry_points.txt
src/github_mcp_server.egg-info/requires.txt
src/github_mcp_server.egg-info/top_level.txt
tests/test_actions_tools.py
tests/test_auth.py
tests/test_contracts.py
tests/test_deno_pool.py
tests/test_deno_runtime.py
tests/test_discussions_tools.py
tests/test_execute_code.py
tests/test_execute_code_mcp.py
tests/test_individual_tools.py
tests/test_notifications_collaborators_tools.py
tests/test_projects_tools.py
tests/test_regressions.py
tests/test_response_formatting.py
tests/test_security_tools.py
tests/test_smoke.py
tests/test_tool_discovery.py
tests/test_tool_integration.py
tests/test_tool_schemas.py
tests/test_utilities.py
tests/test_write_operations_auth.py
tests/test_write_operations_integration.py