Skip to main content
Glama

LinkedIn: Resolve person

linkedin_resolve_person
Read-onlyIdempotent

Resolve a human description (name, role, employer, location keywords) to LinkedIn people and their stable system IDs before an action. Use when the user says 'message Sarah at Acme' or 'connect with the CTO of X' rather than providing an ID. If multiple plausible results remain, show/disambiguate them before any write. LinkedIn system user ID: Stable LinkedIn/Unipile user id, commonly ACo... for Classic profiles. Obtain with: linkedin_get_profile_from_url(profile_url) -> result.id; linkedin_get_profile(user_id_or_public_identifier) -> result.id; linkedin_search_people(...) -> selected result.id Never pass: full linkedin.com/in/... URL, person name, company ID.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
limitNo
filtersNoOptional already-resolved LinkedIn search filters. If a filter needs a provider parameter ID, resolve it first with linkedin_get_search_parameters.
keywordsYes
account_idNoOptional Nilyo connection ID (unipile_account_id from list_connected_accounts). Omit when the user has one account for this provider. When several exist, Nilyo never guesses: list them (display name, identifier, provider user ID), choose the one the user named or ask, and pass its ID here.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observed

TDQS

A4.5/5.0
Behavior5/5

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

Annotations already declare read-only/idempotent behavior, and the description adds meaningful workflow context: this is a pre-action resolution step, multiple plausible results must be disambiguated before any write, and the output is a stable system ID commonly in ACo... format. This goes beyond the annotation flags and helps prevent unsafe or premature actions.

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?

Most sentences are front-loaded and purposeful: purpose, trigger conditions, disambiguation policy, ID format, and anti-patterns all earn their place. The ID-obtaining chain is dense but relevant; a little restructuring or bullet formatting would make it easier to scan.

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

Completeness4/5

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

Together with annotations and schema, the description covers input semantics, safety, disambiguation, and output ID format. It doesn't specify no-match behavior or output shape, but the absence of an output schema is partially mitigated by the stable-ID explanation. Adequate for a resolver tool of this complexity.

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?

The schema covers filters and account_id, while the description compensates for the under-documented keywords parameter by specifying accepted content (name, role, employer, location keywords) and by listing how to obtain the stable ID and what never to pass instead. The limit parameter remains only partially addressed, but its schema constraints make its meaning clear enough.

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 specific verb and resource: 'Resolve a human description ... to LinkedIn people and their stable system IDs.' It clearly distinguishes itself from siblings like linkedin_resolve_company by targeting people and by framing the input as a natural-language description rather than an ID.

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

Usage Guidelines4/5

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

It gives concrete trigger examples ('message Sarah at Acme', 'connect with the CTO of X') and an explicit exclusion ('rather than providing an ID'). It also instructs the agent to disambiguate before writes, but it doesn't name the direct-ID alternative tools as replacements, so it is clear context without a full when-not/alternative matrix.

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.