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
+17-2Lines changed: 17 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -15,7 +15,8 @@ automation and interaction capabilities for developers and tools.
15
15
## Prerequisites
16
16
17
17
1. To run the server in a container, you will need to have [Docker](https://www.docker.com/) installed.
18
-
2.[Create a GitHub Personal Access Token](https://github.com/settings/personal-access-tokens/new).
18
+
2. Once Docker is installed, you will also need to ensure Docker is running.
19
+
3. Lastly you will need to [Create a GitHub Personal Access Token](https://github.com/settings/personal-access-tokens/new).
19
20
The MCP server can use many of the GitHub APIs, so enable the permissions that you feel comfortable granting your AI tools (to learn more about access tokens, please check out the [documentation](https://docs.github.com/en/authentication/keeping-your-account-and-data-secure/managing-your-personal-access-tokens)).
20
21
21
22
@@ -331,6 +332,13 @@ export GITHUB_MCP_TOOL_ADD_ISSUE_COMMENT_DESCRIPTION="an alternative description
331
332
-`branch`: Branch name (string, optional)
332
333
-`sha`: File SHA if updating (string, optional)
333
334
335
+
-**list_branches** - List branches in a GitHub repository
336
+
337
+
-`owner`: Repository owner (string, required)
338
+
-`repo`: Repository name (string, required)
339
+
-`page`: Page number (number, optional)
340
+
-`perPage`: Results per page (number, optional)
341
+
334
342
-**push_files** - Push multiple files in a single commit
335
343
336
344
-`owner`: Repository owner (string, required)
@@ -374,14 +382,21 @@ export GITHUB_MCP_TOOL_ADD_ISSUE_COMMENT_DESCRIPTION="an alternative description
374
382
-`branch`: New branch name (string, required)
375
383
-`sha`: SHA to create branch from (string, required)
376
384
377
-
-**list_commits** - Gets commits of a branch in a repository
385
+
-**list_commits** - Get a list of commits of a branch in a repository
378
386
-`owner`: Repository owner (string, required)
379
387
-`repo`: Repository name (string, required)
380
388
-`sha`: Branch name, tag, or commit SHA (string, optional)
381
389
-`path`: Only commits containing this file path (string, optional)
382
390
-`page`: Page number (number, optional)
383
391
-`perPage`: Results per page (number, optional)
384
392
393
+
-**get_commit** - Get details for a commit from a repository
394
+
-`owner`: Repository owner (string, required)
395
+
-`repo`: Repository name (string, required)
396
+
-`sha`: Commit SHA, branch name, or tag name (string, required)
397
+
-`page`: Page number, for files in the commit (number, optional)
398
+
-`perPage`: Results per page, for files in the commit (number, optional)
399
+
385
400
### Search
386
401
387
402
-**search_code** - Search for code across GitHub repositories
0 commit comments