Skip to main content
Glama

tempo_get_project

Read-only

Retrieve a Tempo project by ID to access its details, choosing a compact or full response shape.

Instructions

Retrieve a single Tempo Financial Manager project by id.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYesProject id
viewNoResponse shape: "compact" (default) drops fields the response already carries elsewhere; "full" returns every field this server understands. compact strips image/avatar URLs from the response; "full" returns Tempo's payload untouched. No field projection: this server has no verified record of which Tempo fields matter, and inventing one would risk dropping a field a caller needs.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv3.2.1

TDQS

A3.9/5.0
Behavior3/5

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

The annotation readOnlyHint=true already declares the operation as read-only, so the description doesn't need to repeat that. The description adds no further behavioral context (e.g., not-found behavior, response shape). Since annotations cover the safety profile, this is a baseline 3; no contradiction exists.

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, front-loaded sentence containing only essential information. There is no filler or redundancy; it earns its place perfectly for a simple get-by-id tool.

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?

For a single-resource retrieval tool with read-only annotation and fully documented parameters, the description is complete. It covers what the tool does and how to invoke it. The absence of an output schema is acceptable since the tool's return is straightforward and not described elsewhere.

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 both parameters ('id' and 'view') are already documented in the schema, including the detailed semantics of the 'view' enum. The description adds no additional parameter meaning, so a 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 clearly states a specific verb ('Retrieve'), a resource ('a single Tempo Financial Manager project'), and the key discriminator ('by id'). This distinguishes it from the plural 'tempo_get_projects' sibling without needing to open either schema. The intent is unambiguous.

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?

Usage is implied by the word 'single' and the requirement of an 'id', which contrasts with the plural 'tempo_get_projects'. However, the description does not explicitly state 'use this when you have a project ID; use tempo_get_projects to list projects' or mention any alternatives. It's adequate but relies on inference rather than explicit routing.

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