Skip to main content
Glama

独行录 / opcmenu

需求信息流

list_needs_feed
Read-onlyIdempotent

【何时用】用户想看「大家都在找什么」「有什么我能帮上/接得住的需求」时——这是需求互换的主入口。

【结构】一人一卡按作者聚合:每张卡是一位主理人(主打 author.canOffer「能提供什么」+ 代表产品),主需求平铺在卡上,authorNeeds 列出该作者在架需求(最多 6 条,主卡需求在首位)。登录后按「TA 的需求 ↔ 我的价值」轻个性化排序并附 matchScore/matchReason;匿名同管线纯先验排序。

【组合链】看中某人 → contact_need 该需求拿 conversationId → send_message 直接开聊。定向找用 search_needs / search_people。想让匹配更准就先补自己的 canOffer(update_my_profile)——排序就是拿它跟对方需求比的。

【口径】接洽不限人数,没有「名额」这回事,也没有报酬/感谢费——看到谁在找就直接聊。

【分页】cursor 原样回传延续同一副牌;不传 = 重新洗牌。

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
typeNo按需求类型过滤:EXPERIENCE(寻找产品/作品) | QA(答疑求助) | RESOURCE(介绍资源) | COLLAB(寻求合作) | FINANCING(融资需求) | CHAT(找人聊聊找灵感) | GIG(兼职招募) | OTHER(其它);不传则全部
limitNo返回条数,默认 20
cursorNo分页游标 nextCursor,原样回传

Schema Changelog

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

  1. First observed

TDQS

A4.9/5.0
Behavior5/5

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

Annotations already establish readOnly, idempotent, and non-destructive behavior. The description adds substantial behavioral context beyond that: logged-in vs anonymous sorting differences, matchScore/matchReason inclusion, card aggregation by author, max 6 authorNeeds, pagination semantics ('cursor 原样回传延续同一副牌;不传 = 重新洗牌'), and the business rule that contact is unlimited with no fee/reward. No contradiction with annotations.

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 well-organized with labeled sections (【何时用】【结构】【组合链】【口径】【分页】) that front-load the most important usage decision. Every section earns its place by providing operationally relevant guidance rather than filler. Despite its length, it remains scannable and purposeful.

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 there is no output schema, the description compensates by explaining the card layout, authorNeeds limit, ordering behavior, match fields, pagination, and related workflow. It also covers the business context (no quota, no reward, direct chat) that an agent needs to set expectations. This is complete for a list-feed tool with only three optional parameters.

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?

Schema description coverage is 100%, so the schema already explains type, limit, and cursor. The description adds valuable behavior beyond the schema, especially for cursor: passing it back continues the same paginated set, while omitting it reshuffles the deck. This extra pagination semantics justifies a score above the baseline 3, though most parameter meaning still comes from the schema.

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 an explicit when-to-use statement: it is the main entry for the demand-exchange feed, showing '大家都在找什么' and needs an agent can help with. It also distinguishes itself from targeted tools by naming search_needs / search_people as the directed-search alternative. The card structure (one person per card, author.canOffer + authorNeeds) makes the resource and shape 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 【何时用】 section states exactly when this tool is appropriate, while the 【组合链】 section gives the follow-up workflow: contact_need → send_message. It explicitly routes targeted discovery to search_needs / search_people and recommends update_my_profile to improve ranking. Exclusions and alternatives are explicit, not merely 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

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