Skip to main content
Glama

Server Details

Unemployment rates, labor force, and Consumer Price Index from the Bureau of Labor Statistics

If you are the author of this connector, you can claim ownership with GitHub, an HTTP challenge, or a DNS record. Claimed connector authors can inspect health checks, view analytics, and manage their listing.
Status
Healthy
Last Tested
Transport
Streamable HTTP
URL

Available Tools

4 tools
get_county_employmentAInspect

Get county-level unemployment rate, employment, and labor force data.

Returns three time series for a specific county: unemployment rate (percent),
employment count, and labor force size.

Args:
    state: Two-letter US state abbreviation (e.g. 'WA', 'CA', 'NY').
    county_fips: Three-digit county FIPS code as a string (e.g. '033' for King County, WA).
    start_year: Start year for data (default 2020).
    end_year: End year for data (default 2025).
ParametersJSON Schema
NameRequiredDescriptionDefault
stateYes
end_yearNo
start_yearNo
county_fipsYes

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

A4.1/5.0
Behavior3/5

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

With no annotations provided, the description carries the full burden. It discloses the operation ('Get'), the returned data shape (three time series), and default year ranges, but it does not mention data sources, error behavior, or validation requirements for the state/county_fips inputs. This is adequate but not rich.

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 compact and well-structured: a lead sentence states the purpose, a second sentence describes the output, and an Args block lists parameter details. Every sentence is necessary and no redundant or filler content exists.

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?

The description covers inputs, defaults, and output summary, and an output schema exists to document the return structure. It could explicitly mention when to choose this over sibling tools or describe error edge cases, but for a straightforward retrieval tool it is sufficiently complete.

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

Parameters5/5

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

The schema provides zero descriptions for parameters, so the description fully compensates by explaining every parameter: state with example abbreviations, county_fips with a format example, and start/end year defaults. This is exactly what the agent needs to populate the arguments correctly.

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 opens with 'Get county-level unemployment rate, employment, and labor force data'—a specific verb and resource. It then enumerates the three returned time series, clearly distinguishing this tool from siblings like get_unemployment_rate or get_labor_force_data.

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?

The 'for a specific county' phrasing implies when this tool should be used, but the description never explicitly contrasts it with alternatives such as get_unemployment_rate or get_labor_force_data, nor does it state when not to use it. Usage guidance is only implicit.

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

get_cpi_dataAInspect

Get national Consumer Price Index (CPI) data.

Returns the CPI-U (All Urban Consumers, All Items) monthly time series.
This is the headline CPI measure used for inflation tracking.
Base period: 1982-84=100.

Args:
    start_year: Start year for data (default 2020).
    end_year: End year for data (default 2025).
ParametersJSON Schema
NameRequiredDescriptionDefault
end_yearNo
start_yearNo

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

A3.9/5.0
Behavior3/5

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

There are no annotations, so the description carries the burden. It adds useful behavioral context about the CPI-U measure and monthly frequency, but it does not disclose limitations, data revision policies, or that it is a read-only operation. This is adequate but not rich.

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 concise and well-structured, front-loading the purpose in the first sentence. The Args section is appropriately formatted and every sentence contributes relevant information.

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 two-parameter data retrieval tool with an output schema, the description covers the core functionality, the metric definition, and the parameter defaults. It is mostly complete, though it could mention edge cases like start_year exceeding end_year.

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

Parameters2/5

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

The schema has 0% description coverage, so the description must compensate. However, the Args section merely repeats the parameter names and defaults from the schema, without adding semantics like year range validation or data availability constraints. Minimal added value.

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 it retrieves national CPI data, specifically the CPI-U monthly time series, with a base period. This distinguishes it from sibling tools focused on employment, labor force, and unemployment, making its purpose unambiguous.

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 provides clear context for when to use the tool (for inflation tracking with headline CPI), but it does not explicitly mention alternatives or exclusion criteria. Since the sibling tools are topically distinct, the context is sufficient to guide selection.

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

get_labor_force_dataAInspect

Get labor force participation, employment, and unemployment counts for a state.

Returns three time series: labor force size, employment count, and
unemployment count. All values are in thousands of persons.

Args:
    state: Two-letter US state abbreviation (e.g. 'WA', 'CA', 'NY').
    start_year: Start year for data (default 2020).
    end_year: End year for data (default 2025).
ParametersJSON Schema
NameRequiredDescriptionDefault
stateYes
end_yearNo
start_yearNo

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

A3.6/5.0
Behavior3/5

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

No annotations are present, so the description must carry the burden. It discloses the return format (three time series, values in thousands) but does not mention data source, error handling, or any side effects. It implies a read-only operation but doesn't explicitly state it.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is concise and well-structured with a clear purpose statement, return summary, and an Args block. Each sentence serves a purpose, though the phrase 'labor force participation' is slightly inconsistent with 'labor force size' in the returns.

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

