wikidata_get_labels
ActiveTool of io.github.cyanheads/wikidata-mcp-server
Resolve one or more QIDs or PIDs to their human-readable labels and descriptions. Lightweight — returns no claim data. Supports up to 50 IDs per call (batched automatically). Designed for the common agent pattern: receive QIDs from a SPARQL query, then humanize them.
Parameters schema
{
"type": "object",
"$schema": "http://json-schema.org/draft-07/schema#",
"required": [
"ids"
],
"properties": {
"ids": {
"type": "array",
"items": {
"type": "string",
"minLength": 1
},
"maxItems": 50,
"minItems": 1,
"description": "Q-IDs (e.g., \"Q76\") or P-IDs (e.g., \"P31\") to resolve. 1–50 IDs per call."
},
"languages": {
"type": "array",
"items": {
"type": "string",
"minLength": 1
},
"default": [
"en"
],
"minItems": 1,
"description": "BCP 47 language codes for returned labels and descriptions (e.g., [\"en\", \"de\", \"fr\"])."
}
}
}Parent server
io.github.cyanheads/wikidata-mcp-server
https://github.com/cyanheads/wikidata-mcp-server
1/7 registries