From 87337f0dcff62b2b8022138bf59853e6a54ec10e Mon Sep 17 00:00:00 2001 From: t34wrj <34412560+t34wrj@users.noreply.github.com> Date: Fri, 15 Aug 2025 10:54:57 +0100 Subject: [PATCH] Update install-claude.md Removed instructions to add MCP server using `claude mcp add` and then `claude mcp update` (to add Github PAT env variable) as `claude mcp update` command no longer exists (https://docs.anthropic.com/en/docs/claude-code/cli-reference) --- docs/installation-guides/install-claude.md | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/docs/installation-guides/install-claude.md b/docs/installation-guides/install-claude.md index 2c50be2f9..8267125d9 100644 --- a/docs/installation-guides/install-claude.md +++ b/docs/installation-guides/install-claude.md @@ -42,16 +42,6 @@ Claude Code CLI provides command-line access to Claude with MCP server integrati Run the following command to add the GitHub MCP server using Docker: -```bash -claude mcp add github -- docker run -i --rm -e GITHUB_PERSONAL_ACCESS_TOKEN ghcr.io/github/github-mcp-server -``` - -Then set the environment variable: -```bash -claude mcp update github -e GITHUB_PERSONAL_ACCESS_TOKEN=your_github_pat -``` - -Or as a single command with the token inline: ```bash claude mcp add-json github '{"command": "docker", "args": ["run", "-i", "--rm", "-e", "GITHUB_PERSONAL_ACCESS_TOKEN", "ghcr.io/github/github-mcp-server"], "env": {"GITHUB_PERSONAL_ACCESS_TOKEN": "your_github_pat"}}' ```