Wikipedia article summaries from the official Wikipedia REST API in any language edition: give an article title, get the canonical title, the lead-section summary, and the article URL. Retrieves encyclopedia article summaries — it does not search the web or return full article text.
POST https://wikipedia.aginttest.net/mcpget_wikipedia_summaryFetch the lead summary, canonical title, and URL of a Wikipedia article by title, returning a JSON object matching the declared output schema.
{
"type": "object",
"properties": {
"title": {
"type": "string",
"description": "Wikipedia article title (e.g. 'Alan Turing')"
},
"lang": {
"type": "string",
"default": "en",
"description": "Wikipedia language edition code (e.g. 'en', 'es', 'ja')"
}
},
"required": [
"title"
]
}