Skip to main content
Glama
mkammes

TriCaster MCP Server

by mkammes

get_record_state

Check whether a TriCaster recorder is active or inactive. Optionally specify the recorder number; defaults to 1.

Instructions

Get the current recording state (active/inactive). Optionally specify recorder number (default: 1).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
recorderNoRecorder number (default 1)

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

B3.4/5.0
Behavior3/5

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

With no annotations, the description must carry the behavioral load. It usefully discloses the return value space (active/inactive), which is real information absent from the schema, but says nothing about permissions, whether the read is side-effect free, or what happens with an invalid recorder number.

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 short sentences, zero waste, and the core purpose is front-loaded ahead of the optional parameter note.

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 parameterless getter with no output schema, the description covers the essentials and describes the returned states. It is nearly complete, with only minor gaps around error conditions or per-recorder semantics.

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

Parameters3/5

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

Schema description coverage is 100% and the single parameter already documents its default, so the description's "default: 1" merely restates it. Baseline 3 is appropriate when the schema does the heavy lifting.

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?

States a specific verb (Get) and resource (record state) plus the value space (active/inactive), which is more than a tautology. It is distinguishable from start_record/stop_record by name, but the description offers no explicit differentiation from those siblings.

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?

There is no statement of when to call this versus start_record, stop_record, or get_stream_state. Usage is only implied by the name; the only guidance given concerns the optional parameter, not the tool's role.

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