overture-mcp 0.1.5 → 0.1.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -110,6 +110,25 @@ Add this to the `mcpServers` object:
110
110
 
111
111
  Restart VS Code for the changes to take effect.
112
112
 
113
+ ### GitHub Copilot
114
+
115
+ Create a `.vscode/mcp.json` file in your project root:
116
+
117
+ ```json
118
+ {
119
+ "servers": {
120
+ "overture": {
121
+ "command": "npx",
122
+ "args": ["overture-mcp"]
123
+ }
124
+ }
125
+ }
126
+ ```
127
+
128
+ After creating the file, reload VS Code (Cmd/Ctrl + Shift + P → "Developer: Reload Window").
129
+
130
+ **Note:** GitHub Copilot MCP support requires VS Code 1.99+ and uses a different configuration format (`servers` instead of `mcpServers`).
131
+
113
132
  ### Global Installation (Optional)
114
133
 
115
134
  If you prefer to install Overture globally instead of using npx:
@@ -200,6 +219,24 @@ Add the `env` object to your MCP server configuration:
200
219
  }
201
220
  ```
202
221
 
222
+ **GitHub Copilot** (`.vscode/mcp.json`)
223
+
224
+ ```json
225
+ {
226
+ "servers": {
227
+ "overture": {
228
+ "command": "npx",
229
+ "args": ["overture-mcp"],
230
+ "env": {
231
+ "OVERTURE_HTTP_PORT": "4000",
232
+ "OVERTURE_WS_PORT": "4001",
233
+ "OVERTURE_AUTO_OPEN": "false"
234
+ }
235
+ }
236
+ }
237
+ }
238
+ ```
239
+
203
240
  **Global Installation (shell)**
204
241
 
205
242
  If you installed globally, set variables in your shell before running: