Skip to main content
Glama

ZOOQ - LinkedIn Data for AI Agents

g_skill_lookup

Read-onlyIdempotent

Resolve one skill by its stable skl_ id — returns the display name and normalized name. Get the id from g_title_skills_lookup (skill search). (Costs 10 Zooq credits.)

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYesStable skill id (skl_...). Get it from g_title_skills_lookup — read data[].id.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
idNoExample value was a string
nameNoExample value was a string
normalized_nameNoExample value was a string

TDQS

A4.3/5.0
Behavior4/5

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

Annotations already establish readOnlyHint, openWorldHint, idempotentHint, and non-destructive behavior. The description adds useful behavioral context beyond that: the operation costs 10 Zooq credits and returns both display and normalized names, which helps the agent anticipate side effects and output shape.

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

Conciseness5/5

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

Two concise sentences, both earning their place: the first states the operation and return values, the second provides the id source and cost. No redundant filler or restatement of annotations.

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?

For a single-parameter lookup tool with a rich annotations block, full schema coverage, and an output schema, the description is complete. It covers the source of the id, the cost, and what the tool returns, so an agent has everything needed to invoke it correctly.

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

Parameters3/5

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

Schema description coverage is 100%, so the schema already fully documents the 'id' parameter, including the skl_ prefix and the instruction to read data[].id from g_title_skills_lookup. The description adds no meaning beyond repeating what the schema already provides, hence the baseline 3.

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 uses a specific verb, 'Resolve', with a clear resource, 'one skill by its stable skl_ id', and states the return values: display name and normalized name. This clearly differentiates it from the sibling g_title_skills_lookup, which is for searching skills rather than resolving a single 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?

The description explicitly tells the agent where to get the required id — from g_title_skills_lookup via data[].id — which establishes the correct upstream workflow. It does not explicitly list when-not-to-use scenarios, but the lookup-versus-search distinction is clearly implied.

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

A3.7/5.0
Disambiguation3/5

Most tools are separated by domain prefixes and the descriptions are unusually explicit about differences, but there are direct overlaps: companies_name_lookup is the same upstream as search_companies, companies_entity_id vs companies_universal_name_to_id resolve different id spaces, and search_people/search_people_live plus search_companies/search_companies_live cover similar ground. An agent can usually pick correctly, but only after close reading.

Naming Consistency4/5

The set is consistently snake_case with readable domain prefixes like companies_, jobs_, posts_, profile_, and search_. Deviations include the unexplained g_* prefix, jobs_details_v2's version suffix, affiliate_program lacking a resource prefix, and the duplicate naming convention of companies_name_lookup vs search_companies.

Tool Count2/5

45 tools is well above the 25+ threshold and creates a heavy surface for an agent to scan. While the domains are broad, some tools are redundant (companies_name_lookup/search_companies) or tangential (affiliate_program), so the count is not fully justified.

Completeness4/5

The server covers people, companies, jobs, posts, email, schools, and skills with both search and detail endpoints, which is strong for a read-only LinkedIn API. Obvious gaps like a global post search or a company followers list are absent, but the existing paths support most workflows without dead ends.