From 83907849a2ac5c1fef9c9c6f56358e8caa7937e5 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Fri, 17 Apr 2026 06:20:03 +0000 Subject: [PATCH 1/3] Initial plan From 6045fa936c4f508c42986fae36d6fe6d59798a65 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Fri, 17 Apr 2026 06:23:14 +0000 Subject: [PATCH 2/3] Add missing friendly names for tools: click_element, mcp_github_pull_request_read, mcp_microsoftdocs_microsoft_docs_search, type_in_page Agent-Logs-Url: https://github.com/rajbos/github-copilot-token-usage/sessions/f642eba7-5a37-4637-a99c-44bbb11b723d Co-authored-by: FokkoVeegens <24793348+FokkoVeegens@users.noreply.github.com> --- vscode-extension/src/toolNames.json | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/vscode-extension/src/toolNames.json b/vscode-extension/src/toolNames.json index defcf737..0f159599 100644 --- a/vscode-extension/src/toolNames.json +++ b/vscode-extension/src/toolNames.json @@ -39,11 +39,13 @@ ,"mcp_github_issue_write": "GitHub MCP (Remote): Issue Write" ,"mcp_github_list_issues": "GitHub MCP (Remote): List Issues" ,"mcp_github_create_pull_request": "GitHub MCP (Remote): Create Pull Request" + ,"mcp_github_pull_request_read": "GitHub MCP (Remote): Pull Request Read" ,"mcp_github-code-s_get_code_scanning_alert": "GitHub MCP (Code Scanning): Get Alert" ,"mcp_github-code-s_list_code_scanning_alerts": "GitHub MCP (Code Scanning): List Alerts" ,"mcp_com_microsoft_get_bestpractices": "GitHub MCP: Get Best Practices" ,"mcp_microsoft_doc_microsoft_code_sample_search": "Microsoft Docs MCP: Code Sample Search" ,"mcp_microsoft_doc_microsoft_docs_search": "Microsoft Docs MCP: Docs Search" + ,"mcp_microsoftdocs_microsoft_docs_search": "Microsoft Docs MCP: Docs Search" ,"mcp_gitkraken_git_add_or_commit": "GitKraken MCP: Git Add or Commit" ,"mcp_gitkraken_git_status": "GitKraken MCP: Git Status" ,"mcp_gitkraken_git_branch": "GitKraken MCP: Git Branch" @@ -335,11 +337,13 @@ ,"todos": "Todos" ,"websearch": "Web Search" ,"WebSearch": "Web Search" + ,"click_element": "Click Element" ,"navigate_page": "Navigate Page" ,"open_browser_page": "Open Browser Page" ,"read_page": "Read Page" ,"run_playwright_code": "Run Playwright Code" ,"screenshot_page": "Screenshot Page" + ,"type_in_page": "Type in Page" ,"task_complete": "Task Complete" ,"pdf-utilities.pdf": "PDF Utilities: PDF" ,"container-tools_get-config": "Container Tools: Get Config" From ec9f2fbce7f71b8da6b7e79af3e9883185789386 Mon Sep 17 00:00:00 2001 From: Fokko Veegens <24793348+FokkoVeegens@users.noreply.github.com> Date: Fri, 17 Apr 2026 09:54:20 +0200 Subject: [PATCH 3/3] Fixed tool-names agent - Added the read tools so it can read files to determine the right actions - Added the MS Docs MCP prefix --- .github/agents/tool-names.agent.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/agents/tool-names.agent.md b/.github/agents/tool-names.agent.md index c8282ba5..b634e89c 100644 --- a/.github/agents/tool-names.agent.md +++ b/.github/agents/tool-names.agent.md @@ -1,7 +1,7 @@ --- description: "Add friendly display names for unknown MCP and VS Code tools detected in session logs. Handles tool name mapping in src/toolNames.json." name: "Tool Names - Add Missing Friendly Names" -tools: ["execute/runInTerminal", "execute/getTerminalOutput", "search/codebase", "read/problems"] +tools: [execute/getTerminalOutput, execute/runInTerminal, read, search/codebase] --- # Tool Names - Add Missing Friendly Names @@ -32,7 +32,8 @@ MCP tools follow predictable naming patterns. The raw tool identifier encodes th | `mcp.io.github.git.` or `mcp_io_github_git_` | `GitHub MCP (Local):` | [github/github-mcp-server](https://github.com/github/github-mcp-server) | | `mcp_github_github_` | `GitHub MCP (Remote):` | [github/github-mcp-server](https://github.com/github/github-mcp-server) | | `mcp_github-code-s_` | `GitHub MCP (Code Scanning):` | [github/github-mcp-server](https://github.com/github/github-mcp-server) | -| `mcp_com_microsoft_` | `GitHub MCP:` | Microsoft internal MCP server | +| `mcp_com_microsoft_` | `Microsoft MCP:` | Microsoft internal MCP server | +| `mcp_microsoftdocs_microsoft_` | `Microsoft Docs MCP:` | Microsoft MCP server for official documentation retrieval | | `mcp_gitkraken_` | `GitKraken MCP:` | GitKraken (no public MCP server repo; tools come from the GitKraken VS Code extension) | | `mcp_oraios_serena_` | `Serena:` | [oraios/serena](https://github.com/oraios/serena) | | `mcp_microsoft_pla_` | `Playwright MCP:` | [microsoft/playwright-mcp](https://github.com/microsoft/playwright-mcp) |