Skip to main content
Glama

resolve_person

Read-onlyIdempotent

Deterministically resolve a (possibly misheard) name — optionally with a company hint — to ONE person in the network. Returns 'matched' (with confidence), 'ambiguous' (ranked alternatives to ask the user about), or 'none'. PREFER THIS over hand-rolled search_people ladders whenever the task is "who is X?" from a voice note, capture, or mention — same input always gives the same answer.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
nameYesThe person's name as heard/known — misspellings are expected and handled.
companyNoCompany hint if known (also fuzzy) — sharply improves disambiguation.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
okYesWhether noticed completed the operation.
dataNoThe operation result when ok is true.
errorNoA human-readable error when ok is false.

Schema Changelog

Changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. Changed1 schema field changed
    • changedOutput schema / (root)
      Previous value: -nullNew value: +{
      +  "$schema": "http://json-schema.org/draft-07/schema#",
      +  "additionalProperties": true,
      +  "properties": {
      +    "data": {
      +      "anyOf": [
      +        {
      +          "additionalProperties": false,
      +          "properties": {
      +            "confidence": {
      +              "type": "number"
      +            },
      +            "match": {
      +              "additionalProperties": true,
      +              "properties": {
      +                "company": {
      +                  "$ref": "#/properties/data/anyOf/0/properties/match/properties/person_id"
      +                },
      +                "display_name": {
      +                  "type": "string"
      +                },
      +                "headline": {
      +                  "$ref": "#/properties/data/anyOf/0/properties/match/properties/person_id"
      +                },
      +                "id": {
      +                  "type": "string"
      +                },
      +                "name": {
      +                  "type": "string"
      +                },
      +                "person_id": {
      +                  "type": [
      +                    "string",
      +                    "null"
      +                  ]
      +                }
      +              },
      +              "type": "object"
      +            },
      +            "status": {
      +              "const": "matched",
      +              "type": "string"
      +            }
      +          },
      +          "required": [
      +            "status",
      +            "match",
      +            "confidence"
      +          ],
      +          "type": "object"
      +        },
      +        {
      +          "additionalProperties": false,
      +          "properties": {
      +            "status": {
      +              "const": "none",
      +              "type": "string"
      +            }
      +          },
      +          "required": [
      +            "status"
      +          ],
      +          "type": "object"
      +        },
      +        {
      +          "additionalProperties": false,
      +          "properties": {
      +            "alternatives": {
      +              "items": {
      +                "additionalProperties": true,
      +                "properties": {
      +                  "company": {
      +                    "$ref": "#/properties/data/anyOf/0/properties/match/properties/company"
      +                  },
      +                  "confidence": {
      +                    "type": "number"
      +                  },
      +                  "display_name": {
      +                    "$ref": "#/properties/data/anyOf/0/properties/match/properties/display_name"
      +                  },
      +                  "headline": {
      +                    "$ref": "#/properties/data/anyOf/0/properties/match/properties/headline"
      +                  },
      +                  "id": {
      +                    "$ref": "#/properties/data/anyOf/0/properties/match/properties/id"
      +                  },
      +                  "name": {
      +                    "$ref": "#/properties/data/anyOf/0/properties/match/properties/name"
      +                  },
      +                  "person_id": {
      +                    "$ref": "#/properties/data/anyOf/0/properties/match/properties/person_id"
      +                  }
      +                },
      +                "type": "object"
      +              },
      +              "type": "array"
      +            },
      +            "status": {
      +              "const": "ambiguous",
      +              "type": "string"
      +            }
      +          },
      +          "required": [
      +            "status",
      +            "alternatives"
      +          ],
      +          "type": "object"
      +        }
      +      ],
      +      "description": "The operation result when ok is true."
      +    },
      +    "error": {
      +      "description": "A human-readable error when ok is false.",
      +      "type": "string"
      +    },
      +    "ok": {
      +      "description": "Whether noticed completed the operation.",
      +      "type": "boolean"
      +    }
      +  },
      +  "required": [
      +    "ok"
      +  ],
      +  "type": "object"
      +}
  2. First observed

TDQS

A4.8/5.0
Behavior5/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

The description enriches the annotations by clarifying the deterministic behavior ('same input always gives the same answer'), which aligns with and expands on the idempotentHint=true annotation. It also details the three possible return states ('matched', 'ambiguous', 'none') and explains the handling of misheard names and fuzzy company hints, all of which go well beyond the structured fields.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description packs a lot of value into two sentences, with the core purpose front-loaded and usage guidance inserted as an aside. The dash-heavy relative clause ('— same input always gives the same answer—') is slightly redundant with 'deterministically' but reinforces the key point. It could be marginally tighter, but it remains efficient and well-ordered.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given that an output schema exists (likely documenting the return format) and the annotations already establish the safety profile (readOnly, idempotent, non-destructive), the description fully covers the operational semantics. It tells the agent what the tool does, when to use it, how it behaves with ambiguous input, and what to expect in return, leaving no critical gap for a typical invocation.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

With 100% schema coverage, the base is 3, but the description adds value by explaining that 'name' may be misheard and 'company' serves as a disambiguation hint that 'sharply improves disambiguation.' This contextualizes the purpose of both parameters beyond the schema's mechanical descriptions, justifying a score above the baseline.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description opens with a precise, verb-driven statement: 'Deterministically resolve a (possibly misheard) name — optionally with a company hint — to ONE person in the network.' This clearly defines the action, resource, and scope while setting it apart from siblings like search_people or get_person. The phrase 'PREFER THIS over hand-rolled search_people ladders' explicitly differentiates it from a key sibling, leaving no ambiguity about its purpose.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description includes an explicit usage directive: 'PREFER THIS over hand-rolled search_people ladders whenever the task is "who is X?" from a voice note, capture, or mention.' This tells the agent exactly when to choose this tool and hints at the alternative (search_people). While it does not list exclusions, the 'whenever' clause is specific enough to guide correct selection.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

B3.4/5.0
Disambiguation3/5

The tool set is organized around distinct resources, and the descriptions work hard to separate them, but several close pairs remain easy to confuse: add_memory vs memory_save vs add_note, accept_identity_match vs suggest_identity_match, and dismiss_identity_match vs mark_different_people. An agent will often need to read very subtle signals (who originated the content, pending vs initiating a merge, soft vs durable rejection) to pick the right tool.

Naming Consistency3/5

Most tools follow a clear verb_noun snake_case pattern like create_list, update_person, and delete_view, which is readable and mostly predictable. However, the memory tools break the pattern (memory_save, memory_get, memory_search instead of save_memory/get_memory/search_memory), and a few noun-style names (my_profile, network_summary, account_status) add inconsistency.

Tool Count1/5

At 57 tools, this is an extremely large surface that exceeds the calibration threshold for an extreme mismatch. The scope is broad, but many tools are micro-specialized variations of the same concept, such as four memory-related tools and seven identity-match tools, which makes the count feel inflated rather than well-scoped.

Completeness4/5

The tool set provides thorough lifecycle coverage for the core domain: people can be added, updated, searched, and removed; lists, views, actions, and scheduled tasks have create/read/update/delete; and identity matching has accept, dismiss, differentiate, and suggest paths. Minor gaps exist, such as no direct memory/note deletion or intro deletion, but agents can generally complete workflows without hitting dead ends.

Resources