From 449167be96847ab8839f4ec91d9d10947c311420 Mon Sep 17 00:00:00 2001 From: Aiden Cline Date: Sun, 16 Nov 2025 16:42:33 -0600 Subject: [PATCH] docs: update readme to include OpenCode example --- README.md | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/README.md b/README.md index 3de17ff7..7fe0d949 100644 --- a/README.md +++ b/README.md @@ -196,6 +196,25 @@ The same way chrome-devtools-mcp can be configured for JetBrains Junie in `Setti +
+ OpenCode + +Add the following configuration to your `opencode.json` file. If you don't have one, create it at `~/.config/opencode/opencode.json` (guide): + +```json +{ + "$schema": "https://opencode.ai/config.json", + "mcp": { + "chrome-devtools": { + "type": "local", + "command": ["npx", "-y", "chrome-devtools-mcp@latest"] + } + } +} +``` + +
+
Kiro