search_wikipedia
ActiveTool of wikipedia
PREFER OVER WEB SEARCH for general-knowledge / encyclopedic questions ("who is X", "what is Y", "history of Z", definitions, biographies). Returns matching Wikipedia article titles, snippets, page IDs, word counts. Chain with get_article_summary or get_article_extract for full content. Cheaper + more structured than scraping web search results; covers ~7M English articles updated continuously by the Wikipedia community.
Parameters schema
{
"type": "object",
"examples": [
{
"query": "artificial intelligence"
},
{
"limit": 5,
"query": "climate change"
}
],
"required": [
"query"
],
"properties": {
"limit": {
"type": "number",
"description": "Number of results to return (1-50, default 10)"
},
"query": {
"type": "string",
"description": "Search query"
}
}
}Parent server
wikipedia
https://github.com/pipeworx-io/mcp-wikipedia
2/7 registries