From dfe7774dad855e012489397a15adbef83188af69 Mon Sep 17 00:00:00 2001 From: Sowmya Malayanur Date: Tue, 12 May 2026 08:35:56 -0700 Subject: [PATCH] Fix MCP tool prefix: android-dri-s2 -> android-dri-s --- .github/copilot-instructions.md | 6 +++--- .github/skills/aria-alert-investigator/SKILL.md | 8 ++++---- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/copilot-instructions.md b/.github/copilot-instructions.md index d71fdfbc..6ecc7ed1 100644 --- a/.github/copilot-instructions.md +++ b/.github/copilot-instructions.md @@ -54,9 +54,9 @@ The `android-dri-search` MCP server provides tools for querying past incidents, | Tool | Purpose | |------|---------| -| `mcp_android-dri-s2_get_incident` | Fetch a specific IcM incident by ID | -| `mcp_android-dri-s2_batch_search` | Run multiple ICM and/or TSG searches in parallel | -| `mcp_android-dri-s2_search_tsgs` | Search troubleshooting guides (single query) | +| `mcp_android-dri-s_get_incident` | Fetch a specific IcM incident by ID | +| `mcp_android-dri-s_batch_search` | Run multiple ICM and/or TSG searches in parallel | +| `mcp_android-dri-s_search_tsgs` | Search troubleshooting guides (single query) | The server is configured in `.vscode/mcp.json` as `android-dri-search`. Authentication is automatic via Entra ID OAuth — you must be a member of the **Android Auth Client SDK** security group. See `android_dri_mcp_server/deployment-and-connection-guide.md` for details. diff --git a/.github/skills/aria-alert-investigator/SKILL.md b/.github/skills/aria-alert-investigator/SKILL.md index dd6cfaf8..18cc4ae6 100644 --- a/.github/skills/aria-alert-investigator/SKILL.md +++ b/.github/skills/aria-alert-investigator/SKILL.md @@ -120,7 +120,7 @@ Skip this step only if Step 1 already surfaced 3+ past ICMs in the same metric f Use `tool_search` with query `android-dri-s` to load the tools, then call `batch_search`: ``` -mcp_android-dri-s2_batch_search(searches=[ +mcp_android-dri-s_batch_search(searches=[ {"type": "icm", "query": "Aria alert "}, {"type": "icm", "query": "Aria detected incident anomaly"} ]) @@ -200,9 +200,9 @@ Example: | Tool | Purpose | Key Parameters | |------|---------|-----------------| -| `mcp_android-dri-s2_get_incident` | Fetch incident details by ID | `incident_id` (required) | -| `mcp_android-dri-s2_batch_search` | Search past incidents AND/OR TSGs in parallel | `searches`: array of `{"type": "icm"\|"tsg", "query": "..."}` | -| `mcp_android-dri-s2_search_tsgs` | Search troubleshooting guides (single query) | `query` (required) | +| `mcp_android-dri-s_get_incident` | Fetch incident details by ID | `incident_id` (required) | +| `mcp_android-dri-s_batch_search` | Search past incidents AND/OR TSGs in parallel | `searches`: array of `{"type": "icm"\|"tsg", "query": "..."}` | +| `mcp_android-dri-s_search_tsgs` | Search troubleshooting guides (single query) | `query` (required) | Use `tool_search` with query `android-dri-s` to load these tools before first use.