copilot-mcp-serverlisted
Install: claude install-skill aiskillstore/marketplace
# 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"