featured_article
Pack: wikifeed · Endpoint: https://gateway.pipeworx.io/wikifeed/mcp
Get Wikipedia’s featured article for a specific date.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
year | string | yes | Four-digit year (e.g., “2024”) |
month | string | yes | Two-digit month number (e.g., “01”, “12”) |
day | string | yes | Two-digit day number (e.g., “01”, “15”) |
Example call
Arguments
{
"year": "2024",
"month": "01",
"day": "15"
}
curl
curl -X POST https://gateway.pipeworx.io/wikifeed/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"featured_article","arguments":{"year":"2024","month":"01","day":"15"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('featured_article', {
"year": "2024",
"month": "01",
"day": "15"
});
More examples
{
"year": "2023",
"month": "07",
"day": "04"
}
Response shape
Always returns: title, display_title, description, extract, url, image
| Field | Type | Description |
|---|---|---|
title | string | Wikipedia article title |
display_title | string | Formatted display title of the article |
description | string | null | Short description or null |
extract | string | null | Extract or summary of the article |
url | string | null | Wikipedia page URL or null |
image | object | null | Featured image or null |
Full JSON Schema
{
"type": "object",
"properties": {
"title": {
"type": "string",
"description": "Wikipedia article title"
},
"display_title": {
"type": "string",
"description": "Formatted display title of the article"
},
"description": {
"type": [
"string",
"null"
],
"description": "Short description or null"
},
"extract": {
"type": [
"string",
"null"
],
"description": "Extract or summary of the article"
},
"url": {
"type": [
"string",
"null"
],
"description": "Wikipedia page URL or null"
},
"image": {
"type": [
"object",
"null"
],
"description": "Featured image or null",
"properties": {
"source": {
"type": "string",
"description": "Image URL"
},
"width": {
"type": "number",
"description": "Image width in pixels"
},
"height": {
"type": "number",
"description": "Image height in pixels"
}
},
"required": [
"source",
"width",
"height"
]
}
},
"required": [
"title",
"display_title",
"description",
"extract",
"url",
"image"
]
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"wikifeed": {
"url": "https://gateway.pipeworx.io/wikifeed/mcp"
}
}
}
See Getting Started for client-specific install steps.