Skip to main content
Glama
djOsh-03

ScreenApp Legacy MCP Bridge

by djOsh-03

Get ScreenApp team

get_team
Read-onlyIdempotent

Fetch detailed information for a specific ScreenApp team using its team ID, enabling access to team metadata.

Instructions

Read details for one ScreenApp team.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
teamIdYesScreenApp team ID

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.1

TDQS

A4/5.0
Behavior3/5

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

Annotations already provide readOnlyHint=true, idempotentHint=true, and destructiveHint=false, so the safety profile is established. The description adds only the 'one team' scope, reinforcing the read-only nature but offering no additional behavioral context such as response contents or error conditions.

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 concise sentence that front-loads the operation and resource with no filler. Every word contributes.

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 simple one-parameter read operation with comprehensive annotations and full schema coverage, the description is adequate. It does not explain what details are returned, but this is minor given the tool's simplicity and the absence of an output schema.

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 coverage is 100% and the only parameter, teamId, is already described as 'ScreenApp team ID' in the schema. The description does not add any new semantic detail beyond the schema, so the baseline score of 3 applies.

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 clearly identifies the operation ('Read details') and the resource ('one ScreenApp team'), which distinguishes it from sibling tools like list_teams that enumerate teams and get_recording that targets recordings. The scope is explicit: one team.

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?

The description makes the context clear: use this when you need details for a single team, not when listing teams. However, it does not explicitly name alternatives or when-not conditions, so it stops short of the ideal.

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