MCP Server
Awesome Copilot MCP Server MCP Server
io.github.microsoft/awesome-copilot
What is the Awesome Copilot MCP Server MCP server?
An MCP server that stores Copilot customizations from the Awesome Copilot repository
How to install Awesome Copilot MCP Server
Copy-paste configuration for popular MCP clients.
transport: stdio
Config generated by PluginBench — verify against the source before use.Claude Desktop
~/Library/Application Support/Claude/claude_desktop_config.json
{
"mcpServers": {
"awesome-copilot": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"ghcr.io/microsoft/mcp-dotnet-samples/awesome-copilot:1.0.2026070103"
]
}
}
}Cursor
~/.cursor/mcp.json
{
"mcpServers": {
"awesome-copilot": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"ghcr.io/microsoft/mcp-dotnet-samples/awesome-copilot:1.0.2026070103"
]
}
}
}Windsurf
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"awesome-copilot": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"ghcr.io/microsoft/mcp-dotnet-samples/awesome-copilot:1.0.2026070103"
]
}
}
}VS Code
.vscode/mcp.json
{
"servers": {
"awesome-copilot": {
"type": "stdio",
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"ghcr.io/microsoft/mcp-dotnet-samples/awesome-copilot:1.0.2026070103"
]
}
}
}Claude Code
claude mcp add awesome-copilot -- docker run -i --rm ghcr.io/microsoft/mcp-dotnet-samples/awesome-copilot:1.0.2026070103Related MCP servers
Official Microsoft MCP Server to query Microsoft Entra data using natural language
View repository →