From 1e8e4e01b1f7985e1e3ed026874852ba335e45bd Mon Sep 17 00:00:00 2001 From: James Devine Date: Mon, 1 Jun 2026 21:18:35 +0100 Subject: [PATCH] chore: migrate MCP config from .vscode/mcp.json to .mcp.json Per https://gh.io/copilotcli-mcpmigrate, Copilot CLI loads workspace MCP servers from .mcp.json at the repo root (not .vscode/mcp.json). Rename the file and switch the top-level key from `servers` to `mcpServers` so the github-agentic-workflows server is discovered by `copilot mcp list`. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- .vscode/mcp.json => .mcp.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename .vscode/mcp.json => .mcp.json (86%) diff --git a/.vscode/mcp.json b/.mcp.json similarity index 86% rename from .vscode/mcp.json rename to .mcp.json index 96e7285c..a982ffad 100644 --- a/.vscode/mcp.json +++ b/.mcp.json @@ -1,5 +1,5 @@ { - "servers": { + "mcpServers": { "github-agentic-workflows": { "command": "gh", "args": [ @@ -8,4 +8,4 @@ ] } } -} \ No newline at end of file +}