get_wikidata_facts

Pack: wikidata · Endpoint: https://gateway.pipeworx.io/wikidata/mcp

Structured facts about a Wikidata entity in HUMAN-READABLE form — property names and values resolved to labels, not raw P/Q codes. PREFER OVER get_entity for “what is X\x27s ”, “facts about X”, “X\x27s date of birth / capital / population”. E.g. Q42 (Douglas Adams) -> {“date of birth”:[“1952-03-11…”],“occupation”:[“writer”,…],“place of birth”:[“Cambridge”]}. Pass a Q-id from search_entities.

Parameters

NameTypeRequiredDescription
idstringyesWikidata entity Q-id (e.g. “Q42”). Find it with search_entities.

Example call

Arguments

{
  "id": "Q42"
}

curl

curl -X POST https://gateway.pipeworx.io/wikidata/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"get_wikidata_facts","arguments":{"id":"Q42"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('get_wikidata_facts', {
  "id": "Q42"
});

More examples

{
  "id": "Q1764"
}

Connect

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

{
  "mcpServers": {
    "wikidata": {
      "url": "https://gateway.pipeworx.io/wikidata/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build August 8, 2026