-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathvscode_mcp.json
More file actions
24 lines (24 loc) · 835 Bytes
/
Copy pathvscode_mcp.json
File metadata and controls
24 lines (24 loc) · 835 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
"_comment": "VS Code GitHub Copilot MCP Configuration for AndroJack",
"_instructions": [
"VS Code supports MCP via .vscode/mcp.json (workspace) or User settings.",
"",
"OPTION A – Workspace (recommended — check into your Android repo):",
" Create: <your-android-project>/.vscode/mcp.json",
" Content: the 'servers' object below.",
"",
"OPTION B – User settings.json:",
" Add inside your existing settings.json:",
" 'github.copilot.mcp.servers': { ... servers object ... }",
"",
"After saving, open GitHub Copilot Chat → Agent mode → '+' → you should see AndroJack tools.",
"VS Code version 1.99+ required for MCP support."
],
"servers": {
"androjack": {
"type": "stdio",
"command": "npx",
"args": ["-y", "androjack-mcp@1.7.1"]
}
}
}