You're viewing a demo portfolio

Join the waitlist
PRSM

kg_find_entity

Active

Tool of io.github.saloprj/dialogbrain

declared in 1.17.0

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."
    }
  }
}

What this tool wraps· 0 endpoints

min confidence0.700.50

No endpoints wrapped at confidence ≥ 0.70.

Parent server

io.github.saloprj/dialogbrain

https://github.com/saloprj/dialogbrain-mcp

1/7 registries
View full server →