page_related

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

“What’s related to X” / “see also” — Wikipedia’s related-articles graph for any topic. Returns up to ~12 related pages with summaries. Use for “what should I read next”, topic exploration, or finding adjacent concepts.

Parameters

NameTypeRequiredDescription
titlestringyes
projectstringno
langstringno

Example call

Arguments

{
  "title": "Isaac Newton"
}

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_related","arguments":{"title":"Isaac Newton"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('page_related', {
  "title": "Isaac Newton"
});

Response shape

Full JSON Schema
{
  "type": "object",
  "description": "Related pages 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