featured_article

Pack: wikifeed · Endpoint: https://gateway.pipeworx.io/wikifeed/mcp

Get Wikipedia’s featured article for a specific date.

Parameters

NameTypeRequiredDescription
yearstringyesFour-digit year (e.g., “2024”)
monthstringyesTwo-digit month number (e.g., “01”, “12”)
daystringyesTwo-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

FieldTypeDescription
titlestringWikipedia article title
display_titlestringFormatted display title of the article
descriptionstring | nullShort description or null
extractstring | nullExtract or summary of the article
urlstring | nullWikipedia page URL or null
imageobject | nullFeatured 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.

Regenerated from source · build May 9, 2026