Skip to main content
Glama

独行录 / opcmenu

我报过的名 + 报名结果

list_my_signups
Read-onlyIdempotent

【需要登录】【何时用】用户问「我报过哪些 / 那个赛事结果出来没 / 主办方回我了吗」时调它。一次给全:我报过的所有场次(最多 50 条,新的在前)+ 每一场的投递状态与主办方处置结果(reviewStatus:PENDING(待初审) | REVIEWING(初审中) | SHORTLISTED(已入围) | WAITLIST(候补) | REJECTED(未通过) | WITHDRAWN(已撤回))+ 主办方留言 reviewNote。App 上这是「我的报名」那一屏。

【组合链】看到某场 reviewStatus=SHORTLISTED 或 reviewNote 里要求补材料 → get_signup_activity(slug) 看还缺哪几题 → submit_signup(slug) 补交(重新提交会覆盖上一版)。想一次盘所有在报的场次还缺什么 → get_signup_gaps。

【口径/坑】① 默认不返回答案全文(50 条里全是本人的手机号/微信/证件字段,没必要整份灌进上下文),只给答了哪几题的 key 列表;确实要看内容再传 includeAnswers=true。② submission.status(SUBMITTED/DELIVERED/DELIVERY_FAILED…)是「有没有投递到源表单」,reviewStatus 才是「主办方录不录你」——两者严格分离,别混着念。③ DELIVERY_FAILED 不是「你被拒了」,是代填投递没成功,让用户去报名页手动补交。④ PENDING 只是主办方还没处置,不代表落选。

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
includeAnswersNo是否带上每条报名单的答案全文,缺省 false(默认只给题目 key 列表)

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 mark this as read-only and idempotent, but the description adds major non-obvious behavior: default omission of full answers, 50-item newest-first cap, strict separation of submission.status from reviewStatus, and clarifications that DELIVERY_FAILED is not rejection and PENDING is not failure. This substantially exceeds what annotations alone provide, and there is 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 dense but well organized into 【需要登录】【何时用】【组合链】【口径/坑】 sections. Each section has a distinct purpose, the most important usage signal is front-loaded, and every sentence earns its place by covering a real selection or invocation pitfall.

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 fully carries the burden of explaining return shape: max 50, newest first, submission.status enum, reviewStatus enum, reviewNote, and answer-key-only behavior. It also covers login requirements, common misinterpretations, and follow-up tool routing, so nothing needed to invoke it correctly is missing.

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?

Although the schema already describes includeAnswers with 100% coverage, the description adds meaningful rationale: defaulting to false avoids flooding context with personal data, and includeAnswers=true is only needed when full answer text must be inspected. This helps the agent decide when to override the default, not just what the parameter means.

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 explicit user intents (「我报过哪些 / 那个赛事结果出来没 / 主办方回我了吗」) and states the resource: all the user's signed-up sessions with delivery status, reviewStatus, and reviewNote. It also differentiates the tool from nearby siblings by positioning it as the「我的报名」screen and naming get_signup_gaps for a different cross-signup need.

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 gives explicit when-to-use triggers: call when the user asks about past signups or organizer results. It also provides chaining rules — seeing SHORTLISTED or a reviewNote requesting materials leads to get_signup_activity then submit_signup, while a full gap sweep routes to get_signup_gaps — so the agent knows exactly when this tool is and is not the right choice.

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