Wikipedia
liveReferenceSearch and retrieve Wikipedia articles — summaries, section structure, and random article discovery
Tools
search_wikipediaSearch Wikipedia for encyclopedic facts, sports event schedules, medal tables, officeholder rosters and biographies. Covers multi-sport games and tournaments edition by edition — Olympics, Asian Games
No parameters required.
Try it
get_article_summaryA Wikipedia article's lead paragraph, description and thumbnail, by exact title.
No parameters required.
Try it
get_article_sectionsSection outline of a Wikipedia article by title — the table-of-contents. Returns all headings + hierarchy (H2, H3, etc.) without the prose. Use when the article is long (history, science topics, biogr
No parameters required.
Try it
get_random_articlesDiscover random Wikipedia articles for serendipitous learning. Returns title, introduction text, and page ID.
No parameters required.
Try it
get_article_extractFull text of a Wikipedia article by title — the ACTUAL prose AND its tables, not just the lead paragraph. This is how you read a competition schedule, fixture list, medal table, results grid or roster
No parameters required.
Try it
Test with curl
The gateway speaks JSON-RPC 2.0 over HTTP POST. You can test any pack directly from the terminal.
curl -X POST https://gateway.pipeworx.io/wikipedia/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'curl -X POST https://gateway.pipeworx.io/wikipedia/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"search_wikipedia","arguments":{}}}'Use with the SDK
Install @pipeworx/sdk to call tools from any TypeScript/Node project.
import { Pipeworx } from '@pipeworx/sdk';
const px = new Pipeworx();
const result = await px.call("search_wikipedia", {});// Or ask in plain English:
const answer = await px.ask("search and retrieve wikipedia articles — summaries, section structure, and random article discovery");