get_article_extract
ActiveTool of wikipedia
Full plain-text of a Wikipedia article by title — the ACTUAL prose, not just the lead paragraph. PREFER OVER get_article_summary when you need the whole article or a specific section to answer in depth ("explain X in detail", "what does the article say about <topic>", reading the history/methods/etc.). Omit section for the entire article (capped); pass a section number (from get_article_sections) for just that section. Returns clean plain text, no markup.
Parameters schema
{
"type": "object",
"required": [
"title"
],
"properties": {
"title": {
"type": "string",
"description": "Wikipedia article title (e.g. \"CRISPR\", \"Albert Einstein\")."
},
"section": {
"type": "number",
"description": "OPTIONAL section number (from get_article_sections) to return just that section. Omit for the full article."
},
"max_chars": {
"type": "number",
"description": "Cap on characters returned (1000-100000, default 40000)."
}
}
}Parent server
wikipedia
https://github.com/pipeworx-io/mcp-wikipedia
2/7 registries