wikidata_get_statements
ActiveTool of io.github.cyanheads/wikidata-mcp-server
Fetch property claims for a Wikidata entity with qualifier and reference detail. Value QIDs are resolved to human-readable labels by default. Use the properties parameter to fetch only specific P-IDs — omitting it returns all statements, which can be large. Designed for fact verification: "what does Wikidata say about this entity's {property}?". Preferred-rank statements are the most current values.
Parameters schema
{
"type": "object",
"$schema": "http://json-schema.org/draft-07/schema#",
"required": [
"id"
],
"properties": {
"id": {
"type": "string",
"minLength": 1,
"description": "Q-ID (e.g., \"Q76\") or P-ID of the entity to fetch statements for."
},
"language": {
"type": "string",
"default": "en",
"description": "Language code for label resolution of QID values (e.g., \"en\", \"de\")."
},
"properties": {
"type": "array",
"items": {
"type": "string",
"minLength": 1
},
"description": "P-IDs to fetch (e.g., [\"P31\", \"P569\", \"P27\"]). Omit to return all properties (may be large for major items)."
},
"resolve_labels": {
"type": "boolean",
"default": true,
"description": "Resolve wikibase-item value QIDs to human-readable labels via a batched label call. Set to false to skip label resolution and return raw QIDs only (faster, smaller payload)."
}
}
}Parent server
io.github.cyanheads/wikidata-mcp-server
https://github.com/cyanheads/wikidata-mcp-server
1/7 registries