From fba6a38b308b34b8eddcaf212ad96739c0f10085 Mon Sep 17 00:00:00 2001 From: Bupalchow Date: Mon, 21 Jul 2025 15:55:11 +0530 Subject: [PATCH 1/2] Added installation instructions for mcpcurl --- cmd/mcpcurl/README.md | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/cmd/mcpcurl/README.md b/cmd/mcpcurl/README.md index 317c2b8e5..6097c9064 100644 --- a/cmd/mcpcurl/README.md +++ b/cmd/mcpcurl/README.md @@ -15,6 +15,26 @@ be executed against the configured MCP server. ## Installation +### Prerequisites +- Go 1.21 or later +- Access to the GitHub MCP Server form either Docker or local build + +### Build from Source +```bash +cd cmd/mcpcurl +go build -o mcpcurl +``` + +### Using Go Install +```bash +go install github.com/github/github-mcp-server/cmd/mcpcurl@latest +``` + +### Verify Installation +```bash +./mcpcurl --help +``` + ## Usage ```console From 119d855349eb67325d8035a0598c89b7be46cb60 Mon Sep 17 00:00:00 2001 From: Bupal Chowdary <136565586+Bupalchow@users.noreply.github.com> Date: Mon, 21 Jul 2025 15:58:34 +0530 Subject: [PATCH 2/2] Update cmd/mcpcurl/README.md Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- cmd/mcpcurl/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/mcpcurl/README.md b/cmd/mcpcurl/README.md index 6097c9064..717ea207f 100644 --- a/cmd/mcpcurl/README.md +++ b/cmd/mcpcurl/README.md @@ -17,7 +17,7 @@ be executed against the configured MCP server. ### Prerequisites - Go 1.21 or later -- Access to the GitHub MCP Server form either Docker or local build +- Access to the GitHub MCP Server from either Docker or local build ### Build from Source ```bash