Skip to content

Commit 816b1da

Browse files
committed
review comments
1 parent 4643d21 commit 816b1da

File tree

1 file changed

+5
-20
lines changed

1 file changed

+5
-20
lines changed

.github/copilot-instructions.md

Lines changed: 5 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -32,27 +32,12 @@ The Azure SDK for Java repository contains client libraries for Azure services,
3232

3333
The Azure SDK MCP server enables advanced Copilot-powered automation, validation, and Azure-specific guidance in your IDE.
3434

35-
| IDE | Config File Location | What to Do |
36-
|----------|--------------------------------------|----------------------------------------------------------------------------|
37-
| VSCode | `.vscode/mcp.json` | Add the JSON config below and restart VSCode |
38-
| IntelliJ | `github-copilot/intellij/mcp.json` | Add the JSON config below and restart IntelliJ |
35+
| IDE | Config File Location | What to Do |
36+
|----------|------------------------------------|---------------------------|
37+
| IntelliJ | `github-copilot/intellij/mcp.json` | Add the JSON config below |
3938

4039
### Configuration Example
4140

42-
#### VSCode (`.vscode/mcp.json`)
43-
```json
44-
{
45-
"azure-sdk-mcp": {
46-
"type": "stdio",
47-
"command": "pwsh",
48-
"args": [
49-
"${workspaceFolder}/eng/common/mcp/azure-sdk-mcp.ps1",
50-
"-Run"
51-
]
52-
}
53-
}
54-
```
55-
5641
#### IntelliJ (`github-copilot/intellij/mcp.json`)
5742
```json
5843
{
@@ -61,7 +46,7 @@ The Azure SDK MCP server enables advanced Copilot-powered automation, validation
6146
"type": "stdio",
6247
"command": "pwsh",
6348
"args": [
64-
"${workspaceFolder}/eng/common/mcp/azure-sdk-mcp.ps1",
49+
"<Path to azure-sdk-for-java repo>/eng/common/mcp/azure-sdk-mcp.ps1",
6550
"-Run"
6651
]
6752
}
@@ -70,7 +55,7 @@ The Azure SDK MCP server enables advanced Copilot-powered automation, validation
7055
```
7156

7257
- Make sure PowerShell is installed and available in your system PATH.
73-
- Adjust the path to `azure-sdk-mcp.ps1` if your repository is structured differently.
58+
- Replace `<Path to azure-sdk-for-java repo>` with the absolute path to your local clone of the Azure SDK for Java repository.
7459

7560
### Troubleshooting
7661

0 commit comments

Comments
 (0)