Skip to main content
On this page

adk-review:github

GitHub remote/hosted MCP at https://api.githubcopilot.com/mcp/ (read-only path; remove /readonly for write mode). Auth: PAT via Authorization: Bearer $GITHUB_PAT (fine-grained — Contents:Read, Pull Requests:Read+Write, Issues:Read+Write, Actions:Read, Metadata:Read, read:org, read:project, notifications). To use OAuth instead of PAT: delete the headers block; Claude Code will run the OAuth flow on first connect. For write mode (skills that post — review-pr, review-feedback, audit-pr postback): change /mcp/readonly → /mcp/ in the URL, or use the gh CLI fallback. See SETUP.md §4.1.

Source

plugins/adk-review/.mcp.json

Environment Variables

  • GITHUB_PAT

Configuration

JSON
{  "github": {    "type": "http",    "url": "https://api.githubcopilot.com/mcp/readonly",    "headers": {      "Authorization": "Bearer ${GITHUB_PAT}"    },    "description": "GitHub remote/hosted MCP at https://api.githubcopilot.com/mcp/ (read-only path; remove /readonly for write mode). Auth: PAT via Authorization: Bearer $GITHUB_PAT (fine-grained — Contents:Read, Pull Requests:Read+Write, Issues:Read+Write, Actions:Read, Metadata:Read, read:org, read:project, notifications). To use OAuth instead of PAT: delete the headers block; Claude Code will run the OAuth flow on first connect. For write mode (skills that post — review-pr, review-feedback, audit-pr postback): change /mcp/readonly → /mcp/ in the URL, or use the gh CLI fallback. See SETUP.md §4.1."  }}