Skip to main content
Glama

Get one booth in detail

get_project
Read-only

Full detail for a single booth: its name, public link, currency, screen size, and the live status of the device running it — whether it is online, when it was last seen, app version, and camera/printer/internet state. Call this when the operator asks about one specific booth, or whether a booth is working. Get the project id from list_projects first.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
projectIdYesProject id from list_projects

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
devicesYesEmpty when device monitoring is unavailable — not an error
projectYes
deviceCountYes

TDQS

A4.5/5.0
Behavior4/5

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

Annotations already declare readOnlyHint=true and destructiveHint=false, so the safety profile is covered. The description adds useful context about what status information is returned (online, last seen, app version, camera/printer/internet state), which helps the agent understand the tool's behavior beyond the schema.

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 two sentences, front-loaded with the core purpose, and efficiently enumerates return fields without waste. Every clause earns its place, and the flow from what → when → how is clear.

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

Completeness5/5

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

With an output schema present, the return values are already defined. The description adds the needed usage context (when to call, what to get first, what live status items are included), making it complete for a single-booth detail tool. It also differentiates from list_projects.

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% for the single parameter projectId, and the schema description already explains 'Project id from list_projects'. The description repeats this source hint but adds no additional syntax, format, or constraints beyond what the schema provides, so baseline 3 is appropriate.

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 'Full detail for a single booth' with a specific verb (get) and resource (booth/project), and lists the returned fields (name, public link, currency, etc.). It clearly distinguishes from list_projects by focusing on one specific booth.

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

Usage Guidelines5/5

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

Explicit guidance is provided: 'Call this when the operator asks about one specific booth, or whether a booth is working.' It also gives a prerequisite: 'Get the project id from list_projects first.' This clearly indicates when to use the tool and what steps precede it.

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

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

A4.6/5.0
Disambiguation5/5

Each tool targets a distinct resource and action: account connection/status, credits, gallery stats, project details, revenue, sessions, wallet transactions, project listing, and docs. Descriptions explicitly differentiate between similar tools such as revenue vs. wallet transactions and sessions vs. gallery stats.

Naming Consistency4/5

Most tools follow a verb_noun pattern (get_*, list_*, connect_*, search_*). connection_status deviates slightly by omitting the 'get' prefix, but the overall pattern is predictable and readable.

Tool Count5/5

10 tools is well-scoped for a photobooth analytics and management assistant. Each tool covers a distinct need, from account connection to revenue reporting, with no redundant or unnecessary tools.

Completeness5/5

The tool surface covers the full lifecycle of typical operator queries: account setup, status, credits, project listing/detail, session counts, revenue across channels, wallet ledger, gallery retention, and documentation search. No obvious dead ends or missing operations for the stated purpose.