Utilizes the GitHub CLI and existing authentication to securely access Copilot services and manage organization-specific AI configurations.
Integrates with GitHub Copilot to provide AI-powered code assistance, including features for code explanation, natural language code suggestions, code reviews, and a programming-focused chat interface.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Copilot MCP Serverexplain how this function works"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Copilot MCP Server
A Model Context Protocol (MCP) server that integrates with GitHub Copilot to provide AI-powered code assistance directly to Claude Code and other MCP-compatible tools.
Features
Chat with Copilot: Get general programming assistance using GitHub Copilot's AI models
Code Explanation: Detailed explanations of code snippets
Code Suggestions: Generate code based on natural language descriptions
Code Review: Get feedback and improvement suggestions for your code
Multiple AI Models: Support for GPT-4o, Claude 3.5 Sonnet, and Gemini 2.0 Flash
Rate Limiting: Built-in rate limiting to respect API limits
Automatic Authentication: Works with your existing GitHub Copilot CLI setup
Installation
Option 1: Using npx (Recommended)
Option 2: Manual Installation
Clone this repository:
Install dependencies:
Build the project:
Configuration
No Configuration Needed!
The server works out of the box with your existing GitHub Copilot authentication.
Optional Configuration
Only needed for special use cases. Create a .env file:
Optional settings:
Setup Requirements
Prerequisites:
GitHub Copilot Subscription: You need an active GitHub Copilot subscription
GitHub Copilot CLI Installed: Install and authenticate GitHub Copilot CLI:
# Install GitHub CLI first brew install gh # or your preferred method # Install GitHub Copilot CLI extension gh extension install github/gh-copilot # Authenticate (this will save tokens to ~/.config/github-copilot/) gh auth login
Authentication
Automatic Authentication (Recommended)
The MCP server automatically detects your GitHub Copilot authentication from:
~/.config/github-copilot/hosts.json~/.config/github-copilot/apps.json
No manual configuration needed if you have GitHub Copilot CLI installed and authenticated!
Troubleshooting Authentication
If automatic detection fails, ensure you have GitHub Copilot CLI properly installed and authenticated:
Usage
With Claude Code
Add the following to your Claude Code MCP configuration:
Option 1: Using npx (Recommended)
Option 2: Manual Installation
That's it! No tokens or environment variables needed - the server automatically uses your existing GitHub Copilot authentication.
Available Tools
copilot_chat
General programming assistance and questions.
copilot_explain
Get detailed explanations of code.
copilot_suggest
Generate code from natural language descriptions.
copilot_review
Get code review and improvement suggestions.
Available Resources
copilot://models
List of available AI models and their capabilities.
copilot://usage
Current usage statistics and rate limiting information.
Development
Run in Development Mode
Build
Lint
Test
Rate Limiting
The server implements rate limiting to respect GitHub's API limits:
Default: 60 requests per minute
Configurable via
MAX_REQUESTS_PER_MINUTEenvironment variableAutomatic reset every minute
Error Handling
The server includes comprehensive error handling for:
Authentication failures
Rate limit exceeded
Network issues
Invalid requests
API unavailability
Troubleshooting
Common Issues
Authentication Failed
Ensure GitHub Copilot CLI is installed:
gh extension install github/gh-copilotMake sure you're authenticated:
gh auth loginVerify you have access to GitHub Copilot
Rate Limit Exceeded
Wait for the rate limit to reset (1 minute)
Consider reducing the frequency of requests
API Not Available
Verify you have access to GitHub Copilot
Check GitHub's status page for outages
Debug Mode
Enable debug mode for verbose logging:
Contributing
Fork the repository
Create a feature branch
Make your changes
Add tests if applicable
Submit a pull request
License
MIT License - see LICENSE file for details.
Security
The server uses your existing GitHub Copilot authentication
No tokens are stored or transmitted by this application
Authentication files are read-only from GitHub CLI's standard locations
Follow GitHub's security best practices for your main GitHub authentication
Support
For issues and questions:
Check the troubleshooting section
Search existing GitHub issues
Create a new issue with detailed information