page_media

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

Images, videos, and other media embedded in a Wikipedia article. Use for “show me pictures of X”, “what images are on the X Wikipedia page”, or to find Commons-hosted media tied to a topic.

Parameters

NameTypeRequiredDescription
titlestringyes
projectstringno
langstringno

Example call

Arguments

{
  "title": "The Mona Lisa"
}

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_media","arguments":{"title":"The Mona Lisa"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('page_media', {
  "title": "The Mona Lisa"
});

Response shape

Full JSON Schema
{
  "type": "object",
  "description": "Media (images and videos) from page"
}

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