Wikipedia article
*://en.wikipedia.org/wiki/*
Read-only tools for English Wikipedia articles: summary extraction, section listing, and search.
by webmcp-cafe · v1 · 0 installs · updated 7/24/2026
Tools (3)
wiki_summaryread-onlyExtract the lead paragraphs of the Wikipedia article currently open.
inputSchema + execution
{ "inputSchema": { "type": "object", "properties": {} }, "execution": { "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-onlyList the section headings of the Wikipedia article currently open.
inputSchema + execution
{ "inputSchema": { "type": "object", "properties": {} }, "execution": { "selector": "body", "autosubmit": false, "resultExtract": "list", "resultSelector": "#mw-content-text .mw-heading h2, #mw-content-text .mw-heading h3" } }wiki_searchread-onlySearch English Wikipedia. Navigates to the search results page (or straight to a matching article).
inputSchema + execution
{ "inputSchema": { "type": "object", "required": [ "query" ], "properties": { "query": { "type": "string", "description": "Search query" } } }, "execution": { "steps": [ { "url": "https://en.wikipedia.org/w/index.php?search={{query}}", "action": "navigate" } ], "selector": "body", "autosubmit": false } }