You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+16-1Lines changed: 16 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -870,7 +870,7 @@ export GITHUB_MCP_TOOL_ADD_ISSUE_COMMENT_DESCRIPTION="an alternative description
870
870
-`owner`: Repository owner (username or organization) (string, required)
871
871
-`path`: Path where to create/update the file (string, required)
872
872
-`repo`: Repository name (string, required)
873
-
-`sha`: SHA of file being replaced (for updates) (string, optional)
873
+
-`sha`: Required if updating an existing file. The blob SHA of the file being replaced. (string, optional)
874
874
875
875
-**create_repository** - Create repository
876
876
-`autoInit`: Initialize with README (boolean, optional)
@@ -982,6 +982,21 @@ export GITHUB_MCP_TOOL_ADD_ISSUE_COMMENT_DESCRIPTION="an alternative description
982
982
</details>
983
983
<!-- END AUTOMATED TOOLS -->
984
984
985
+
### Additional Tools in Remote Github MCP Server
986
+
987
+
<details>
988
+
989
+
<summary>Copilot coding agent</summary>
990
+
991
+
-**create_pull_request_with_copilot** - Perform task with GitHub Copilot coding agent
992
+
-`owner`: Repository owner. You can guess the owner, but confirm it with the user before proceeding. (string, required)
993
+
-`repo`: Repository name. You can guess the repository name, but confirm it with the user before proceeding. (string, required)
994
+
-`problem_statement`: Detailed description of the task to be performed (e.g., 'Implement a feature that does X', 'Fix bug Y', etc.) (string, required)
995
+
-`title`: Title for the pull request that will be created (string, required)
996
+
-`base_ref`: Git reference (e.g., branch) that the agent will start its work from. If not specified, defaults to the repository's default branch (string, optional)
997
+
998
+
</details>
999
+
985
1000
## Library Usage
986
1001
987
1002
The exported Go API of this module should currently be considered unstable, and subject to breaking changes. In the future, we may offer stability; please file an issue if there is a use case where this would be valuable.
Copy file name to clipboardExpand all lines: docs/remote-server.md
+10Lines changed: 10 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -10,6 +10,8 @@ Easily connect to the GitHub MCP Server using the hosted version – no local se
10
10
11
11
The remote GitHub MCP server is built using this repository as a library, and binding it into GitHub server infrastructure with an internal repository. You can open issues and propose changes in this repository, and we regularly update the remote server to include the latest version of this code.
12
12
13
+
The remote server has [additional tools](#toolsets-only-available-in-the-remote-mcp-server) that are not available in the local MCP server, such as the `create_pull_request_with_copilot` tool for invoking Copilot coding agent.
14
+
13
15
## Remote MCP Toolsets
14
16
15
17
Below is a table of available toolsets for the remote GitHub MCP Server. Each toolset is provided as a distinct URL so you can mix and match to create the perfect combination of tools for your use-case. Add `/readonly` to the end of any URL to restrict the tools in the toolset to only those that enable read access. We also provide the option to use [headers](#headers) instead.
@@ -33,6 +35,14 @@ Below is a table of available toolsets for the remote GitHub MCP Server. Each to
33
35
34
36
<!-- END AUTOMATED TOOLSETS -->
35
37
38
+
### Additional _Remote_ Server Toolsets
39
+
40
+
These toolsets are only available in the remote GitHub MCP Server and are not included in the local MCP server.
41
+
42
+
| Name | Description | API URL | 1-Click Install (VS Code) | Read-only Link | 1-Click Read-only Install (VS Code) |
Copy file name to clipboardExpand all lines: pkg/github/__toolsnaps__/list_pull_requests.snap
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -3,7 +3,7 @@
3
3
"title": "List pull requests",
4
4
"readOnlyHint": true
5
5
},
6
-
"description": "List pull requests in a GitHub repository.",
6
+
"description": "List pull requests in a GitHub repository. If the user specifies an author, then DO NOT use this tool and use the search_pull_requests tool instead.",
Copy file name to clipboardExpand all lines: pkg/github/pullrequests.go
+1-2Lines changed: 1 addition & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -330,7 +330,7 @@ func UpdatePullRequest(getClient GetClientFn, t translations.TranslationHelperFu
330
330
// ListPullRequests creates a tool to list and filter repository pull requests.
331
331
funcListPullRequests(getClientGetClientFn, t translations.TranslationHelperFunc) (mcp.Tool, server.ToolHandlerFunc) {
332
332
returnmcp.NewTool("list_pull_requests",
333
-
mcp.WithDescription(t("TOOL_LIST_PULL_REQUESTS_DESCRIPTION", "List pull requests in a GitHub repository.")),
333
+
mcp.WithDescription(t("TOOL_LIST_PULL_REQUESTS_DESCRIPTION", "List pull requests in a GitHub repository. If the user specifies an author, then DO NOT use this tool and use the search_pull_requests tool instead.")),
0 commit comments