Skip to main content
Glama

独行录 / opcmenu

找人才(按职业找人,不是找产品)

list_talent
Read-onlyIdempotent

【何时用】用户要的是某一类人本人而不是某个产品/服务时用:「帮我找个能写代码的」「有没有做出海的人」「找几个律师/财税顾问聊聊」。和 list_service_products 的区别:那边是「他卖什么」(产品目录),这边是「他本人是干什么的」(人的目录);和 search_people 的区别:那边是语义搜,这边是结构化职业筛选,适合按类目扫一遍。

【组合链】items[].user.id → get_creator 看完整主页 → start_conversation 开聊(开聊走每日额度,撞 429 会直接返回「怎么办」的出口,别重试);user.id → follow_creator 先关注不打扰;items[].company.slug → get_company。人卡唯一动作就是进个人主页,没有别的落点。

【口径/坑】 · 职业(items[].professions)是机判闭集:由资料/名片/自述跑分类器写入,不是本人勾选;一人最多两个主职业。没被判出职业的人不进这个目录,想找他走 search_people。 · chip 是职业的合并桶(比如律师/财税/HR 都并在「咨询·顾问」里),卡片上的职业胶囊是细粒度标签,两者不是一回事。 · chip 全集以 GET /v1/talent/chips(首页下发)为准:服务端按真实人数 ≥ 阈值才下发,这里的枚举只是合法值集合,不代表此刻每个都有人。传了没下发的 chip 会拿到很少甚至 0 条,不是报错。不传 chip 或传 all = 全部;传不认识的 key 按全部处理(不 400)。 · 只回真人(在册、已入驻、非测试号、非运营机构号);返回里没有手机/邮箱/外链,要联系只能开聊。 · 规模小(百级),分页是 offset(nextCursor 就是下一次的 offset)。

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
chipNo职业 chip,可选;不传或 all=全部。合法值:all / dev / creative / growth / consult / product / training / hardware / sales / global / health(dev=开发·技术,creative=内容·创意,growth=运营·增长,consult=咨询·顾问,product=产品,training=培训·教育,hardware=硬件·供应链,sales=销售·BD,global=出海·跨境,health=健康·心理)。此刻实际可用的 chip 以 GET /v1/talent/chips 为准
limitNo返回条数,默认 20,最多 50
offsetNo偏移量,默认 0;用上一次返回的 nextCursor

Schema Changelog

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

  1. First observed

TDQS

A5/5.0
Behavior5/5

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

Annotations already declare readOnlyHint, openWorldHint, idempotentHint, and destructiveHint false, and the description goes well beyond them: it reveals that professions are machine-classified, that chip availability depends on a server-side threshold, that unknown chips default to 'all' without error, that results are real users only, that no contact details are returned, and that nextCursor is just the next offset. This is rich behavioral disclosure with no contradiction.

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 long but tightly organized into clearly labeled sections — when to use, sibling differences, chaining, and pitfalls. Every sentence carries either a usage rule, a behavioral caveat, or a downstream routing hint. No filler or repetition; the structure makes dense content scannable.

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?

With no output schema, the description carries the burden of explaining the response shape, and it does: it references items[].user.id, items[].company.slug, items[].professions, and nextCursor. It also explains edge cases like sparse chips returning zero results, pagination limits, and the absence of contact info. An agent has enough context to call and interpret this tool correctly.

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%, so the baseline is 3, but the description adds substantial semantic value beyond the schema: chip is a merged bucket vs fine-grained profession labels, the actual chip set is determined by GET /v1/talent/chips, unrecognized chip keys are treated as 'all', and offset pagination is explained with nextCursor semantics. The description fully compensates and more.

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 clearly states this tool lists people by profession, not products/services, and uses concrete user examples like '帮我找个能写代码的'. It explicitly distinguishes itself from list_service_products and search_people, making the tool's scope unmistakable.

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 gives explicit when-to-use guidance with real-world prompts, contrasts against list_service_products ('he sells what' vs 'he is what'), and against search_people (semantic search vs structured category browsing). It also tells the agent to use search_people when a person has no detected profession, which is a valuable exclusion rule.

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

A4.1/5.0
Disambiguation4/5

Each tool has a clearly documented purpose, often with explicit 'when to use' guidance and cross-references, making the vast majority easy to tell apart. A few clusters (get_my_brief, get_my_positioning, get_my_work, get_my_dispatch) and data-overlapping get_my_card vs get_my_profile require careful reading, but descriptions are detailed enough to prevent serious misselection.

Naming Consistency4/5

The overwhelming majority follow snake_case verb_noun conventions (create_product, update_need, list_my_signups). Minor deviations include noun-only feed names (personalized_feed, random_feed), inconsistency between 'prefs' and 'preferences' in notification tools, and a mix of update_* and set_* for mutations, but the pattern remains predictable overall.

Tool Count1/5

137 tools is an extreme mismatch for any MCP server, far exceeding the 50+ threshold for a score of 1. Even with a broad multi-domain platform, this volume makes tool selection and navigation impractical and heavily burdens the agent's context window.

Completeness5/5

The surface covers full lifecycles for needs, products, activities/signups, conversations, collaboration goals/tasks, dispatch, profile/onboarding, and supporting resources like companies, parks, policies, and ratings. Deliberate omissions (no user-post creation, no organizer profile editing via agent) are explicitly documented, so core workflows have no obvious dead ends.

Resources