From 163db780d6591b42672d0d8fecd2d927834cd9b0 Mon Sep 17 00:00:00 2001 From: Trent Blackburn Date: Sat, 4 Jul 2026 11:32:50 -0400 Subject: [PATCH] chore: Add GitHub Projects MCP server for AI agent board access Adds a project-scoped MCP configuration pointing at the official GitHub MCP server's projects toolset. This gives AI agents (Claude Code cloud sessions, local agents) CRUD access to the psake org project board, which is otherwise unreachable from cloud sandboxes because their GitHub API proxy only serves a pinned set of GraphQL operations and Projects v2 has no REST API. The server authenticates with a GH_TOKEN environment variable (classic PAT with the project scope, or a fine-grained PAT with Projects permissions). Agents without GH_TOKEN set simply see the server as unavailable; nothing else changes. Co-Authored-By: Claude Fable 5 Claude-Session: https://claude.ai/code/session_018ypQTqqVy5n8xMPxQSKLMC --- .mcp.json | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .mcp.json diff --git a/.mcp.json b/.mcp.json new file mode 100644 index 0000000..0027517 --- /dev/null +++ b/.mcp.json @@ -0,0 +1,11 @@ +{ + "mcpServers": { + "github-projects": { + "type": "http", + "url": "https://api.githubcopilot.com/mcp/x/projects", + "headers": { + "Authorization": "Bearer ${GH_TOKEN}" + } + } + } +}