Skip to main content
Glama

独行录 / opcmenu

批量处置报名者

bulk_review_signup_submissions
Idempotent

【需要登录】【何时用】用户说「把做 AI 的都入围、其余候补」这类整批操作时调它。这是 agent 相对 web /pro 最大的效率差:那边要勾 200 个复选框。

【组合链】list_signup_submissions(slug, q='Agent') 拿 ids → 本工具 preview=true 不落库,返回「将被改的 id + 昵称 + 当前状态」念给用户 → 用户确认后 preview=false 真正执行 → 剩下的人换个 reviewStatus 再来一次。

【口径/坑】① 执行前必须把名单念给用户确认——处置结果报名者在「我的报名」里立刻看得见,改错了收不回来。preview=true 就是为这一步设计的(它是 App 那个确认弹层在 agent 端的形态,不是可以省掉的一步)。② 返回体自带 diff:requested / updated / ignoredIds——不属于这场活动的 id 会被服务层静默忽略,传 200 个只改了 197 个时,是哪 3 个掉了这里如实告诉你。③ reviewNote 不接受空串(zod 直接封死):批量清空 200 条留言且无处恢复,风险太高;不传就是不动。④ 一次最多 200 个 id。⑤ 只动报名结果,不碰投递状态。

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idsYes报名单 id 列表,最多 200
slugYes活动 slug
previewNotrue=只预演不落库,返回将被改的人给用户过目。缺省 false
reviewNoteNo统一写给这批人看的一句话。**不接受空串**(批量清空留言无处恢复);不传=不动各自原有的留言
reviewStatusYes统一改成的报名结果。取值:PENDING(待初审) | REVIEWING(初审中) | SHORTLISTED(已入围) | WAITLIST(候补) | REJECTED(未通过) | WITHDRAWN(已撤回)

Schema Changelog

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

  1. First observed

TDQS

A4.6/5.0
Behavior5/5

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

Adds far beyond the annotations: login requirement, preview mode that does not persist, mandatory user confirmation before execution, silent ignoring of invalid IDs with diff fields, empty-string rejection on reviewNote, 200-id cap, and the guarantee that only application results are changed and delivery status is untouched. None of this contradicts the 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?

Dense but structured with clear sections (需要登录, 何时用, 组合链, 口径/坑). It is front-loaded with the trigger condition and the single most important fact (login). Every sentence carries operational value, including the note about why preview exists and the diff return.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Covers preconditions, workflow, return diff fields, limits, and what the tool does not touch. No output schema exists, so the description does well to explain requested/updated/ignoredIds. However, it doesn't describe the full response shape or error behavior, which would be useful for a complex mutation tool.

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 coverage is 100%, so the schema already documents all parameters. The description adds meaningful behavior for preview (no write, returns candidate list for confirmation), reviewNote (empty string rejected, omitted = no change), and reinforces the 200-id limit. This extra context is valuable but the schema does the baseline heavy lifting.

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?

States a specific verb (bulk update reviewStatus), resource (signup submissions), and scope (batch operations like 'make all AI ones shortlisted, rest waiting'). It clearly differentiates from the 200-checkbox web UI and implies the batch nature. No ambiguity about what the tool does.

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?

Explicitly says when to call it: when the user voices a batch operation such as '把做 AI 的都入围、其余候补'. It also provides a composition chain with list_signup_submissions and preview=true/false. It doesn't explicitly name the single-submission alternative (review_signup_submission) or say 'use that for one-off changes', so exactly when-not is implied rather than stated.

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