page_metadata
Pack: wikimedia-rest · Endpoint: https://gateway.pipeworx.io/wikimedia-rest/mcp
Wikipedia article metadata: categories, inter-language links, content_urls (desktop/mobile), page_id, and namespace (ns). Use to get canonical IDs, discover language versions, or check which categories an article belongs to.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
title | string | yes | |
project | string | no | |
lang | string | no |
Example call
Arguments
{
"title": "Marie Curie"
}
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_metadata","arguments":{"title":"Marie Curie"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('page_metadata', {
"title": "Marie Curie"
});
Response shape
Full JSON Schema
{
"type": "object",
"description": "Page metadata 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.