most_read
Pack: wikifeed · Endpoint: https://gateway.pipeworx.io/wikifeed/mcp
Get the most-read Wikipedia articles 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": "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
| Field | Type | Description |
|---|---|---|
date | string | Date in YYYY-MM-DD format |
articles | array | Top 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.