Skip to main content
Glama

独行录 / opcmenu

更新我的报名资料(跨表单复用层)

update_my_signup_profile
Idempotent

【需要登录】【何时用】用户随口给了一条以后每场报名都要用的信息(「我微信是 xxx」「团队 3 个人」「所在城市杭州」),先落进跨表单复用的报名资料覆盖层,下次报任何一场都会自动带出来。

【组合链】get_signup_gaps 拿到 missingCombined(跨场去重后的待答清单)→ 问用户 → 本工具一次性写进覆盖层 → 之后每场 submit_signup 都不用再问。key 必须用 get_signup_activity / get_signup_gaps 返回的那个 key(跨活动稳定,别自造)。

【口径/坑】① 这里只写报名场景的覆盖层,绝不改主页/公司/产品本体——改那些走 update_my_profile。② 只收文本;文件类答案(BP 等)只能走 App 的上传通道,这里写进去会把已传文件的记录顶成一串文本。③ 敏感题(证件号)刻意不做跨表单记忆,别往这儿写。④ 写入的值不会回显在返回体里(只回 key),这是刻意的隐私收口。

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
valuesYes

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?

The description goes well beyond the annotations by disclosing login requirements, the fact that only the signup overlay is written, that file-type answers must not be written here because doing so would overwrite uploaded file records with text, that sensitive fields are intentionally not memorized, and that written values are not echoed back for privacy. No contradiction with the annotations is present; these are valuable behavioral details.

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 densely structured with clear sections (何时用, 组合链, 口径/坑), front-loading the most important usage context and then covering edge cases. Every sentence earns its place; there is no filler or repetition.

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?

For a write tool with no output schema, the description is complete: it tells the agent when to use it, how it fits into the signup flow, what limitations apply, what not to write, and what the response will not contain (values are not echoed). The agent has everything needed to select and invoke it 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?

The description adds essential parameter guidance beyond the schema: the key must be the stable cross-activity key returned by get_signup_activity/get_signup_gaps and must not be self-invented. It also clarifies that only text values are accepted, which reinforces the value parameter's semantics and prevents misuse even though the nested schema already names key and value.

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 the tool's job: writing user-provided reusable signup information into a cross-form coverage layer so future signups auto-fill it. It uses a specific verb ('更新'/'写入') and resource ('报名资料覆盖层'), and explicitly differentiates itself from update_my_profile, which modifies the main profile rather than the signup overlay.

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 provides explicit when-to-use guidance with realistic examples ('我微信是 xxx', '团队 3 个人', '所在城市杭州'), and says this tool is for casually given reusable info. It also gives a clear combination chain (get_signup_gaps → ask user → write here → submit_signup won't ask again) and an explicit exclusion: profile/company/product changes must go through update_my_profile.

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