Skip to main content
Glama
sevenboom77

ResearchTwin MCP Server

by sevenboom77

Sync project knowledge to Bailian

sync_project_knowledge_to_bailian

Upload prepared project knowledge to Bailian after user confirmation, making approved research accessible to the agent.

Instructions

Synchronize prepared project knowledge after explicit user confirmation.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
knowledge_idYes
confirm_writeYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
statusYes
knowledgeYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

B3/5.0
Behavior2/5

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

With no annotations, the description carries the full burden of behavior disclosure. It indicates a write/sync operation and a confirmation requirement, but it does not disclose what synchronization actually changes, whether it overwrites existing Bailian data, whether it is reversible, or what happens if confirm_write is false. This is a significant gap for a potentially mutating 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?

The description is a single sentence with no filler. It front-loads the action, names the resource, and includes the important confirmation condition. Every word earns its place.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Despite an output schema, the tool lacks annotation coverage and schema-level parameter descriptions. The description is too thin to support correct invocation: it omits the required confirmation semantics, the target behavior in Bailian, and the relationship to prepare_project_knowledge. It is minimally viable but not contextually complete.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters2/5

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

Schema description coverage is 0%, so the description should compensate, but it only loosely hints at knowledge_id through 'prepared project knowledge' and at confirm_write through 'explicit user confirmation.' It never clearly defines the semantics of either parameter or states that confirm_write must be true for execution to proceed.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description states a specific verb and resource: 'synchronize prepared project knowledge' to Bailian, and the phrase 'prepared' distinguishes it from preparation-oriented siblings like prepare_project_knowledge. It is clear enough for an agent to identify the tool's core function, though it does not explicitly name the sibling it is not.

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

Usage Guidelines3/5

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

The phrase 'after explicit user confirmation' implies a precondition, but the description gives no explicit when-to-use or when-not-to-use guidance and does not mention alternating tools. It leaves the relationship to prepare_project_knowledge and list_project_knowledge to inference rather than stating it.

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