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
@@ -21,9 +21,10 @@ const KIND_LABELS: Record<string, string> = {
hook: "Hooks",
prompt: "Commands",
extension: "Extensions",
mcp: "MCP Servers",
};
const KIND_ORDER = ["agent", "skill", "instruction", "hook", "prompt", "extension"];
const KIND_ORDER = ["agent", "skill", "instruction", "hook", "prompt", "extension", "mcp"];
function githubHref(itemPath: string): string {
const normalized = itemPath.replace(/^\.\/+/, "").replace(/\/+$/, "");