MDN Web Docs

*://developer.mozilla.org/*

Read-only tools for MDN: extract the current page's headings and article text, and search MDN.

by webmcp-cafe · v1 · updated 7/28/2026

Checking for the extension…

Installing saves v1 in your browser — nothing is tied to your account. The extension registers its tools whenever you're on a matching page, and you stay on v1 until you update.

Needs the extension on Chrome 149+ with the WebMCP testing flag. Get the extension →

Tools (3)

  • mdn_list_headingsread-only

    List the section headings of the MDN page currently open.

    Show input schema and execution
    {
      "inputSchema": {
        "type": "object",
        "properties": {}
      },
      "execution": {
        "mode": "dom",
        "selector": "body",
        "autosubmit": false,
        "resultExtract": "list",
        "resultSelector": "article h2, article h3"
      }
    }
  • mdn_read_articleread-only

    Extract the text content of the MDN article currently open.

    Show input schema and execution
    {
      "inputSchema": {
        "type": "object",
        "properties": {}
      },
      "execution": {
        "mode": "dom",
        "selector": "body",
        "autosubmit": false,
        "resultExtract": "text",
        "resultSelector": "article"
      }
    }
  • mdn_searchread-only

    Search MDN Web Docs. Navigates to the MDN search results page.

    Show input schema and execution
    {
      "inputSchema": {
        "type": "object",
        "required": [
          "query"
        ],
        "properties": {
          "query": {
            "type": "string",
            "description": "Search query"
          }
        }
      },
      "execution": {
        "mode": "dom",
        "steps": [
          {
            "url": "https://developer.mozilla.org/en-US/search?q={{query}}",
            "action": "navigate"
          }
        ],
        "selector": "body",
        "autosubmit": false
      }
    }