Skip to main content
Glama

独行录 / opcmenu

汇报情况并安排下一步

report_dispatch

【需要登录】把用户确认的现状/目标交给独行录排安排:首次建路径,后续追加汇报并重排未接受部分。会调用平台 LLM、写入记录,可能后台排人和发通知,需灰度已开启。按用户限流,提示汇报过于频繁时不要立即重试。结果不明或超时后先查询现值,不要自动重发;服务没有持久请求去重键。 用 get_my_dispatch 的 reports 核对是否已收到,FILLING 时等候后查询。

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
textYes

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?

Beyond annotations (readOnlyHint=false, idempotentHint=false), the description discloses that the tool calls the platform LLM, writes records, may schedule people in the background, sends notifications, requires the gray-release flag, is rate-limited per user, and—critically—has no persistent request deduplication key, so retries can duplicate. This matches and enriches the annotations rather than contradicting them.

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 every sentence earns its place: core function first, then side effects and prerequisites, then failure handling and verification. It is front-loaded with the primary purpose and front-loads each caveat before its consequence. No filler or restatement of the title or schema.

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 still covers the full post-call flow: how to verify receipt via get_my_dispatch, what to do in the FILLING state, how to handle rate-limit, unclear-result, and timeout cases, plus prerequisites (login, gray-release flag) and side effects. Given the tool's complexity and non-idempotency, nothing an agent needs 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.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 0%, so the description must compensate, and it does meaningfully: it tells the agent that the single text parameter should contain the user-confirmed current status/goal on first call and the appended report on later calls. It stops short of specifying the expected content structure or format, which is why it isn't a 5, but for a bare free-text parameter this is solid compensation.

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 names a specific verb and resource—handing user-confirmed status/goals to the dispatch scheduler (独行录排) for arrangement—and explains the two call modes: first call builds a path, later calls append reports and reschedule unaccepted portions. This clearly separates it from dispatch siblings like accept_dispatch_arrangement, decline_dispatch_arrangement, set_dispatch_outcome, and skip_dispatch_step, all of which are distinct actions in the same workflow.

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 gives explicit when-to-use context (after the user confirms status/goals, with distinct first-vs-subsequent behavior) and explicit when-not-to: do not retry immediately after a rate-limit warning, and do not auto-resend on unclear results or timeout. It names the verification alternative (get_my_dispatch's reports) and specifies the FILLING state means wait-then-query, leaving nothing 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