From 92199c4ae702dea1d9a3213b445a4f3bce9b98b9 Mon Sep 17 00:00:00 2001 From: Jeremy Daer Date: Tue, 25 Nov 2025 13:33:07 -0800 Subject: [PATCH] AI: configure MCP servers for Chrome, Grafana, and Sentry (#1727) --- .mcp.json | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .mcp.json diff --git a/.mcp.json b/.mcp.json new file mode 100644 index 000000000..13beab928 --- /dev/null +++ b/.mcp.json @@ -0,0 +1,18 @@ +{ + "mcpServers": { + "chrome-devtools": { + "type": "stdio", + "command": "npx", + "args": ["-y", "chrome-devtools-mcp@latest"] + }, + "sentry": { + "type": "stdio", + "command": "npx", + "args": ["-y", "mcp-remote@latest", "https://mcp.sentry.dev/mcp"] + }, + "grafana": { + "type": "http", + "url": "https://grafana.37signals.com/mcp" + } + } +}