Skip to main content
Glama

ZOOQ - LinkedIn Data for AI Agents

search_jobs

Read-onlyIdempotent

Job/opportunity search with the full filter set. Location filtering works: pass locations a LinkedIn geo id (e.g. 101570771 for Tel Aviv-Yafo) — see that parameter for how to find one, and note it is an EXACT match, so use a city id rather than a country id. Still id-typed and not yet usable: titles, industries, functions, benefits, commitments. Offset-paginated. data.jobs[].id is the opportunityEntityId consumed by /jobs/details-v2, /jobs/similar, /jobs/people-also-viewed, /jobs/hiring-team. (Costs 10 Zooq credits.)

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
countNoResults per page, 0-50 (default 25).
startNoPagination offset, 0-999.
salaryNoMinimum salary bucket. Accepted values: 20k, 30k, 40k, 50k, 60k, 70k, 80k, 90k, 100k.
sortByNoResult ordering. Accepted values: relevance, date_posted.
titlesNoTitle id(s), comma-separated. NOT free text: a title like 'Senior Full Stack Developer' is rejected upstream (surfaces as a 422 mentioning entityId; no credits charged). Use `keyword` for free-text role matching instead.
keywordNoFree-text keyword.
benefitsNoBenefits filter, comma-separated.
jobTypesNoJob type. Accepted values: full_time, part_time, contract, temporary, internship, volunteer, other. Comma-separate for multiple.
companiesNoNumeric organization id(s), comma-separated (e.g. 1035). Get from job payloads — data.jobs[].organization.organizationId via companies_jobs.
easyApplyNoOnly Easy Apply jobs. Accepted values: true, false.
functionsNoJob-function id(s), comma-separated. Free text is not reliably accepted — see the note on `locations`.
locationsNoGeo entity id(s), comma-separated. This is LinkedIn's own public geo id. To find the id for a location: • Type your target city, state or country into the location search box on LinkedIn • Select the correct match from the auto-complete dropdown list • Press enter to load the search results page • Check the browser address bar for geoId= followed by a long number sequence NOTE: this ID is case sensitive. Jobs may appear on LinkedIn but not here, because LinkedIn shows results for proximate locations while this search is exact-match based. Prefer a CITY id over a country id for the same reason — postings are tagged with the exact city, so Tel Aviv-Yafo (101570771) returns results where Israel (101620260) returns none.
datePostedNoRecency filter. Accepted values: 24h, 1week, 1month.
experienceNoExperience level. Accepted values: internship, entry_level, associate, mid_senior, director, executive. Comma-separate for multiple.
fairChanceNoOnly fair-chance employer jobs. Accepted values: true, false.
industriesNoIndustry id(s), comma-separated. Free text is not reliably accepted — see the note on `locations`.
commitmentsNoCompany-commitment filter, comma-separated.
verifiedJobNoOnly verified job postings. Accepted values: true, false.
workplaceTypesNoWorkplace type. Accepted values: onsite, remote, hybrid. Comma-separate for multiple.
under10ApplicantsNoOnly jobs with under 10 applicants. Accepted values: true, false.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
jobsNoArray in the example
totalNoExample value was a number

TDQS

A4.8/5.0
Behavior5/5

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

Beyond the readOnly/idempotent annotations, the description discloses exact-match location behavior, the fact that results may differ from LinkedIn's own UI, offset pagination, a 10-credit cost, and that some accepted id filters are not yet usable. This is rich, non-obvious behavioral context.

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?

The description is dense but compact. Six sentences cover purpose, location handling, unusable filters, pagination, downstream id usage, and cost, with the core purpose stated first and no filler.

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 20-parameter search tool with an output schema, the description covers the remaining decision-critical context: pagination, exact-match limitations, unusable parameters, downstream consumers of the returned jobs, and credit cost. Nothing essential is missing for correct selection and invocation.

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

Parameters5/5

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

Schema coverage is 100%, but the prose adds important cross-parameter meaning: it flags id-typed filters that are not yet usable, explains how to find LinkedIn geo ids, and warns that titles must be ids rather than free text. These caveats are not fully present in every individual parameter description.

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 opening phrase "Job/opportunity search with the full filter set" clearly identifies both the operation and the resource. The description also connects the returned data.jobs[].id to downstream job endpoints, distinguishing it from detail tools and other search tools in the sibling list.

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 gives actionable usage guidance: which filters work, which are not yet usable, and how the returned ids feed /jobs/details-v2 and related endpoints. It does not explicitly name alternative search tools for when not to use this one, but the downstream-consumer note strongly implies its role.

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.