Wikipedia article

*://en.wikipedia.org/wiki/*

Read-only tools for English Wikipedia articles: summary extraction, section listing, and search.

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)

  • wiki_summaryread-only

    Extract the lead paragraphs of the Wikipedia article currently open.

    Show input schema and execution
    {
      "inputSchema": {
        "type": "object",
        "properties": {}
      },
      "execution": {
        "mode": "dom",
        "selector": "body",
        "autosubmit": false,
        "resultExtract": "text",
        "resultSelector": "#mw-content-text .mw-parser-output > section:first-of-type > p:not(.mw-empty-elt)"
      }
    }
  • wiki_list_sectionsread-only

    List the section headings of the Wikipedia article currently open.

    Show input schema and execution
    {
      "inputSchema": {
        "type": "object",
        "properties": {}
      },
      "execution": {
        "mode": "dom",
        "selector": "body",
        "autosubmit": false,
        "resultExtract": "list",
        "resultSelector": "#mw-content-text .mw-heading h2, #mw-content-text .mw-heading h3"
      }
    }
  • wiki_searchread-only

    Search English Wikipedia. Navigates to the search results page (or straight to a matching article).

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