Adding the awesome copilot MCP server to our plugin and showing that in the rendered page

This commit is contained in:
Aaron Powell
2026-07-14 14:54:47 +10:00
parent b2ce1b2a65
commit 6574b3c89a
4 changed files with 45 additions and 4 deletions
+2 -1
View File
@@ -21,5 +21,6 @@
"./skills/suggest-awesome-github-copilot-agents/",
"./skills/suggest-awesome-github-copilot-instructions/",
"./skills/suggest-awesome-github-copilot-skills/"
]
],
"mcpServers": "./.mcp.json"
}
+14
View File
@@ -0,0 +1,14 @@
{
"mcpServers": {
"awesome-copilot": {
"type": "stdio",
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"ghcr.io/microsoft/mcp-dotnet-samples/awesome-copilot:latest"
]
}
}
}