Skip to main content
Glama

get_labor_rates

Read-onlyIdempotent

Deprecated: prefer remodeleriq_get_labor_rates. Get 2026 burdened construction trade labor rates ($/hour) for a US state, derived from BLS wage data.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
tradeNoOptional specific trade to filter to (e.g. 'plumber', 'electrician', 'carpenter').
state_codeYesTwo-letter US state code (e.g. 'TX', 'NY').

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
noteNo
_metaNo
ratesYes
stateYes

TDQS

A4.4/5.0
Behavior4/5

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

Annotations already declare read-only and idempotent behavior. The description adds the deprecation status, the 2026 year, 'burdened' nature of rates, and BLS derivation, which are useful behavioral context not present in annotations.

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 one concise sentence that front-loads the critical deprecation notice and then packs the core function with specific details. Every clause earns its place with no 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 simple read-only lookup with an output schema and annotations, the description covers the purpose, deprecation, data source, and units. It doesn't explain 'burdened' in depth, but overall it is sufficiently complete for invoking the tool.

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%, fully documenting both state_code and trade. The description adds that rates are per hour and for construction trades, but does not provide additional syntax details beyond the schema.

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 the tool retrieves 2026 burdened construction trade labor rates in dollars per hour for a US state, sourced from BLS. It also explicitly names the replacement tool, distinguishing it from siblings.

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?

It opens with 'Deprecated: prefer remodeleriq_get_labor_rates,' which explicitly tells the agent to prefer an alternative. It also sets context for scope (US state, construction trade labor rates).

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

A3.9/5.0
Disambiguation2/5

The deprecated tools are near-identical duplicates of the new prefixed tools, creating significant overlap. An agent could easily call analyze_bid instead of remodeleriq_analyze_bid, leading to confusion despite the deprecation notes.

Naming Consistency2/5

Two naming patterns coexist: the older unprefixed verbs (analyze_bid, get_cost_estimate) and the newer prefixed verbs (remodeleriq_analyze_bid). This inconsistency is minor on its own but combined with the duplicates it creates a jarring mix.

Tool Count3/5

The raw count of 6 is reasonable, but 3 tools are deprecated duplicates, so the effective unique toolset is only 3. This feels padded and slightly wasteful, though not egregious.

Completeness4/5

The three core functions—bid analysis, cost estimates, and labor rates—cover the primary homeowner needs for remodeling transparency. No obvious lifecycle gaps exist since this is a read/analyze API rather than a CRUD system.