From 54f360b14127c97879d58a1cbc8e312156aaa4f9 Mon Sep 17 00:00:00 2001 From: tonytrg Date: Fri, 11 Apr 2025 13:49:43 +0200 Subject: [PATCH 1/3] Ignore other local vscode configuration --- .gitignore | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 9fb1dca9d5..3c37bc7e46 100644 --- a/.gitignore +++ b/.gitignore @@ -2,4 +2,8 @@ cmd/github-mcp-server/github-mcp-server # Added by goreleaser init: dist/ -__debug_bin* \ No newline at end of file +__debug_bin* + +# Explicitly allow vscode configuration +.vscode/* +!.vscode/launch.json From 09c49bc95622734b6ed315cb7c4adddaa02a0de2 Mon Sep 17 00:00:00 2001 From: tonytrg Date: Fri, 11 Apr 2025 14:24:41 +0200 Subject: [PATCH 2/3] minor edits for gitignore and readme --- .gitignore | 6 +++++- README.md | 3 ++- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 3c37bc7e46..80b6e95857 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,5 @@ .idea -cmd/github-mcp-server/github-mcp-server + # Added by goreleaser init: dist/ __debug_bin* @@ -7,3 +7,7 @@ __debug_bin* # Explicitly allow vscode configuration .vscode/* !.vscode/launch.json + +# Ignore go binaries +cmd/github-mcp-server/github-mcp-server +github-mcp-server diff --git a/README.md b/README.md index f85663ab4b..f73dfe6fc9 100644 --- a/README.md +++ b/README.md @@ -18,7 +18,8 @@ automation and interaction capabilities for developers and tools. 2. Once Docker is installed, you will also need to ensure Docker is running. 3. Lastly you will need to [Create a GitHub Personal Access Token](https://github.com/settings/personal-access-tokens/new). 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)). - + * Your PAT Token needs at least `read:packages` permission to be able to pull from `ghcr.io`. +4. Login via `docker login ghcr.io -u -p `. ## Installation From b752bb4628374dc736c0acfb4d8b61960c938f70 Mon Sep 17 00:00:00 2001 From: Tony Truong Date: Fri, 11 Apr 2025 14:27:56 +0200 Subject: [PATCH 3/3] Update README.md Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- README.md | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/README.md b/README.md index f73dfe6fc9..6134150ea0 100644 --- a/README.md +++ b/README.md @@ -18,9 +18,7 @@ automation and interaction capabilities for developers and tools. 2. Once Docker is installed, you will also need to ensure Docker is running. 3. Lastly you will need to [Create a GitHub Personal Access Token](https://github.com/settings/personal-access-tokens/new). 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)). - * Your PAT Token needs at least `read:packages` permission to be able to pull from `ghcr.io`. -4. Login via `docker login ghcr.io -u -p `. - + * Your PAT token needs at least `read:packages` permission to be able to pull from `ghcr.io`. ## Installation