MCP
Model Context Protocol (MCP) is a way to integrate with tooling when doing generative AI work.
This is an awesome list of interesting MCP servers and a registry.
GitHub MCP server
Installing the GitHub MCP server for Claude is quite easy.
- Create an access token
- Add the token to an
.envfile
GITHUB_PAT=your_token_here
- Run the following command:
export GITHUB_PAT="$(grep '^GITHUB_PAT=' .env | cut -d '=' -f2-)"
claude mcp add-json github '{"type":"http","url":"https://api.githubcopilot.com/mcp","headers":{"Authorization":"Bearer '"$GITHUB_PAT"'"}}'
The entire guide is included in the GitHub MCP repository documentation