Skip to main content
Glama

Initialize and Start Tuanjie

tuanjie_start

Opens the project in Tuanjie, ensures Codely Bridge is installed, and verifies the editor connection for immediate use.

Instructions

Ensures the official Codely Bridge package is present in the configured project, opens that project with tuanjie.exe, waits for Bridge readiness, and verifies the connected project. If the editor is already connected, it is reused. This can update Packages/manifest.json when the Bridge package is missing.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
install_bridgeNo
wait_timeout_secondsNo
bridge_package_versionNo

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.2.0

TDQS

A3.6/5.0
Behavior4/5

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

Annotations are all-neutral false flags (no readOnly/destructive/idempotent hints), so the description carries the burden. It discloses a real side effect ('This can update Packages/manifest.json when the Bridge package is missing'), the conditional reuse of an already-connected editor, and the blocking wait-for-readiness sequence. Minor gap: it never describes failure/timeout behavior, but the disclosed mutation side effect is well handled. 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.

Conciseness3/5

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

The content is reasonably compact and key actions are front-loaded, but the whole description is one long run-on sentence chaining four clauses with ellipses. It would be more consumable broken into clear steps; it is denser than needed but has no wasted words.

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

Completeness3/5

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

For a complex stateful tool with no output schema, neutral annotations, and 0% parameter coverage, the description covers the core flow but omits return-value semantics, success criteria, and what happens on timeout or package-install failure. These are meaningful gaps for an agent deciding whether a call succeeded.

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 must compensate, but it only weakly maps to parameters: wait_timeout_seconds is implied by 'waits for Bridge readiness' and install_bridge by 'Ensures... package is present'. bridge_package_version is never mentioned, and the meaning of install_bridge=false is left ambiguous. With zero schema help, the description fails to fully explain the parameters.

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 states a specific, multi-step verb chain ('Ensures the Bridge package is present... opens that project with tuanjie.exe, waits for Bridge readiness, and verifies the connected project') tied to a clear resource. It reads as a start/initialize operation and is clearly distinguishable from its close sibling tuanjie_bridge_status, which is the status-check counterpart.

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 description conveys the workflow (ensure package, open, wait, verify, reuse existing connection) which implies this is the entry-point tool before other operations, but it never explicitly states when to use this tool versus tuanjie_bridge_status or the other unity_* siblings, nor gives any 'don't use when' guidance. Usage context is implicit, not stated.

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