Skip to main content
Glama

独行录 / opcmenu

查发起活动资格

check_activity_eligibility
Read-onlyIdempotent

【需要登录】检查当前用户是否满足发起活动的前置条件。两条轨,满足任一即可:轨 A 主理人 —— 资料完善(bio + intro≥10 字)且至少 1 个已发布产品;轨 B 主办方 —— 入驻已完成 + 主办方资料四项齐全(主办方名称 / 联系人姓名 / 联系电话 / 一句话介绍)。ok=true 时 via 说明走的是哪条(owner=轨 A,organizer=轨 B)。

【ok=false 的 reason】profile_incomplete = 入驻还没走完(入驻本身就会强制填 bio/intro,所以这条等于「先去完成入驻」);organizer_profile_required = 入驻完了但缺主办方资料四项——这是实际最常见的一条,只差一个已发布产品的轨 A 用户也会落到这里(对正要发活动的人来说,填四项资料比再发布一个产品近);no_published_product = 老枚举,现口径下基本不会返回。

【怎么补】想走轨 A 就用 create_product 发布产品。缺主办方资料这里没有对应的写工具,别拿别的工具去试——那四项要走 POST /v1/me/organizer-profile,联系电话必须过短信验证码,agent 端做不了;请引导用户去 App 或网页版填「主办方资料」(四项一次填完,不拆步、不跳过)。

发起活动(create_organizer_activity)前先用它,免得白填。

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

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

  1. First observed

TDQS

A4.9/5.0
Behavior5/5

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

Annotations already mark this as read-only, idempotent, and non-destructive, and the description adds meaningful behavior beyond that: login is required, the response has ok/via/reason semantics, and it explains each failure reason and its real-world meaning. Since there is no output schema, this behavioral documentation is essential and well done.

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 with clear headers and bolded key terms. Every section—eligibility rails, failure reasons, remediation paths, and when to call—carries operational value, and the primary purpose is front-loaded.

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?

Given the complexity (two eligibility paths, multiple failure reasons, no output schema), the description fully equips an agent: it documents the response contract, explains the most common failure case, names the only remediation tool, and explicitly warns that agent-side cannot complete the organizer profile flow. Nothing critical is missing.

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?

The tool has zero parameters and the schema coverage is 100%, so there is nothing for the description to add about parameters. Per the baseline for parameter-less tools, a 4 is appropriate because the description instead focuses on response semantics and usage context.

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 a precise verb+resource statement: checks whether the current user meets the prerequisites for initiating an activity. It goes further by naming the two eligibility rails (owner vs organizer) and the via field semantics, which makes it easy to distinguish from any sibling tool.

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 explicitly instructs to call this before create_organizer_activity ('发起活动(create_organizer_activity)前先用它,免得白填'). It also says when not to attempt remediation: missing organizer data cannot be fixed with any available write tool, and it steers the agent away from trying other tools.

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