featured
Pack: wikimedia-rest · Endpoint: https://gateway.pipeworx.io/wikimedia-rest/mcp
Wikipedia’s “today’s featured” content for a specific date — featured article, most-read, picture of the day, on-this-day events. Use for “what’s on Wikipedia today”, “featured article on 2026-05-21”, or to seed daily-roundup content.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
year | number | yes | |
month | number | yes | |
day | number | yes | |
project | string | no | |
lang | string | no |
Example call
Arguments
{
"year": 2024,
"month": 3,
"day": 15
}
curl
curl -X POST https://gateway.pipeworx.io/wikimedia-rest/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"featured","arguments":{"year":2024,"month":3,"day":15}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('featured', {
"year": 2024,
"month": 3,
"day": 15
});
More examples
{
"year": 2024,
"month": 12,
"day": 25,
"lang": "en",
"project": "wikipedia"
}
Response shape
Full JSON Schema
{
"type": "object",
"description": "Daily featured content from Wikimedia REST API"
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"wikimedia-rest": {
"url": "https://gateway.pipeworx.io/wikimedia-rest/mcp"
}
}
}
See Getting Started for client-specific install steps.