Skip to main content
Glama

bridge_ensure_alive

Opens the TouchDesigner show if needed and waits for the bridge heartbeat, returning alive status to confirm connection.

Instructions

Open the show in TD (if needed) and wait for the bridge heartbeat. Returns alive status.

timeout (float | None): Max seconds to wait (default 45).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
timeoutNo

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.2.0

TDQS

A4.1/5.0
Behavior4/5

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

The side effect of opening the show is disclosed, as is the blocking wait and timeout default. With no annotations, this is decently transparent, though it does not explain failure modes or the exact shape of the returned alive status.

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?

Two concise sentences front-load the purpose and return value, followed by a single clear parameter note. No filler or redundancy.

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?

For a single-parameter tool, the description covers what it does, when it may open a show, the return, and the timeout default. It only omits the exact shape of the returned alive status and possible failure behavior.

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

Parameters5/5

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

Even though the schema provides no description, the tool description fully documents 'timeout (float | None): Max seconds to wait (default 45)'. This adds meaningful semantics beyond the bare schema properties.

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 gives a specific action ('Open the show in TD... wait for the bridge heartbeat') and return value ('Returns alive status'). It is distinct from sibling status/state tools because it explicitly involves opening the show and waiting, not just querying state.

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

Usage Guidelines2/5

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

The description implies usage (ensure alive before proceeding) but gives no explicit guidance on when to prefer it over alternatives like bridge_status or bridge_open_show. No decision criteria or contrasting context is provided.

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