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 +37 -0
- package/dist/{chunk-LFRCKLZZ.js → chunk-BYH4GX7P.js} +515 -97
- package/dist/cli.js +1 -1
- package/dist/index.js +5 -45
- package/package.json +664 -10
- package/prompts/claude-code.md +264 -55
- package/prompts/cline.md +199 -36
- package/prompts/cursor.md +229 -47
- package/prompts/gh_copilot.md +1021 -0
- package/prompts/overture-instructions.md +205 -59
- package/prompts/sixth.md +200 -37
- package/ui-dist/assets/index-BYKdVlek.css +1 -0
- package/ui-dist/assets/index-Dg9oilur.js +429 -0
- package/ui-dist/assets/index-Dg9oilur.js.map +1 -0
- package/ui-dist/index.html +4 -8
- package/ui-dist/assets/index-BLZ2dlmA.css +0 -1
- package/ui-dist/assets/index-DwGNwSSY.js +0 -408
- package/ui-dist/assets/index-DwGNwSSY.js.map +0 -1
- package/ui-dist/favicon.svg +0 -8
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:
|