most_read

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

Get the most-read Wikipedia articles 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": "03",
  "day": "01"
}

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":"most_read","arguments":{"year":"2024","month":"03","day":"01"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('most_read', {
  "year": "2024",
  "month": "03",
  "day": "01"
});

Response shape

Always returns: date, articles

FieldTypeDescription
datestringDate in YYYY-MM-DD format
articlesarrayTop 20 most-read articles
Full JSON Schema
{
  "type": "object",
  "properties": {
    "date": {
      "type": "string",
      "description": "Date in YYYY-MM-DD format"
    },
    "articles": {
      "type": "array",
      "description": "Top 20 most-read articles",
      "items": {
        "type": "object",
        "properties": {
          "rank": {
            "type": "number",
            "description": "Ranking position"
          },
          "title": {
            "type": "string",
            "description": "Wikipedia article title"
          },
          "display_title": {
            "type": "string",
            "description": "Formatted display title"
          },
          "views": {
            "type": "number",
            "description": "Number of views"
          },
          "description": {
            "type": [
              "string",
              "null"
            ],
            "description": "Short description or null"
          },
          "url": {
            "type": [
              "string",
              "null"
            ],
            "description": "Wikipedia page URL or null"
          }
        },
        "required": [
          "rank",
          "title",
          "display_title",
          "views",
          "description",
          "url"
        ]
      }
    }
  },
  "required": [
    "date",
    "articles"
  ]
}

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