Skip to main content
Glama

独行录 / opcmenu

列可报名的机会

list_signup_feed
Read-onlyIdempotent

【何时用】用户问「最近有什么能报名的 / 这周截止的有哪些 / 有没有黑客松」时调它。这是站内唯一能真报名的机会列表:每一场都挂着可用的报名表单。

【组合链】拿到 slug 后:① get_signup_activity(slug) 一次拿全「详情 + 我的报名状态 + 还缺哪几题」;② 缺项补齐后 submit_signup(slug) 直接报;③ 想一次盘几场就 get_signup_gaps(slugs=[…]) 拿跨场合并的待答清单,问一轮就够。

【口径/坑】① 本工具返回的每一条都当场能在站内报(判据是这场挂了报名配置,与 Activity.type 无关——平台自办/承办的赛事也是 type=COMPETITION,照样在这条 feed 里)。list_activities 是更宽的活动资讯面,其中导入的外部赛事只能去主办方官网报,两者别混。② feed 已按「置顶 → 截止近的优先(无截止排最后)」排好序,「这周截止的」直接按顺序截即可,别自己重排。③ 首屏返回的 kinds 是服务端算的真实类目计数,空类目根本不出现——照它渲染选项,别拿 SIGNUP_KINDS 全集当菜单。④ 登录时每条带 submitted=true/false,已报的别再问用户要不要报。⑤ startAtKnown=false 表示这场的开始时间是导入时兜底顶上的假值,别对用户念那个日期

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
kindNo报名类目筛选,可选。取值:HACKATHON(黑客松) | COMPETITION(创业赛事) | INCUBATOR(孵化营) | FUNDING(融资申请) | COMMUNITY(社区入驻) | EVENT(活动报名) | OTHER(其他)
limitNo每页条数,缺省 20,上限 50
cursorNo翻页游标,取上一页的 nextCursor
includeExpiredNo是否含已截止的场次,缺省 false(只给还能报的)

Schema Changelog

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

  1. First observed

TDQS

A4.7/5.0
Behavior5/5

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

Annotations already mark this as readOnly, idempotent, and non-destructive, but the description adds valuable behavioral context beyond that: every returned item is actually registrable, ordering is already server-set with a defined priority and should not be re-sorted, kinds are real server-computed counts, submitted=true/false indicates prior signup status, and startAtKnown=false means the start time is a placeholder that should not be read to users. 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 long but tightly organized into three labeled sections: when to use, follow-up tool chain, and semantics/pitfalls. Every sentence carries operational value, and the critical constraints are front-loaded and highlighted. No filler or redundancy.

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 return semantics, and it does so well: it covers item meaning (signup-able), ordering, kinds counts, submitted flag, startAtKnown placeholder behavior, and how to chain follow-up tools. It also handles the main sibling ambiguity with list_activities. This is complete for an agent to invoke and use the result 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 baseline is 3 because parameter meaning is already fully documented. The description adds some related behavioral context (e.g., first-screen kinds are real counts, don't reorder the feed), but it does not meaningfully extend the meanings of kind, limit, cursor, or includeExpired beyond what the schema already states.

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 explicitly states the tool lists signup-able opportunities and gives concrete triggers ('最近有什么能报名的 / 这周截止的有哪些 / 有没有黑客松'). It also differentiates itself from list_activities by calling itself the site's only feed for opportunities that can actually be registered for on-site.

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?

It provides an explicit when-to-use section, contrasts itself against list_activities (broader info feed; external events must be registered via organizer's site), and gives a follow-up tool chain: get_signup_activity(slug), submit_signup(slug), and get_signup_gaps(slugs=[…]). This gives the agent clear routing and next-step guidance.

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