From 82ccb9e05ce48b45348f9880ac22a7d3e17420e3 Mon Sep 17 00:00:00 2001 From: Kassie Garcia <216642526+kgarcia181@users.noreply.github.com> Date: Sat, 21 Mar 2026 20:13:46 -0700 Subject: [PATCH] Add GitHub MCP server configuration to README Added configuration for GitHub MCP server with token input. --- README.md | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/README.md b/README.md index e9992694e..c138159d8 100644 --- a/README.md +++ b/README.md @@ -1572,3 +1572,31 @@ The exported Go API of this module should currently be considered unstable, and ## License This project is licensed under the terms of the MIT open source license. Please refer to [MIT](./LICENSE) for the full terms. +{ + "mcp": { + "inputs": [ + { + "type": "promptString", + "id": "github_token", + "description": "GitHub Personal Access Token", + "password": true + } + ], + "servers": { + "github": { + "command": "docker", + "args": [ + "run", + "-i", + "--rm", + "-e", + "GITHUB_PERSONAL_ACCESS_TOKEN", + "ghcr.io/github/github-mcp-server" + ], + "env": { + "GITHUB_PERSONAL_ACCESS_TOKEN": "${input:github_token}" + } + } + } + } +}