From fd03aaf78b5dc6f9998dcf9fdaaa2aab16422c03 Mon Sep 17 00:00:00 2001 From: Jeff Sagal Date: Fri, 30 Jan 2026 12:35:42 -0800 Subject: [PATCH] chore(claude): setup github auth --- .claude/settings.local.json.example | 5 +++++ .mcp.json | 11 +++++++++++ 2 files changed, 16 insertions(+) create mode 100644 .claude/settings.local.json.example create mode 100644 .mcp.json diff --git a/.claude/settings.local.json.example b/.claude/settings.local.json.example new file mode 100644 index 0000000..9cba7cf --- /dev/null +++ b/.claude/settings.local.json.example @@ -0,0 +1,5 @@ +{ + "env": { + "GH_TOKEN": "" + } +} diff --git a/.mcp.json b/.mcp.json new file mode 100644 index 0000000..a3ffd97 --- /dev/null +++ b/.mcp.json @@ -0,0 +1,11 @@ +{ + "mcpServers": { + "github": { + "type": "http", + "url": "https://api.githubcopilot.com/mcp", + "headers": { + "Authorization": "Bearer ${GH_TOKEN}" + } + } + } +}