Direct access to GitHub Copilot MCP server tools for AI-powered development assistance
View on GitHubFebruary 4, 2026
Select agents to install to:
npx add-skill https://github.com/Aykahshi/copilot-mcp-tool/blob/main/plugins/copilot-flow/skills/copilot-mcp-server/SKILL.md -a claude-code --skill copilot-mcp-serverInstallation paths:
.claude/skills/copilot-mcp-server/# Copilot MCP Server When to use this skill: - When you need direct access to Copilot AI models for specific tasks - When you want to use Copilot's specialized tools (review, debug, explain, etc.) - When you need AI assistance outside of the copilot-flow workflow ## Available MCP Tools ### Core Tools #### ask-copilot General-purpose AI assistant for coding help, debugging, and architecture design. ```javascript mcp__plugin__copilot__ask-copilot( prompt="string", // Required: The question or task for Copilot context="string", // Optional: Additional context model="string", // Optional: Specific model to use (default: claude-sonnet-4.5) allowAllTools=true/false // Optional: Allow Copilot to use all available tools ) ``` #### copilot-review Professional code review with focus on specific areas. ```javascript mcp__plugin__copilot__copilot-review( code="string", // Required: Code to review focusAreas=["security", "performance", "maintainability", "best-practices"] // Optional: Specific areas to focus ) ``` #### copilot-explain Get detailed explanations of code snippets. ```javascript mcp__plugin__copilot__copilot-explain( code="string", // Required: Code to explain model="string" // Optional: Model to use ) ``` #### copilot-debug Debug errors in code with context-aware analysis. ```javascript mcp__plugin__copilot__copilot-debug( code="string", // Required: Code with error error="string", // Required: Error message context="string" // Optional: Additional context ) ``` #### copilot-refactor Get suggestions for code refactoring and improvements. ```javascript mcp__plugin__copilot__copilot-refactor( code="string", // Required: Code to refactor goal="string" // Required: Refactoring goal (e.g., "improve performance") ) ``` #### copilot-test-generate Generate unit tests for existing code