Completeness3/5

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

The tool has a simple interface (1 required param) and an output schema exists, but the description lacks usage context such as when to use this versus siblings, data source, and handling of invalid inputs. It covers return values, which is helpful, but overall completeness is moderate.

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

Parameters4/5

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

Schema description coverage is 0%, but the description compensates by explaining each parameter: state (two-letter abbreviation with examples), start_year, and end_year (with defaults). It adds practical syntax guidance beyond the raw schema, though it lacks constraints like valid year ranges.

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 labor force participation, employment, and unemployment counts for a state, and specifies the three time series returned. This distinguishes it from siblings like get_unemployment_rate (rate vs counts) and get_county_employment (county vs state level).

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?

No guidance is given on when to use this tool versus alternatives such as get_unemployment_rate or get_county_employment. The context implies state-level data, but no explicit exclusions or alternative recommendations are provided.

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

get_unemployment_rateAInspect

Get unemployment rate time series from BLS LAUS data.

Returns monthly unemployment rates for a state or county. Data is returned
in chronological order with year, period, and percentage value.

Args:
    state: Two-letter US state abbreviation (e.g. 'WA', 'CA', 'NY').
    county_fips: Optional 3-digit county FIPS code (e.g. '033' for King County).
                 If provided, returns county-level data; otherwise state-level.
    start_year: Start year for data (default 2020, min 4-digit year).
    end_year: End year for data (default 2025).
ParametersJSON Schema
NameRequiredDescriptionDefault
stateYes
end_yearNo
start_yearNo
county_fipsNo

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

A4.6/5.0
Behavior4/5

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

With no annotations, the description carries the full burden of behavioral disclosure. It covers the data source (BLS LAUS), temporal resolution (monthly), ordering (chronological), return fields (year, period, percentage), and the optional county behavior. It stops short of discussing edge cases or error handling, but for a read-only data retrieval tool, this is adequate and adds substantial context 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 compact and well-structured: a one-line summary, a few lines of return details, and a clean Args list. Every sentence earns its place, with no redundancy or fluff. The format makes it easy for an agent to parse quickly.

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?

Given the tool's moderate complexity, an output schema exists, and the description already covers return values, source, and parameter semantics, this description is fully sufficient. It enables an agent to select and invoke the tool correctly without needing additional context.

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

Parameters5/5

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

Schema description coverage is 0%, so the description must fully explain parameters. It does so comprehensively: state with examples ('WA', 'CA'), county_fips with a concrete example ('033' for King County) and behavior, start_year/end_year with defaults and a 'min 4-digit year' constraint. This adds meaning that entirely compensates for the bare 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 begins with a clear, specific verb and resource: 'Get unemployment rate time series from BLS LAUS data.' It explicitly distinguishes itself from sibling tools like get_county_employment and get_cpi_data by focusing on unemployment rates. The inclusion of state/county-level detail further clarifies the tool's scope.

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 clearly states what data the tool returns (monthly unemployment rates) and explains the county_fips behavior (county vs. state-level). Though it does not explicitly name alternative tools for comparison, the context is clear enough that an agent can infer when to use this tool instead of siblings, meeting the 'clear context, no exclusions' criterion.

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

Frequently Asked Questions

Discussions

No comments yet. Be the first to start the discussion!

Related MCP Connectors

Related MCP Servers

  • F
    license
    Not graded
    quality
    D
    maintenance
    Provides access to U.S. labor market data including employment statistics, Consumer Price Index inflation rates, and wage information. Users can query specific time series data or use shortcuts for common economic indicators like unemployment and industry-specific employment.
    3
  • A
    license
    A
    quality
    C
    maintenance
    Enables users to query U.S. labor statistics, including employment, CPI, and wages, directly from the Bureau of Labor Statistics Public Data API. It provides tools to retrieve real-time economic time series data, browse popular series, and access survey metadata through natural language.
    6
    1
    MIT
Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

A3.7/5.0
Disambiguation2/5

There is significant overlap between tools, particularly get_county_employment, get_labor_force_data, and get_unemployment_rate, which all provide similar employment/unemployment metrics at different geographic levels. The descriptions help somewhat, but an agent could easily misselect between these tools when seeking employment data.

Naming Consistency5/5

All tool names follow a consistent verb_noun pattern with 'get_' prefix and descriptive suffixes (e.g., get_county_employment, get_cpi_data). The naming is predictable and follows the same convention throughout the set.

Tool Count3/5

With only 4 tools, the set feels thin for a BLS employment and wages server. While the tools cover key metrics, there are likely missing wage-related tools (e.g., get_wage_data, get_occupation_data) that would be expected from such a domain.

Completeness2/5

There are significant gaps in coverage for a BLS employment and wages server. The tools focus heavily on employment/unemployment metrics but completely omit wage data, industry breakdowns, occupation statistics, and other core BLS datasets that would be essential for comprehensive economic analysis.

Resources