microsoft/hve-core
Publicmirrored fromhttps://github.com/microsoft/hve-coreAvailable
.vscode/mcp.json
45lines · modecode
| 1 | { |
| 2 | "inputs": [ |
| 3 | { |
| 4 | "id": "ado_org", |
| 5 | "type": "promptString", |
| 6 | "description": "Azure DevOps organization name (e.g. 'contoso')", |
| 7 | "default": "" |
| 8 | }, |
| 9 | { |
| 10 | "id": "ado_tenant", |
| 11 | "type": "promptString", |
| 12 | "description": "Azure tenant ID (required for multi-tenant scenarios)", |
| 13 | "default": "" |
| 14 | } |
| 15 | ], |
| 16 | "servers": { |
| 17 | "github": { |
| 18 | "type": "http", |
| 19 | "url": "https://api.githubcopilot.com/mcp/" |
| 20 | }, |
| 21 | "terraform": { |
| 22 | "command": "docker", |
| 23 | "args": [ |
| 24 | "run", |
| 25 | "-i", |
| 26 | "--rm", |
| 27 | "hashicorp/terraform-mcp-server" |
| 28 | ] |
| 29 | }, |
| 30 | "context7": { |
| 31 | "type": "stdio", |
| 32 | "command": "npx", |
| 33 | "args": ["-y", "@upstash/context7-mcp"] |
| 34 | }, |
| 35 | "microsoft-docs": { |
| 36 | "type": "http", |
| 37 | "url": "https://learn.microsoft.com/api/mcp" |
| 38 | }, |
| 39 | // "ado": { |
| 40 | // "type": "stdio", |
| 41 | // "command": "npx", |
| 42 | // "args": ["-y", "@azure-devops/mcp", "${input:ado_org}", "--tenant", "${input:ado_tenant}", "-d", "core", "work", "work-items", "search", "repositories", "pipelines"] |
| 43 | // }, |
| 44 | } |
| 45 | } |
| 46 | |