Skip to main content
Glama

独行录 / opcmenu

编辑我的活动

update_activity
Idempotent

【需要登录】改我办的活动的本体信息(先过后审:立即生效;slug/type 不可改)。先用 list_my_activities 拿 activityId。

【分工——别调错】活动本体(标题/介绍/时间/地点/长图/封面)走这里;报名表单与报名方式走 update_organizer_signup_config。

【红线:截止时间只能往后不能往前】把 registrationDeadline 改早,会把正在填的人当场挡在门外,且已开始填的草稿全部作废。用户要「提前截止」时先跟他确认清楚这一点。

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
cityNo城市,报名 feed 的筛选维度
endAtNoISO 8601
titleNo
meetUrlNo
startAtNoISO 8601
capacityNo
coverUrlNo
locationNo
productIdNo
activityIdYes活动 id
posterUrlsNo活动长图(竖图详情页),最多 9 张,按顺序展示。只收已有 URL——要传本地图先用 upload_image_from_url 镜像
descriptionNo
organizerNameNo主办方署名(报名页「主办方」那一行)。联合主办/承办单位写全;传 null 或空串 = 那一行不再显示
registrationDeadlineNoISO 8601。只能往后改,往前改等于提前封口

Schema Changelog

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

  1. First observed

TDQS

A4.8/5.0
Behavior5/5

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

Annotations already declare this a mutating, open-world, idempotent write, so the description adds beyond them: login requirement, policy timing (先过后审:立即生效), immutability of slug/type, and the critical conditional side effect that moving registrationDeadline earlier blocks in-progress submitters and voids their drafts. Disclosing a destructive parameter-side-effect inside a tool annotated destructiveHint=false is exactly the kind of contextual value that earns credit, not a 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?

Three labeled sections (需要登录 / 分工 / 红线) front-load prerequisites, position the sibling-routing warning immediately after the core function, and isolate the danger warning last. Every sentence carries operational weight and the bold markers make boundaries scannable.

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?

For a 14-parameter mutation with no output schema, the description covers the invocation essentials: auth, how to obtain activityId, what is and is not editable, which sibling owns the other field family, and the one parameter with harmful side effects. Minor gaps: return/error behavior is unstated, and the organizer-ownership precondition is implied by '我办的活动的' rather than stated.

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?

With 50% schema coverage, the description partially compensates by mapping field families (标题/介绍/时间/地点/长图/封面) to the tool's 本体信息 scope — telling the agent which parameters belong here vs. the sibling — and by expanding registrationDeadline's meaning beyond the schema's one-liner with concrete consequences (blocks people, voids drafts). Gaps remain: meetUrl, capacity, and productId have no semantic explanation in either the schema or the description, and startAt/endAt only receive a '时间' family grouping.

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 opening sentence states a specific verb+resource: '改我办的活动的本体信息' (edit the core info of my organized activities), then enumerates the covered fields (标题/介绍/时间/地点/长图/封面) and the exclusions (slug/type 不可改). This sharply scopes the generic title and distinguishes the tool from the closest sibling without opening either schema.

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?

Explicit when/when-not routing: '活动本体…走这里;报名表单与报名方式走 update_organizer_signup_config' names the alternative and the condition selecting it, under the header 【分工——别调错】. It also states the prerequisite workflow '先用 list_my_activities 拿 activityId'. Nothing is left to inference.

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