Configuration GitHub MCP au niveau du projet

VérifiéSûr

Configure le MCP GitHub par projet pour Claude Code. Crée un fichier .mcp.json avec un jeton fictif, l'ajoute au .gitignore et guide l'utilisateur pour générer un PAT à granularité fine. Utile lorsque vous avez besoin d'accéder à GitHub (PRs, issues, dépôt) sans configuration MCP préexistante.

Spar Skills Guide Bot
DeveloppementIntermédiaire
4002/06/2026
Claude Code
#github#mcp-setup#project-configuration#pat

Recommandé pour

Notre avis

Configure l'accès GitHub au niveau du projet via MCP en utilisant un token d'accès personnel à granularité fine, pour permettre à Claude Code d'interagir avec les dépôts GitHub.

Points forts

  • Isolation des tokens par projet, limitant les risques de sécurité
  • Ajout automatique de .mcp.json au .gitignore pour éviter les fuites
  • Guide l'utilisateur pas à pas pour créer un token avec des permissions minimales
  • Propose à la fois une méthode fichier et une méthode CLI

Limites

  • Nécessite une création manuelle du token par l'utilisateur
  • Les tokens expirent et doivent être renouvelés périodiquement
  • Fonctionne uniquement avec le système MCP de Claude Code
Quand l'utiliser

Utilisez cette compétence lorsque vous devez accéder à des dépôts GitHub depuis Claude Code et que vous souhaitez une configuration sécurisée et limitée au projet.

Quand l'éviter

Ne l'utilisez pas pour un accès GitHub global ou pour des projets qui ne nécessitent pas d'opérations GitHub.

Analyse de sécurité

Sûr
Score qualité85/100

The skill only writes a placeholder config file and updates .gitignore; no destructive or exfiltrating actions are performed. It emphasizes not reading token-containing files and encourages fine-grained PATs. No code execution beyond safe grep is used.

Aucun point d'attention détecté

Exemples

Set up GitHub MCP for current project
Set up GitHub MCP for this project so I can access PRs and issues.
Create .mcp.json for GitHub
I need GitHub access from Claude Code. Please create the .mcp.json file and tell me how to configure it.
Add GitHub MCP via CLI
Add GitHub MCP to this project using the CLI method.

name: github-mcp description: Set up project-level GitHub MCP when GitHub operations (PRs, issues, repo access) are needed and no project GitHub MCP is configured. Automatically triggers when Claude detects GitHub access is required.

GitHub MCP Project Setup

This skill sets up per-project GitHub MCP configuration, keeping your GitHub Personal Access Token (PAT) isolated to specific projects rather than granting global access.

When to Use

Use this skill when:

  • You need to access GitHub (PRs, issues, repo content) from Claude Code
  • The project doesn't have GitHub MCP configured yet
  • You want to avoid using a global GitHub PAT

Security Notice

CRITICAL: Claude must NEVER read files that may contain tokens.

  • Never read .mcp.json after the user has added their token
  • Never read .env files or any files that might contain secrets
  • The user is responsible for adding their token directly to the file

Instructions for Claude

When this skill is invoked:

Step 1: Create .mcp.json with Placeholder

Write this file to the project root (creating or overwriting):

{
  "mcpServers": {
    "github": {
      "type": "http",
      "url": "https://api.githubcopilot.com/mcp",
      "headers": {
        "Authorization": "Bearer YOUR_TOKEN_HERE"
      }
    }
  }
}

Step 2: Update .gitignore

Add .mcp.json to .gitignore if not already present:

# Check and add to .gitignore
grep -q "^\.mcp\.json$" .gitignore 2>/dev/null || echo ".mcp.json" >> .gitignore

Step 3: Guide the User

Tell the user:

Setup complete! Now you need to:

  1. Create a Fine-Grained PAT at: https://github.com/settings/personal-access-tokens/new

    • Token name: "Claude Code - [project name]"
    • Expiration: 90 days (or as needed)
    • Repository access: "Only select repositories" → select just this repo
    • Permissions:
      • Contents: Read and write
      • Issues: Read and write
      • Pull requests: Read and write
      • Metadata: Read-only (auto-selected)
  2. Edit .mcp.json in your project root and replace YOUR_TOKEN_HERE with your PAT

  3. Restart Claude Code (MCP only loads on startup)

  4. Verify with: claude mcp list

Alternative: CLI Method

If preferred, the user can run this command directly (replacing with their actual PAT):

claude mcp add-json github '{"type":"http","url":"https://api.githubcopilot.com/mcp","headers":{"Authorization":"Bearer YOUR_PAT_HERE"}}' --scope project

This stores the token directly in the project config.

Security Notes

  • .mcp.json is automatically added to .gitignore to prevent accidental commits
  • Fine-grained PATs limit access to specific repositories only
  • Project-level config means the token only works in this project directory
  • Tokens can be revoked anytime at https://github.com/settings/tokens
  • Claude will never read the .mcp.json file after setup to protect your token
Skills similaires