kg_find_entity
ActiveTool of io.github.saloprj/dialogbrain
Find an entity by name in the Knowledge Graph. USE WHEN user mentions a person, project, company by name and you need: - To resolve a name to entity_id for subsequent queries - 'Кто работает над X?' → find X first - 'Расскажи про Y' → find Y first RETURNS entity_id for use in kg.get_relationships or kg.explore. ALWAYS use this as the FIRST step in KG query chains.
Parameters schema
{
"type": "object",
"required": [
"name"
],
"properties": {
"name": {
"type": "string",
"description": "Entity name to search for. Can be in any language (Russian, English, etc.) - transliteration is automatic."
},
"limit": {
"type": "integer",
"default": 5,
"maximum": 10,
"minimum": 1,
"description": "Maximum results to return (1-10). Default: 5"
},
"entity_type": {
"enum": [
"person",
"project",
"organization",
"event",
"topic",
"location",
"document"
],
"type": "string",
"description": "Filter by entity type:\n- 'person': People, contacts\n- 'project': Projects, tasks\n- 'organization': Companies, teams\n- 'event': Meetings, deadlines\n- 'topic': Discussion topics\n- 'location': Places, addresses\n- 'document': Files, documents\nOMIT to include all entity types."
}
}
}No endpoints wrapped at confidence ≥ 0.70.
Parent server
io.github.saloprj/dialogbrain
https://github.com/saloprj/dialogbrain-mcp
1/7 registries