Skip to main content
Glama

独行录 / opcmenu

更新我的资料

update_my_profile
Idempotent

【需要登录】更新当前用户资料,立即生效(资料修改不走审核)。所有字段可选,只传想改的;links 传则整组替换(要增删单条用 add_profile_link / remove_profile_link 更方便)。建议先 get_my_profile 读现状再改。

【canOffer 是全站撮合的轴心】search_people 搜的就是它、需求信息流的 matchScore 按它算、get_need_recommendations 拿它给作者推人。留空 = 从撮合池里掉出去,谁也搜不到你。帮用户入驻/整理资料时一定要顺手把它写上,而且要写具体(「能给早期项目做 0→1 的小程序开发,两周内出可用版本」远胜「技术合作」)。

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
bioNo一句话简介
introNo完整介绍
linksNo整组替换全部链接
canOfferNo我能提供什么(供给侧)。全站撮合的轴心字段:search_people 搜它、需求流的匹配分算它。写具体的能力/资源/交付物,别写形容词
locationNo
nicknameNo
avatarUrlNo

Schema Changelog

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

  1. First observed

TDQS

A4.7/5.0
Behavior5/5

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

Annotations only carry generic hints (readOnlyHint=false, idempotentHint=true, destructiveHint=false), so the description carries the behavioral burden and delivers: requires login, takes effect immediately with no review process, links is a wholesale group replacement rather than a merge, and an empty canOffer removes the user from the matching pool. No contradiction with annotations.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Two well-structured paragraphs: the first front-loads operational facts (login, immediate effect, partial update, links replacement, alternatives, read-first workflow); the second delivers the high-stakes canOffer policy with a vivid example that earns its length. Minor redundancy exists where the matching-axis explanation repeats the schema's canOffer description.

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?

Complete for an all-optional profile-update tool: prerequisites, effect timing, replacement semantics, sibling routing, and the one field whose emptiness has product-wide consequences are all covered. There is no output schema, but return-value shape is low-risk for a simple update operation and the operationally critical knowledge is present.

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 57%; the description adds the crucial partial-update semantic ('所有字段可选,只传想改的') and the replacement semantics for links. It enriches canOffer with a concrete before/after example and the 'don't leave empty' warning, though some of the matching-axis phrasing duplicates the schema's canOffer text. The three undocumented params (location, nickname, avatarUrl) are self-evident from their names.

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 and resource ('更新当前用户资料' — update the current user's profile) and adds the key scoping detail that it is the current user's own data, effective immediately. It names sibling tools handling adjacent operations (add_profile_link, remove_profile_link, get_my_profile), so an agent can separate it from the large sibling list without opening other schemas.

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?

Gives explicit when-not/alternative guidance: for single-link add/remove, use add_profile_link or remove_profile_link instead of passing the whole links array. Recommends a concrete read-before-write workflow (get_my_profile first) and instructs agents to always populate canOffer when onboarding/curating a user's profile, with the consequence of leaving it empty.

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