{"id":6672,"date":"2025-09-23T22:51:07","date_gmt":"2025-09-23T22:51:07","guid":{"rendered":"https:\/\/pokecon.jp\/job\/?p=6672"},"modified":"2025-09-23T22:51:07","modified_gmt":"2025-09-23T22:51:07","slug":"chrome-devtools-mcp-for-your-ai-agent-blog-chrome-for-developers","status":"publish","type":"post","link":"https:\/\/pokecon.jp\/job\/6672\/","title":{"rendered":"Chrome DevTools (MCP) for your AI agent \u00a0|\u00a0 Blog \u00a0|\u00a0 Chrome for Developers"},"content":{"rendered":"\n<\/p>\n<div id=\"\">\n      Chrome DevTools (MCP) for your AI agent<\/p>\n<p><devsite-feature-tooltip ack-key=\"AckCollectionsBookmarkTooltipDismiss\" analytics-category=\"Site-Wide Custom Events\" analytics-action-show=\"Callout Profile displayed\" analytics-action-close=\"Callout Profile dismissed\" analytics-label=\"Create Collection Callout\" class=\"devsite-page-bookmark-tooltip nocontent\" dismiss-button=\"true\" id=\"devsite-collections-dropdown\" dismiss-button-text=\"Dismiss\" close-button-text=\"Got it\"><\/p>\n<p>      <devsite-bookmark\/><\/p>\n<p>    <span slot=\"popout-heading\"><\/p>\n<p>      Stay organized with collections<br \/>\n    <\/span><br \/>\n    <span slot=\"popout-contents\"><\/p>\n<p>      Save and categorize content based on your preferences.<br \/>\n    <\/span><br \/>\n  <\/devsite-feature-tooltip><\/p>\n<\/p><\/div>\n<div>\n<div class=\"dcc-authors\" translate=\"no\">\n<div class=\"dcc-author\">\n<p>          <img class=\"devsite-landing-row-item-icon\" alt=\"Mathias Bynens\" src=\"https:\/\/web.dev\/images\/authors\/mathiasbynens.jpg\" decoding=\"async\" height=\"64\" loading=\"lazy\" width=\"64\"\/> <\/p><\/div>\n<div class=\"dcc-author\">\n<p>          <img class=\"devsite-landing-row-item-icon\" alt=\"Michael Hablich\" src=\"https:\/\/web.dev\/images\/authors\/hablich.jpg\" decoding=\"async\" height=\"64\" loading=\"lazy\" width=\"64\"\/> <\/p><\/div>\n<\/div>\n<p class=\"wd-pubdates\" style=\"font-size: 90%; border-bottom: 1px solid var(--devsite-ref-palette--grey200);color: var(--devsite-ref-palette--blue-grey700)\">\n  Published: September 23, 2025\n<\/p>\n<p>We&#8217;re launching today a public preview for the new Chrome DevTools Model Context<br \/>\nProtocol (MCP) server, bringing the power of Chrome DevTools to AI coding<br \/>\nassistants.<\/p>\n<p>Coding agents face a fundamental problem: they are not able to see what the code<br \/>\nthey generate actually does when it runs in the browser. They&#8217;re effectively<br \/>\nprogramming with a blindfold on.<\/p>\n<p>The Chrome DevTools MCP server changes this. AI coding assistants are able to<br \/>\ndebug web pages directly in Chrome, and benefit from DevTools debugging<br \/>\ncapabilities and performance insights. This improves their accuracy when<br \/>\nidentifying and fixing issues.<\/p>\n<p>See for yourself how it works:<br \/>\n<video preload=\"none\" playsinline=\"\" controls=\"\" width=\"3840\" height=\"2160\" style=\"aspect-ratio: 16\/9\" poster=\"https:\/\/developer.chrome.com\/blog\/chrome-devtools-mcp\/image\/video-poster.jpg\"><source src=\"https:\/\/developer.chrome.com\/static\/blog\/chrome-devtools-mcp\/video\/cdt-mcp-demo.mp4\" type=\"video\/mp4\"><\/source><\/video><\/p>\n<h2 id=\"what_is_the_model_context_protocol_mcp\" data-text=\"What is the Model Context Protocol (MCP)?\" tabindex=\"-1\">What is the Model Context Protocol (MCP)?<\/h2>\n<p>The <a target=\"_blank\" href=\"https:\/\/www.anthropic.com\/news\/model-context-protocol\">Model Context Protocol<br \/>\n(MCP)<\/a> is an open-source<br \/>\nstandard for connecting large language models (LLMs) to external tools and data<br \/>\nsources. The Chrome DevTools MCP server adds debugging capabilities to your AI<br \/>\nagent.<\/p>\n<p>For example, the Chrome DevTools MCP server provides a tool called<br \/>\n<code translate=\"no\" dir=\"ltr\">performance_start_trace<\/code>. When tasked to investigate the performance of your<br \/>\nwebsite, an LLM can use this tool to start Chrome, open your website and use<br \/>\nChrome DevTools to record a performance trace. The LLM can then analyze the<br \/>\nperformance trace to suggest potential improvements. Using the MCP protocol, the<br \/>\nChrome DevTools MCP server can bring new debugging capabilities to your coding<br \/>\nagent to make it better at building websites.<\/p>\n<p>If you want to find out more about how MCP works, check out the <a target=\"_blank\" href=\"https:\/\/modelcontextprotocol.io\/docs\/getting-started\/intro\">MCP<br \/>\ndocumentation<\/a>.<\/p>\n<h2 id=\"what_can_you_use_it_for\" data-text=\"What can you use it for?\" tabindex=\"-1\">What can you use it for?<\/h2>\n<p>Following are a few example prompts you can try out in the AI assistant of your<br \/>\nchoice like Gemini CLI.<\/p>\n<h3 id=\"verify_code_changes_in_real-time\" data-text=\"Verify code changes in real-time\" tabindex=\"-1\">Verify code changes in real-time<\/h3>\n<p>Generate a fix with your AI agent, and then automatically verify that the<br \/>\nsolution works as intended with Chrome DevTools MCP.<\/p>\n<p>Prompt to try:<\/p>\n<p><devsite-code><\/p>\n<pre class=\"devsite-click-to-copy\" translate=\"no\" dir=\"ltr\" is-upgraded=\"\"><code translate=\"no\" dir=\"ltr\">Verify in the browser that your change works as expected.\n<\/code><\/pre>\n<p><\/devsite-code><\/p>\n<h3 id=\"diagnose_network_and_console_errors\" data-text=\"Diagnose network and console errors\" tabindex=\"-1\">Diagnose network and console errors<\/h3>\n<p>Empower your agent to analyze network requests to uncover CORS issues or inspect<br \/>\nconsole logs to understand why a feature isn&#8217;t working as expected.<\/p>\n<p>Prompt to try:<\/p>\n<p><devsite-code><\/p>\n<pre class=\"devsite-click-to-copy\" translate=\"no\" dir=\"ltr\" is-upgraded=\"\"><code translate=\"no\" dir=\"ltr\">A few images on localhost:8080 are not loading. What's happening?\n<\/code><\/pre>\n<p><\/devsite-code><\/p>\n<h3 id=\"simulate_user_behavior\" data-text=\"Simulate user behavior\" tabindex=\"-1\">Simulate user behavior<\/h3>\n<p>Navigate, fill out forms, and click buttons to reproduce bugs and test complex<br \/>\nuser flows\u2014all while inspecting the runtime environment.<\/p>\n<p>Prompt to try:<\/p>\n<p><devsite-code><\/p>\n<pre class=\"devsite-click-to-copy\" translate=\"no\" dir=\"ltr\" is-upgraded=\"\"><code translate=\"no\" dir=\"ltr\">Why does submitting the form fail after entering an email address?\n<\/code><\/pre>\n<p><\/devsite-code><\/p>\n<h3 id=\"debug_live_styling_and_layout_issues\" data-text=\"Debug live styling and layout issues\" tabindex=\"-1\">Debug live styling and layout issues<\/h3>\n<p>Ask your AI agent to connect to a live page, inspect the DOM and CSS, and get<br \/>\nconcrete suggestions to fix complex layout problems like overflowing elements<br \/>\nbased on live data from the browser.<\/p>\n<p>Prompt to try:<\/p>\n<p><devsite-code><\/p>\n<pre class=\"devsite-click-to-copy\" translate=\"no\" dir=\"ltr\" is-upgraded=\"\"><code translate=\"no\" dir=\"ltr\">The page on localhost:8080 looks strange and off. Check what's happening there.\n<\/code><\/pre>\n<p><\/devsite-code><\/p>\n<h3 id=\"automate_performance_audits\" data-text=\"Automate performance audits\" tabindex=\"-1\">Automate performance audits<\/h3>\n<p>Instruct your AI agent to run a performance trace, analyze the results, and<br \/>\ninvestigate specific performance issues like high LCP numbers.<\/p>\n<p>Prompt to try:<\/p>\n<p><devsite-code><\/p>\n<pre class=\"devsite-click-to-copy\" translate=\"no\" dir=\"ltr\" is-upgraded=\"\"><code translate=\"no\" dir=\"ltr\">Localhost:8080 is loading slowly. Make it load faster.\n<\/code><\/pre>\n<p><\/devsite-code><\/p>\n<p>See our <a target=\"_blank\" href=\"https:\/\/github.com\/ChromeDevTools\/chrome-devtools-mcp\/blob\/main\/docs\/tool-reference.md\">tool reference<br \/>\ndocumentation<\/a><br \/>\nfor a list of all available tools.<\/p>\n<h2 id=\"get_started\" data-text=\"Get started\" tabindex=\"-1\">Get started<\/h2>\n<p>To try this out, add the following config entry to your MCP client:<\/p>\n<p><devsite-code><\/p>\n<pre class=\"devsite-click-to-copy\" translate=\"no\" dir=\"ltr\" is-upgraded=\"\" syntax=\"JSON\"><code translate=\"no\" dir=\"ltr\"><span class=\"devsite-syntax-p\">{<\/span>\n<span class=\"devsite-syntax-w\">  <\/span><span class=\"devsite-syntax-nt\">\"mcpServers\"<\/span><span class=\"devsite-syntax-p\">:<\/span><span class=\"devsite-syntax-w\"> <\/span><span class=\"devsite-syntax-p\">{<\/span>\n<span class=\"devsite-syntax-w\">    <\/span><span class=\"devsite-syntax-nt\">\"chrome-devtools\"<\/span><span class=\"devsite-syntax-p\">:<\/span><span class=\"devsite-syntax-w\"> <\/span><span class=\"devsite-syntax-p\">{<\/span>\n<span class=\"devsite-syntax-w\">      <\/span><span class=\"devsite-syntax-nt\">\"command\"<\/span><span class=\"devsite-syntax-p\">:<\/span><span class=\"devsite-syntax-w\"> <\/span><span class=\"devsite-syntax-s2\">\"npx\"<\/span><span class=\"devsite-syntax-p\">,<\/span>\n<span class=\"devsite-syntax-w\">      <\/span><span class=\"devsite-syntax-nt\">\"args\"<\/span><span class=\"devsite-syntax-p\">:<\/span><span class=\"devsite-syntax-w\"> <\/span><span class=\"devsite-syntax-p\">[<\/span><span class=\"devsite-syntax-s2\">\"chrome-devtools-mcp@latest\"<\/span><span class=\"devsite-syntax-p\">]<\/span>\n<span class=\"devsite-syntax-w\">    <\/span><span class=\"devsite-syntax-p\">}<\/span>\n<span class=\"devsite-syntax-w\">  <\/span><span class=\"devsite-syntax-p\">}<\/span>\n<span class=\"devsite-syntax-p\">}<\/span>\n\n<\/code><\/pre>\n<p><\/devsite-code><\/p>\n<p>To check if it works, run the following prompt in your coding agent:<\/p>\n<p><devsite-code><\/p>\n<pre class=\"devsite-click-to-copy\" translate=\"no\" dir=\"ltr\" is-upgraded=\"\"><code translate=\"no\" dir=\"ltr\">Please check the LCP of web.dev.\n<\/code><\/pre>\n<p><\/devsite-code><\/p>\n<p>For more details, check out <a target=\"_blank\" href=\"https:\/\/github.com\/ChromeDevTools\/chrome-devtools-mcp\/?tab=readme-ov-file#chrome-devtools-mcp\">the Chrome DevTools MCP<br \/>\ndocumentation<\/a><br \/>\non GitHub.<\/p>\n<h2 id=\"get_involved\" data-text=\"Get involved\" tabindex=\"-1\">Get involved<\/h2>\n<p>We are building Chrome DevTools MCP incrementally, starting with the public<br \/>\npreview version we&#8217;re releasing today. We&#8217;re actively looking for feedback from<br \/>\nyou and the community about which capabilities we should add next. Whether<br \/>\nyou&#8217;re a developer using AI coding assistants or a vendor building the next<br \/>\ngeneration of AI development tools, <a target=\"_blank\" href=\"https:\/\/github.com\/ChromeDevTools\/chrome-devtools-mcp\/discussions\">your insights will be<br \/>\ninvaluable<\/a><br \/>\nand if something is missing or not working, please file <a target=\"_blank\" href=\"https:\/\/github.com\/ChromeDevTools\/chrome-devtools-mcp\/issues\/new\/choose\">an issue on<br \/>\nGitHub<\/a>.<\/p>\n<\/div>\n\n<br \/><a href=\"https:\/\/developer.chrome.com\/blog\/chrome-devtools-mcp\">\u5143\u306e\u8a18\u4e8b\u3092\u78ba\u8a8d\u3059\u308b <\/a><\/p>\n","protected":false},"excerpt":{"rendered":"Chrome DevTools (MCP) for your AI agent Stay organized with collections Save and categorize content based on y [&hellip;]","protected":false},"author":1,"featured_media":6673,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[2],"tags":[],"class_list":["post-6672","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-hatena-blog"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Chrome DevTools (MCP) for your AI agent \u00a0|\u00a0 Blog \u00a0|\u00a0 Chrome for Developers - \u30dd\u30b1\u30b3\u30f3<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/developer.chrome.com\/blog\/chrome-devtools-mcp\" \/>\n<meta property=\"og:locale\" content=\"ja_JP\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Chrome DevTools (MCP) for your AI agent \u00a0|\u00a0 Blog \u00a0|\u00a0 Chrome for Developers - \u30dd\u30b1\u30b3\u30f3\" \/>\n<meta property=\"og:description\" content=\"Chrome DevTools (MCP) for your AI agent Stay organized with collections Save and categorize content based on y [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/developer.chrome.com\/blog\/chrome-devtools-mcp\" \/>\n<meta property=\"og:site_name\" content=\"\u30dd\u30b1\u30b3\u30f3\" \/>\n<meta property=\"article:published_time\" content=\"2025-09-23T22:51:07+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/pokecon.jp\/job\/wp-content\/uploads\/2025\/09\/hero-scaled.png\" \/>\n\t<meta property=\"og:image:width\" content=\"2560\" \/>\n\t<meta property=\"og:image:height\" content=\"1440\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"info@pokecon.jp\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"\u57f7\u7b46\u8005\" \/>\n\t<meta name=\"twitter:data1\" content=\"info@pokecon.jp\" \/>\n\t<meta name=\"twitter:label2\" content=\"\u63a8\u5b9a\u8aad\u307f\u53d6\u308a\u6642\u9593\" \/>\n\t<meta name=\"twitter:data2\" content=\"3\u5206\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/developer.chrome.com\\\/blog\\\/chrome-devtools-mcp#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/pokecon.jp\\\/job\\\/6672\\\/\"},\"author\":{\"name\":\"info@pokecon.jp\",\"@id\":\"https:\\\/\\\/pokecon.jp\\\/job\\\/#\\\/schema\\\/person\\\/16c9f07b1ba984d165d9aee259bda997\"},\"headline\":\"Chrome DevTools (MCP) for your AI agent \u00a0|\u00a0 Blog \u00a0|\u00a0 Chrome for Developers\",\"datePublished\":\"2025-09-23T22:51:07+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/pokecon.jp\\\/job\\\/6672\\\/\"},\"wordCount\":584,\"image\":{\"@id\":\"https:\\\/\\\/developer.chrome.com\\\/blog\\\/chrome-devtools-mcp#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/pokecon.jp\\\/job\\\/wp-content\\\/uploads\\\/2025\\\/09\\\/hero-scaled.png\",\"articleSection\":[\"\u306f\u3066\u306a\u30d6\u30ed\u30b0\"],\"inLanguage\":\"ja\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/pokecon.jp\\\/job\\\/6672\\\/\",\"url\":\"https:\\\/\\\/developer.chrome.com\\\/blog\\\/chrome-devtools-mcp\",\"name\":\"Chrome DevTools (MCP) for your AI agent \u00a0|\u00a0 Blog \u00a0|\u00a0 Chrome for Developers - \u30dd\u30b1\u30b3\u30f3\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/pokecon.jp\\\/job\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/developer.chrome.com\\\/blog\\\/chrome-devtools-mcp#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/developer.chrome.com\\\/blog\\\/chrome-devtools-mcp#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/pokecon.jp\\\/job\\\/wp-content\\\/uploads\\\/2025\\\/09\\\/hero-scaled.png\",\"datePublished\":\"2025-09-23T22:51:07+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/pokecon.jp\\\/job\\\/#\\\/schema\\\/person\\\/16c9f07b1ba984d165d9aee259bda997\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/developer.chrome.com\\\/blog\\\/chrome-devtools-mcp#breadcrumb\"},\"inLanguage\":\"ja\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/developer.chrome.com\\\/blog\\\/chrome-devtools-mcp\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"ja\",\"@id\":\"https:\\\/\\\/developer.chrome.com\\\/blog\\\/chrome-devtools-mcp#primaryimage\",\"url\":\"https:\\\/\\\/pokecon.jp\\\/job\\\/wp-content\\\/uploads\\\/2025\\\/09\\\/hero-scaled.png\",\"contentUrl\":\"https:\\\/\\\/pokecon.jp\\\/job\\\/wp-content\\\/uploads\\\/2025\\\/09\\\/hero-scaled.png\",\"width\":2560,\"height\":1440},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/developer.chrome.com\\\/blog\\\/chrome-devtools-mcp#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"\u30db\u30fc\u30e0\",\"item\":\"https:\\\/\\\/pokecon.jp\\\/job\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Chrome DevTools (MCP) for your AI agent \u00a0|\u00a0 Blog \u00a0|\u00a0 Chrome for Developers\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/pokecon.jp\\\/job\\\/#website\",\"url\":\"https:\\\/\\\/pokecon.jp\\\/job\\\/\",\"name\":\"\u30dd\u30b1\u30b3\u30f3\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/pokecon.jp\\\/job\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"ja\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/pokecon.jp\\\/job\\\/#\\\/schema\\\/person\\\/16c9f07b1ba984d165d9aee259bda997\",\"name\":\"info@pokecon.jp\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"ja\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/2b0549cd9f7907c092ca5fbb283baf72337f235726e4b46fa39ec0b701ac2fe2?s=96&d=wavatar&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/2b0549cd9f7907c092ca5fbb283baf72337f235726e4b46fa39ec0b701ac2fe2?s=96&d=wavatar&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/2b0549cd9f7907c092ca5fbb283baf72337f235726e4b46fa39ec0b701ac2fe2?s=96&d=wavatar&r=g\",\"caption\":\"info@pokecon.jp\"},\"url\":\"https:\\\/\\\/pokecon.jp\\\/job\\\/author\\\/infopokecon-jp\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Chrome DevTools (MCP) for your AI agent \u00a0|\u00a0 Blog \u00a0|\u00a0 Chrome for Developers - \u30dd\u30b1\u30b3\u30f3","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/developer.chrome.com\/blog\/chrome-devtools-mcp","og_locale":"ja_JP","og_type":"article","og_title":"Chrome DevTools (MCP) for your AI agent \u00a0|\u00a0 Blog \u00a0|\u00a0 Chrome for Developers - \u30dd\u30b1\u30b3\u30f3","og_description":"Chrome DevTools (MCP) for your AI agent Stay organized with collections Save and categorize content based on y [&hellip;]","og_url":"https:\/\/developer.chrome.com\/blog\/chrome-devtools-mcp","og_site_name":"\u30dd\u30b1\u30b3\u30f3","article_published_time":"2025-09-23T22:51:07+00:00","og_image":[{"width":2560,"height":1440,"url":"https:\/\/pokecon.jp\/job\/wp-content\/uploads\/2025\/09\/hero-scaled.png","type":"image\/png"}],"author":"info@pokecon.jp","twitter_card":"summary_large_image","twitter_misc":{"\u57f7\u7b46\u8005":"info@pokecon.jp","\u63a8\u5b9a\u8aad\u307f\u53d6\u308a\u6642\u9593":"3\u5206"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/developer.chrome.com\/blog\/chrome-devtools-mcp#article","isPartOf":{"@id":"https:\/\/pokecon.jp\/job\/6672\/"},"author":{"name":"info@pokecon.jp","@id":"https:\/\/pokecon.jp\/job\/#\/schema\/person\/16c9f07b1ba984d165d9aee259bda997"},"headline":"Chrome DevTools (MCP) for your AI agent \u00a0|\u00a0 Blog \u00a0|\u00a0 Chrome for Developers","datePublished":"2025-09-23T22:51:07+00:00","mainEntityOfPage":{"@id":"https:\/\/pokecon.jp\/job\/6672\/"},"wordCount":584,"image":{"@id":"https:\/\/developer.chrome.com\/blog\/chrome-devtools-mcp#primaryimage"},"thumbnailUrl":"https:\/\/pokecon.jp\/job\/wp-content\/uploads\/2025\/09\/hero-scaled.png","articleSection":["\u306f\u3066\u306a\u30d6\u30ed\u30b0"],"inLanguage":"ja"},{"@type":"WebPage","@id":"https:\/\/pokecon.jp\/job\/6672\/","url":"https:\/\/developer.chrome.com\/blog\/chrome-devtools-mcp","name":"Chrome DevTools (MCP) for your AI agent \u00a0|\u00a0 Blog \u00a0|\u00a0 Chrome for Developers - \u30dd\u30b1\u30b3\u30f3","isPartOf":{"@id":"https:\/\/pokecon.jp\/job\/#website"},"primaryImageOfPage":{"@id":"https:\/\/developer.chrome.com\/blog\/chrome-devtools-mcp#primaryimage"},"image":{"@id":"https:\/\/developer.chrome.com\/blog\/chrome-devtools-mcp#primaryimage"},"thumbnailUrl":"https:\/\/pokecon.jp\/job\/wp-content\/uploads\/2025\/09\/hero-scaled.png","datePublished":"2025-09-23T22:51:07+00:00","author":{"@id":"https:\/\/pokecon.jp\/job\/#\/schema\/person\/16c9f07b1ba984d165d9aee259bda997"},"breadcrumb":{"@id":"https:\/\/developer.chrome.com\/blog\/chrome-devtools-mcp#breadcrumb"},"inLanguage":"ja","potentialAction":[{"@type":"ReadAction","target":["https:\/\/developer.chrome.com\/blog\/chrome-devtools-mcp"]}]},{"@type":"ImageObject","inLanguage":"ja","@id":"https:\/\/developer.chrome.com\/blog\/chrome-devtools-mcp#primaryimage","url":"https:\/\/pokecon.jp\/job\/wp-content\/uploads\/2025\/09\/hero-scaled.png","contentUrl":"https:\/\/pokecon.jp\/job\/wp-content\/uploads\/2025\/09\/hero-scaled.png","width":2560,"height":1440},{"@type":"BreadcrumbList","@id":"https:\/\/developer.chrome.com\/blog\/chrome-devtools-mcp#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"\u30db\u30fc\u30e0","item":"https:\/\/pokecon.jp\/job\/"},{"@type":"ListItem","position":2,"name":"Chrome DevTools (MCP) for your AI agent \u00a0|\u00a0 Blog \u00a0|\u00a0 Chrome for Developers"}]},{"@type":"WebSite","@id":"https:\/\/pokecon.jp\/job\/#website","url":"https:\/\/pokecon.jp\/job\/","name":"\u30dd\u30b1\u30b3\u30f3","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/pokecon.jp\/job\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"ja"},{"@type":"Person","@id":"https:\/\/pokecon.jp\/job\/#\/schema\/person\/16c9f07b1ba984d165d9aee259bda997","name":"info@pokecon.jp","image":{"@type":"ImageObject","inLanguage":"ja","@id":"https:\/\/secure.gravatar.com\/avatar\/2b0549cd9f7907c092ca5fbb283baf72337f235726e4b46fa39ec0b701ac2fe2?s=96&d=wavatar&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/2b0549cd9f7907c092ca5fbb283baf72337f235726e4b46fa39ec0b701ac2fe2?s=96&d=wavatar&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/2b0549cd9f7907c092ca5fbb283baf72337f235726e4b46fa39ec0b701ac2fe2?s=96&d=wavatar&r=g","caption":"info@pokecon.jp"},"url":"https:\/\/pokecon.jp\/job\/author\/infopokecon-jp\/"}]}},"_links":{"self":[{"href":"https:\/\/pokecon.jp\/job\/wp-json\/wp\/v2\/posts\/6672","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/pokecon.jp\/job\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/pokecon.jp\/job\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/pokecon.jp\/job\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/pokecon.jp\/job\/wp-json\/wp\/v2\/comments?post=6672"}],"version-history":[{"count":1,"href":"https:\/\/pokecon.jp\/job\/wp-json\/wp\/v2\/posts\/6672\/revisions"}],"predecessor-version":[{"id":6674,"href":"https:\/\/pokecon.jp\/job\/wp-json\/wp\/v2\/posts\/6672\/revisions\/6674"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/pokecon.jp\/job\/wp-json\/wp\/v2\/media\/6673"}],"wp:attachment":[{"href":"https:\/\/pokecon.jp\/job\/wp-json\/wp\/v2\/media?parent=6672"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/pokecon.jp\/job\/wp-json\/wp\/v2\/categories?post=6672"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/pokecon.jp\/job\/wp-json\/wp\/v2\/tags?post=6672"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}