picture_of_day

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

Get Wikipedia’s picture of the day for a specific date, including title, description, and image URL.

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": "06",
  "day": "21"
}

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":"picture_of_day","arguments":{"year":"2024","month":"06","day":"21"}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('picture_of_day', {
  "year": "2024",
  "month": "06",
  "day": "21"
});

Response shape

Always returns: title, description, image_url, thumbnail, file_page

FieldTypeDescription
titlestringTitle of the picture
descriptionstring | nullDescription text or null
image_urlstring | nullFull-size image URL or null
thumbnailobject | nullThumbnail image or null
file_pagestring | nullFile page URL or null
Full JSON Schema
{
  "type": "object",
  "properties": {
    "title": {
      "type": "string",
      "description": "Title of the picture"
    },
    "description": {
      "type": [
        "string",
        "null"
      ],
      "description": "Description text or null"
    },
    "image_url": {
      "type": [
        "string",
        "null"
      ],
      "description": "Full-size image URL or null"
    },
    "thumbnail": {
      "type": [
        "object",
        "null"
      ],
      "description": "Thumbnail image or null",
      "properties": {
        "source": {
          "type": "string",
          "description": "Thumbnail URL"
        },
        "width": {
          "type": "number",
          "description": "Thumbnail width in pixels"
        },
        "height": {
          "type": "number",
          "description": "Thumbnail height in pixels"
        }
      },
      "required": [
        "source",
        "width",
        "height"
      ]
    },
    "file_page": {
      "type": [
        "string",
        "null"
      ],
      "description": "File page URL or null"
    }
  },
  "required": [
    "title",
    "description",
    "image_url",
    "thumbnail",
    "file_page"
  ]
}

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