Browse Source

Add mcp.config.json for Playwright and MS docs configuration (#63607)

Adds `.vscode/mcp.json` to configure the playwright and docs MCP servers.
Javier Calvarro Nelson 5 months ago
parent
commit
5e03c07eb4
1 changed files with 15 additions and 0 deletions
  1. 15 0
      .vscode/mcp.json

+ 15 - 0
.vscode/mcp.json

@@ -0,0 +1,15 @@
+{
+  "servers": {
+    "playwright": {
+      "type": "stdio",
+      "command": "npx",
+      "args": [
+        "@playwright/mcp@latest"
+      ]
+    },
+    "microsoft.docs.mcp": {
+      "type": "http",
+      "url": "https://learn.microsoft.com/api/mcp"
+    }
+  }
+}