Skip to content

Commit 163db78

Browse files
tablackburnclaude
andcommitted
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 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_018ypQTqqVy5n8xMPxQSKLMC
1 parent 91ae3e5 commit 163db78

1 file changed

Lines changed: 11 additions & 0 deletions

File tree

.mcp.json

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"mcpServers": {
3+
"github-projects": {
4+
"type": "http",
5+
"url": "https://api.githubcopilot.com/mcp/x/projects",
6+
"headers": {
7+
"Authorization": "Bearer ${GH_TOKEN}"
8+
}
9+
}
10+
}
11+
}

0 commit comments

Comments
 (0)