<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Mcp on @zhisme :: signal over noise</title><link>https://zhisme.com/tags/mcp/</link><description>Recent content in Mcp on @zhisme :: signal over noise</description><generator>Hugo</generator><language>en-us</language><lastBuildDate>Sat, 24 Jan 2026 00:00:00 +0000</lastBuildDate><atom:link href="https://zhisme.com/tags/mcp/index.xml" rel="self" type="application/rss+xml"/><item><title>How to Set Up Browser MCP in Claude Code</title><link>https://zhisme.com/articles/setup-browser-mcp-claude/</link><pubDate>Sat, 24 Jan 2026 00:00:00 +0000</pubDate><guid>https://zhisme.com/articles/setup-browser-mcp-claude/</guid><description>&lt;h2 id="how-to-set-up-mcp-for-browser">How to set up MCP for browser&lt;/h2>
&lt;ol>
&lt;li>Create &lt;code>.mcp.json&lt;/code> in your project directory with the following content:&lt;/li>
&lt;/ol>
&lt;pre>&lt;code class="language-json">{
 &amp;quot;mcpServers&amp;quot;: {
 &amp;quot;chrome-devtools&amp;quot;: {
 &amp;quot;command&amp;quot;: &amp;quot;npx&amp;quot;,
 &amp;quot;args&amp;quot;: [&amp;quot;-y&amp;quot;, &amp;quot;chrome-devtools-mcp@latest&amp;quot;]
 }
 }
}
&lt;/code>&lt;/pre>
&lt;ol start="2">
&lt;li>Then run the following command in your terminal:&lt;/li>
&lt;/ol>
&lt;pre>&lt;code class="language-sh">claude mcp add chrome-devtools --scope user npx chrome-devtools-mcp@latest
&lt;/code>&lt;/pre>
&lt;ol start="3">
&lt;li>Then in Claude Code, run &lt;code>/mcp&lt;/code> to verify the connection:&lt;/li>
&lt;/ol>
&lt;pre>&lt;code class="language-sh"># start claude code cli
claude
# run /mcp inside cli
/mcp
─────────────────────────────────────────────────────────────────────────────────
 Manage MCP servers
 2 servers

 Project MCPs (/Users/zhisme/projects/my-project/.mcp.json)
 ❯ chrome-devtools · ✔ connected
&lt;/code>&lt;/pre>
&lt;ol start="4">
&lt;li>Afterwards, run a sample command to verify that the browser MCP can start:&lt;/li>
&lt;/ol>
&lt;pre>&lt;code class="language-sh"> ▐▛███▜▌ Claude Code v2.1.17
▝▜█████▛▘ Opus 4.5 · Claude Max
 ▘▘ ▝▝ ~/dev/projects/new-magtuner/mt-editor

❯ open with browser mcp url google.com

⏺ chrome-devtools - navigate_page (MCP)(type: &amp;quot;url&amp;quot;, url:
 &amp;quot;https://www.google.com&amp;quot;)
 ⎿  # navigate_page response
 Successfully navigated to https://www.google.com.
 ## Pages
 1: https://www.google.com/ [selected]

⏺ Opened google.com in the browser. The page is loaded and selected.
&lt;/code>&lt;/pre>
&lt;p>If you see a Google Chrome for Testing window like in the screenshot below, then everything is set up correctly. You can now tell Claude to visually verify your rendered pages.&lt;br>
&lt;figure>&lt;img src="https://zhisme.com/articles/setup-browser-mcp-claude/browsermcp.png"
 alt="Google chrome via browser mcp">&lt;figcaption>
 &lt;p>Google chrome via browser mcp&lt;/p></description></item></channel></rss>