page_revisions

Pack: wikimedia-rest · Endpoint: https://gateway.pipeworx.io/wikimedia-rest/mcp

Recent edit history for a Wikipedia article — editor usernames, timestamps, revision sizes, and edit comments. Use to check when an article was last updated, spot recent disputes, or assess reliability before quoting.

Parameters

NameTypeRequiredDescription
titlestringyes
projectstringno
langstringno

Example call

Arguments

{
  "title": "COVID-19 pandemic",
  "lang": "en"
}

curl

curl -X POST https://gateway.pipeworx.io/wikimedia-rest/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"page_revisions","arguments":{"title":"COVID-19 pandemic","lang":"en"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('page_revisions', {
  "title": "COVID-19 pandemic",
  "lang": "en"
});

Response shape

Full JSON Schema
{
  "type": "object",
  "description": "Recent revisions/history from Wikimedia REST API"
}

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "wikimedia-rest": {
      "url": "https://gateway.pipeworx.io/wikimedia-rest/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build July 8, 2026