Skip to main content
Glama
songzhifei512

multi-agent-bridge

memory_promote

Promote a project-specific memory to a platform or global scope so future searches find it across projects. Preview the change with dry-run mode, then apply it by setting dry_run=false.

Instructions

Manually promote a memory to a wider scope (usage-based promotion, manual edition). Changes one memory's category from project:X to platform:Y or global, so future searches find it under the wider scope. Use when an Agent/user judges a project-specific memory is actually cross-project common knowledge. Find the id via memory_list first. Default dry_run=true (preview only, no change) — pass dry_run=false to actually update. to_scope: 'global' | 'platform:' | 'platform:auto' (guess platform from content, fall back to global) | 'project:'. Returns old/new category + whether promoted.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYesrowid of the memory to promote (find via memory_list).
dry_runNoIf true (default), only preview the new category without writing. Pass false to actually update.
to_scopeYesTarget scope: 'global', 'platform:<name>' (e.g. 'platform:spreadtrum'), 'platform:auto' (guess from content), or 'project:<name>'.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

A4.5/5.0
Behavior4/5

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

With no annotations, the description carries the burden and it does well: it discloses dry_run=true default as preview-only, requires dry_run=false to write, states the category-change side effect, and describes the return value. It does not cover failure modes or permission expectations, which is a minor gap for a mutation tool.

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?

All information is packed into four purposeful sentences, front-loaded with the verb and effect. The dry-run warning and to_scope enumeration are concise; no filler or repeated schema boilerplate.

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 three-parameter mutation tool with no annotations and no output schema, the description covers the full call sequence: how to get the id, what to_scope values are valid, the safe default behavior, the actual update switch, and the return payload. Nothing needed to call 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 coverage is 100%, so the baseline is 3, but the description adds non-obvious behavior: 'platform:auto' falls back to global when content guessing fails, and dry_run semantics are tied to the preview/update workflow. It also ties id to memory_list. This is useful meaning beyond the bare schema.

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 ('promote a memory') and the precise effect ('Changes one memory's category from project:X to platform:Y or global'), which distinguishes it from memory_add/delete/search/list siblings. The 'so future searches find it under the wider scope' phrase reinforces the purpose.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Gives an explicit trigger ('Use when an Agent/user judges a project-specific memory is actually cross-project common knowledge') and a prerequisite ('Find the id via memory_list first'). It lacks an explicit when-not or a named alternative among siblings, so it stops short of a 5.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.