Local MCP debug setup: launcher scripts, config, setup script, and EN/ZH docs. Secrets live in config/mcp/local-mcp.env (gitignored); commit a sanitized local-mcp.env.example template instead. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
9 lines
285 B
Bash
Executable File
9 lines
285 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
ROOT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")/../.." && pwd)"
|
|
. "${ROOT_DIR}/config/mcp/local-mcp.env"
|
|
exec docker run --rm -i \
|
|
-e GITHUB_PERSONAL_ACCESS_TOKEN \
|
|
-e GITHUB_TOOLSETS=default,actions \
|
|
ghcr.io/github/github-mcp-server:latest
|