Connects Claude to Wikimedia's REST API v1 through the Pipeworx gateway. You get two main tools: featured content (the daily featured article, image, and news) and onthisday events (historical events that happened on a given date). Useful when you need Claude to pull current Wikipedia featured content or answer "what happened on this day in history" questions without manually scraping or calling the API yourself. Part of a larger gateway that bundles 673+ data sources, so you can either use this standalone or connect to the full Pipeworx hub. Supports the ask_pipeworx interface for plain English queries instead of direct tool calls.
Wikimedia REST API v1 MCP.
Part of Pipeworx — an MCP gateway connecting AI agents to 673+ live data sources.
| Tool | Description |
|---|---|
featured | Daily featured content. |
onthisday | On-this-day events. |
Add to your MCP client (Claude Desktop, Cursor, Windsurf, etc.):
{
"mcpServers": {
"wikimedia-rest": {
"url": "https://gateway.pipeworx.io/wikimedia-rest/mcp"
}
}
}
Or connect to the full Pipeworx gateway for access to all 673+ data sources:
{
"mcpServers": {
"pipeworx": {
"url": "https://gateway.pipeworx.io/mcp"
}
}
}
Instead of calling tools directly, you can ask questions in plain English:
ask_pipeworx({ question: "your question about Wikimedia Rest data" })
The gateway picks the right tool and fills the arguments automatically.
MIT