cs_search_wikidata_entity
Search Wikidata for any entity by query, retrieving its ID, label, description, and URI. Handles general-purpose lookups across all entity types.
Instructions
Search for any entity in Wikidata.
PURPOSE: General-purpose Wikidata entity search for various use cases.
WHEN TO USE:
When searching for entities that aren't occupations
For broader Wikidata lookups
When you need flexibility in entity type
WHEN NOT TO USE:
Specifically for occupations → use search_for_wikidata_occupation()
For GND/GeoNames data → use respective tools
Args: query: Search term for any Wikidata entity limit: Maximum number of results to return language: Language code for labels (default: "de")
Returns: List of dicts with entity information: - id: Wikidata ID (e.g., "Q36180") - label: Entity name - description: Brief description - uri: Full Wikidata URI
Example: >>> results = await search_wikidata_entity("Aufklärung") >>> entity_id = results[0]['id']
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | ||
| query | Yes | ||
| language | No | de |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |