Skip to main content
Glama

bls-labor-mcp-server

Server Details

Fetch US Bureau of Labor Statistics data — CPI, unemployment, wages, JOLTS, and more via MCP.

Status
Healthy
Last Tested
Transport
Streamable HTTP
URL
Repository
cyanheads/bls-labor-mcp-server
GitHub Stars
1

Glama MCP Gateway

Connect through Glama MCP Gateway for full control over tool access and complete visibility into every call.

MCP client
Glama
MCP server

Full call logging

Every tool call is logged with complete inputs and outputs, so you can debug issues and audit what your agents are doing.

Tool access control

Enable or disable individual tools per connector, so you decide what your agents can and cannot do.

Managed credentials

Glama handles OAuth flows, token storage, and automatic rotation, so credentials never expire on your clients.

Usage analytics

See which tools your agents call, how often, and when, so you can understand usage patterns and catch anomalies.

100% free. Your data is private.
Tool DescriptionsA

Average 4.7/5 across 6 of 6 tools scored.

Server CoherenceA
Disambiguation5/5

Each tool has a clearly distinct purpose: list_surveys and search_series for discovery, get_series and get_latest for data retrieval (one for time-series, one for latest), and describe/query for analysis. No overlap.

Naming Consistency5/5

All tools follow a consistent bls_ verb_noun pattern in snake_case (e.g., bls_get_series, bls_search_series), making naming predictable and clear.

Tool Count5/5

With 6 tools, the set is well-scoped for BLS labor data: covers discovery, retrieval, and analysis without unnecessary bulk or missing essentials.

Completeness5/5

The tool surface supports the full workflow: discover surveys (list_surveys), search series (search_series), fetch data (get_series/get_latest), and analyze via SQL (describe/query). No obvious gaps.

Available Tools

6 tools
bls_dataframe_describeDescribe BLS DataframesA
Read-onlyIdempotent
Inspect

List canvas dataframes materialized by bls_get_series, with provenance (source tool, query parameters), TTL, row count, and column schema. Use before writing SQL to confirm column names. Lazy-sweeps expired tables before responding. Requires CANVAS_PROVIDER_TYPE=duckdb.

ParametersJSON Schema
NameRequiredDescriptionDefault
nameNoOptional table name (df_XXXXX_XXXXX) to describe a single dataframe. Omit to list all active dataframes.

Output Schema

ParametersJSON Schema
NameRequiredDescription
dataframesYesActive dataframes for this tenant, newest first.
Behavior4/5

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

Annotations declare readOnlyHint and idempotentHint. Description adds behavioral details: 'Lazy-sweeps expired tables before responding' and environment requirement, providing context beyond 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?

Two concise sentences plus a requirement line. Every sentence adds value, front-loaded with purpose. No wasted words.

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 simple tool (1 optional param, output schema exists), the description covers purpose, usage hint, behavioral side-effect, and environment constraint. Complete for an agent to select and invoke correctly.

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 description largely repeats the schema's parameter description. No additional semantic value beyond what the input schema already provides.

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 uses specific verb 'List' and resource 'canvas dataframes materialized by bls_get_series', clearly distinguishing from sibling tools like bls_dataframe_query (which queries) and bls_get_series (which retrieves series).

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?

Explicitly states 'Use before writing SQL to confirm column names' for context, and mentions prerequisite 'Requires CANVAS_PROVIDER_TYPE=duckdb'. Does not explicitly state when not to use, but sibling names imply alternatives.

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

bls_dataframe_queryQuery BLS DataframesA
Read-onlyIdempotent
Inspect

Run a single-statement SELECT against the canvas dataframes registered by bls_get_series. Read-only: writes, DDL, DROP, COPY, PRAGMA, ATTACH, and external-file table functions are rejected. System catalogs (information_schema, pg_catalog, sqlite_master, duckdb_*) are denied at the bridge layer — use bls_dataframe_describe to list available dataframes. Supports JOINs, aggregates, window functions, and CTEs. Optional register_as persists the result as a new dataframe with a fresh TTL for chained analysis. Canvas SQL operations consume zero BLS API quota. Requires CANVAS_PROVIDER_TYPE=duckdb.

ParametersJSON Schema
NameRequiredDescriptionDefault
sqlYesSingle-statement SELECT against df_<id> tables on the shared canvas. Reference dataframes by the names returned in bls_get_series responses or listed by bls_dataframe_describe. Standard DuckDB SQL — joins, aggregates, window functions, CTEs all supported. Example: SELECT series_id, year, period, value FROM df_AAAAA_BBBBB WHERE year >= '2020' ORDER BY year DESC.
previewNoInline row preview count. Defaults to row_limit. Set lower (e.g. 50) when chaining via register_as and only a sample is needed immediately.
row_limitNoHard cap on rows materialized in the response (default 1000, max 10000). Full results live on-canvas under register_as when provided.
register_asNoWhen set, persist the query result as a new dataframe under this name. Fresh TTL — not inherited from parent tables. Use to chain analyses without re-running source SQL or consuming additional BLS quota.

Output Schema

ParametersJSON Schema
NameRequiredDescription
rowsYesMaterialized rows, bounded by preview / row_limit.
noticeNoGuidance when results were capped by preview or row_limit — names which parameter was the binding limiter and suggests how to retrieve the rest. Absent when all rows fit in the response.
columnsYesColumn names in projection order.
row_countYesTotal rows the query produced (may exceed rows.length when capped by row_limit).
expires_atNoISO 8601 expiry for the newly registered dataframe, when applicable.
registered_asNoSet when register_as was supplied and the result was materialized.
Behavior5/5

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

Annotations already declare readOnlyHint=true and idempotentHint=true. The description adds significant behavioral context: it is read-only, rejects certain SQL statements, denies system catalogs at the bridge layer, mentions zero BLS API quota consumption, and explains that register_as persists the result with a fresh TTL. No contradictions with 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 well-structured and front-loaded with the core purpose. Every sentence adds value: purpose, constraints, usage alternatives, supported operations, and optional parameter behavior. It is appropriately sized for a complex tool with 4 parameters and no unnecessary words.

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 complexity (4 parameters, required 1, output schema present), the description is complete. It covers purpose, constraints, usage guidelines, parameter semantics, and chaining. The output schema exists, so the description does not need to explain return values. No gaps identified.

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 coverage is 100%, so baseline is 3. The description adds substantial meaning beyond the schema: for 'sql' it provides an example and clarifies referencing dataframes; for 'preview' it explains default behavior and chaining; for 'row_limit' it explains hard cap and defaults; for 'register_as' it explains TTL and chaining benefits. This significantly helps the agent understand parameter usage.

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 runs a single-statement SELECT against canvas dataframes registered by bls_get_series. It distinguishes itself from sibling tools like bls_dataframe_describe (for metadata) and bls_get_series (for fetching data). The verb 'Query' and resource 'BLS Dataframes' are specific and unambiguous.

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?

The description explicitly states when to use this tool: for querying dataframes. It also specifies when not to: rejects writes, DDL, DROP, COPY, PRAGMA, ATTACH, and external-file table functions. It provides an alternative: use bls_dataframe_describe to list available dataframes. It also gives context on supported operations (JOINs, aggregates, etc.) and the optional register_as parameter for chaining.

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

bls_get_latestGet Latest BLS ObservationA
Read-onlyIdempotent
Inspect

Return the single most recent observation for one or more BLS series. Use for "what is X right now" questions — the current unemployment rate, the latest CPI reading, etc. Each series consumes one API query against the 500/day limit; for the current value of many series, bls_get_series with a 1-year window is more quota-efficient (one query for up to 50 series). Recommended limit: 10 series; maximum: 50.

ParametersJSON Schema
NameRequiredDescriptionDefault
series_idsYesOne or more BLS SeriesIDs (1–50). Each consumes one daily API query. Use bls_search_series to resolve concepts to SeriesIDs. Recommended: ≤10 series.

Output Schema

ParametersJSON Schema
NameRequiredDescription
failedYesSeries that failed to fetch. Inspect seriesId and error for per-item details. Not-found series appear here rather than as a tool-level error.
noticeNoGuidance when one or more series failed — e.g. to use bls_search_series to verify SeriesIDs. Absent when all series returned data.
resultsYesSuccessfully fetched series with their latest observations. Series that failed appear in failed[] instead.
succeededYesNumber of series with a successfully fetched observation.
Behavior4/5

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

Annotations already declare readOnlyHint, openWorldHint, idempotentHint. Description adds API quota context (500/day limit, each series consumes one query) and notes alternative for efficiency. No contradiction. with annotations covering safety, description adds meaningful behavioral info beyond 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?

Three sentences, each substantive. First sentence states primary function. Second gives usage guidance and alternatives. Third adds limits. No wasted words.

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 single parameter, annotations, output schema, and sibling tools, description covers purpose, usage context, quota concerns, and alternatives completely. No gaps.

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 coverage is 100% (series_ids fully described). Description adds meaning beyond schema: explains per-series quota consumption and recommends ≤10 for efficiency. Provides context not in 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?

Clearly states 'return the single most recent observation for one or more BLS series'. Uses specific verb 'return' and resource 'BLS series'. Distinguishes from siblings like bls_get_series (returns range) and bls_search_series (resolves concepts).

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?

Explicitly says use for 'what is X right now' questions, provides alternatives (bls_get_series for quota efficiency), and gives recommended (≤10) and maximum (50) series limits.

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

bls_get_seriesGet BLS Time-Series DataA
Read-only
Inspect

Fetch time-series data for 1–50 BLS series by SeriesID in a single API request (one query against the 500/day limit). Supports optional year range (up to 20 years per request) and BLS-computed period-over-period calculations (net change and percent change; a survey returns whichever it supports — CPI and PPI return percent change only, the inflation rate — so check bls_list_surveys first). When the total observation count would exceed the inline context budget, results spill to a canvas dataframe and the response includes a dataset.name handle for follow-up SQL via bls_dataframe_query. Use bls_search_series first if you need to resolve a concept to a SeriesID.

ParametersJSON Schema
NameRequiredDescriptionDefault
end_yearNoEnd year for the data range (inclusive). Defaults to the current year when omitted.
series_idsYesOne or more BLS SeriesIDs (1–50). The entire batch counts as one API query. Use bls_search_series to resolve concepts to SeriesIDs.
start_yearNoStart year for the data range (inclusive). The BLS API allows up to 20 years per request. Omit for the API default (typically 3–20 years depending on survey).
calculationsNoWhen true, request BLS-computed period-over-period calculations. The flag is a single boolean (you cannot select an individual calculation type), but the API returns whichever the survey supports: CPI and PPI return percent change only (the inflation rate), with no error. Only surveys that support neither net nor percent change (e.g. AP average price data) return an error — check bls_list_surveys first.

Output Schema

ParametersJSON Schema
NameRequiredDescription
noticeNoGuidance for agents — e.g. when results spilled to canvas and SQL is needed for full access. Absent when all observations fit inline.
seriesYesSeries data, in request order.
datasetNoCanvas dataframe handle — present when the observation volume exceeded the inline budget. Use bls_dataframe_query with dataset.name to run SQL across the full data.
spilledYesTrue when results spilled to canvas due to inline budget overflow.
endYearAppliedNoEnd year in effect, when a range was requested.
seriesRequestedYesNumber of SeriesIDs requested. Compare against the returned series[] length to detect series that returned no data.
startYearAppliedNoStart year in effect, when a range was requested.
totalObservationsYesTotal observation rows across all requested series.
calculationsAppliedNoWhether BLS net/percent-change calculations were requested.
Behavior5/5

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

Discloses beyond annotations: rate limit consumption (one query against 500/day), optional year range (max 20 years), BLS-calculations behavior (CPI/PPI return percent change only), and spill-to-canvas dataframe when observation count exceeds budget. No contradiction with readOnlyHint or openWorldHint.

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?

Concise but slightly verbose; every sentence adds value, but could be tightened (e.g., 'a survey returns whichever it supports' phrase). Front-loaded with core purpose and well-structured.

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?

Thorough given complexity: covers data volume handling (spill to canvas), calculations nuances, rate limit, and workflow with siblings and follow-up SQL tool. Output schema exists, so return values are not needed in description.

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?

Provides meaning beyond schema: explains calculations flag's survey-dependent behavior, start_year default, and the count logic for series_ids. With 100% schema coverage, the description adds crucial context like 'The flag is a single boolean... but the API returns whichever the survey supports.'

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 fetches time-series data for 1-50 BLS series via SeriesID, specifying it's a single API request. It distinguishes from siblings by directing users to bls_search_series for concept resolution and bls_list_surveys for survey-specific calculations.

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?

Explicitly advises when to use alternatives: 'Use bls_search_series first if you need to resolve a concept to a SeriesID' and 'check bls_list_surveys first' for calculations. Also mentions rate limit (500/day) and query count (one per call), guiding appropriate usage.

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

bls_list_surveysList BLS SurveysA
Read-onlyIdempotent
Inspect

List BLS survey programs with their abbreviation codes, full names, and metadata about calculation support and annual averages. Use to discover which survey covers a topic before calling bls_search_series. Optional category filter narrows results to prices, employment, wages, productivity, injuries, or time_use surveys.

ParametersJSON Schema
NameRequiredDescriptionDefault
categoryNoOptional category filter. One of: prices, employment, wages, productivity, injuries, time_use. Omit to list all surveys.

Output Schema

ParametersJSON Schema
NameRequiredDescription
totalYesTotal surveys returned.
surveysYesBLS survey programs matching the filter, sorted alphabetically by abbreviation.
categoryFilterNoCategory filter applied, if any. Absent when all surveys were listed.
Behavior4/5

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

The description adds specific details about outputs (abbreviation codes, full names, metadata) beyond what annotations provide. Annotations already declare readOnlyHint and idempotentHint, so the description's additional context about the output's contents enhances transparency without contradiction.

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 with no superfluous content. It front-loads the core purpose and follows with usage guidance, making it highly efficient and reader-friendly.

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 simplicity (1 optional param, no required params), the description, combined with annotations and schema, covers all necessary information. The existence of an output schema means return values need not be detailed in the description. The workflow reference to a sibling tool provides complete contextual guidance.

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?

The single optional parameter (`category`) has full description coverage in the schema (100%). The description reinforces the parameter's purpose and enum values, adding value by explaining its role in narrowing results. Baseline 3 is elevated due to this contextual reinforcement.

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 lists BLS survey programs with specific information (abbreviation codes, full names, metadata). It distinguishes itself from the sibling tool `bls_search_series` by indicating its use as a precursor to that tool.

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 guidance: 'Use to discover which survey covers a topic before calling bls_search_series.' It implies when to use and suggests an alternative. However, it does not explicitly state when not to use or other exclusions, keeping it from a top score.

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

bls_search_seriesSearch BLS SeriesA
Read-only
Inspect

Search the BLS series catalog by natural language query, survey code, geographic area, or keywords to resolve cryptic SeriesIDs. Returns matching series with decoded components (survey, area, item, seasonal flag) and plain-language names. Use this before bls_get_series when you have a concept but not a SeriesID. Operates offline — no API quota consumed. Survey filter accepts two-letter codes (CU, CE, LN, LA, PC, JT, OE, EC, PR). Area filter accepts state names, MSA names, or FIPS area codes.

ParametersJSON Schema
NameRequiredDescriptionDefault
areaNoState name, MSA name, or FIPS area code to narrow results to a geographic area. Omit for national series.
limitNoMaximum number of results to return (1–50, default 10).
queryYesNatural language or keyword query (e.g. "unemployment rate", "CPI food", "nonfarm payrolls"). Also accepts a SeriesID directly for exact lookup.
surveyNoTwo-letter LABSTAT survey abbreviation to filter results (e.g. CU for CPI, CE for CES, LN for CPS, LA for LAUS, JT for JOLTS, OE for OEWS). Omit to search all loaded surveys.
seasonal_adjustmentNoWhen true, return only seasonally adjusted series. When false, return only not-seasonally-adjusted. Omit to return both.

Output Schema

ParametersJSON Schema
NameRequiredDescription
capNoThe result limit that capped the returned list.
shownNoNumber of series returned in this response.
cappedYesTrue when the FTS candidate pool reached the internal cap (~1000). totalCount is then a lower bound, not an exact match count. Narrow the query, add survey/area filters, or use a direct SeriesID to get an exact count.
noticeNoGuidance when no results matched — e.g. how to broaden the query or remove filters. Absent when results are returned.
seriesYesMatching series, ordered by relevance.
truncatedNoTrue when more candidates matched than the limit returned.
areaFilterNoArea filter applied, if any. Absent when no area filter was passed.
totalCountYesTotal candidates scored before the limit was applied. A lower bound when capped is true — the catalog index may contain more matching series.
catalogSizeYesTotal series in the loaded catalog index. Distinguishes an empty-result search from a failed catalog load.
limitAppliedYesResult limit in effect (defaults to 10 when omitted).
surveyFilterNoSurvey filter applied, if any. Absent when no survey filter was passed.
effectiveQueryYesQuery string as the server received and searched on. Confirms interpretation for self-correction.
seasonalFilterNoSeasonal-adjustment filter applied, if any. Absent when not passed.
Behavior5/5

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

Annotations already declare readOnlyHint and openWorldHint. The description adds valuable context beyond this: it operates offline, consumes no API quota, and returns decoded components and plain-language names. No contradictions with 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 concise with no wasted words. It front-loads the primary purpose, then adds supporting details in separate sentences. Every sentence serves a purpose and contributes to clarity.

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 complexity (5 parameters, output schema present), the description covers all essential aspects: search type, parameter formats, return format, and usage context. The presence of an output schema reduces the need to describe return values in detail.

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 coverage is 100%, so baseline is 3. The description adds extra meaning by listing more survey codes, clarifying that query accepts SeriesID for exact lookup, and explaining area filter options. This enrichment justifies a score above baseline.

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's verb ('Search'), resource ('BLS series catalog'), and how it interacts with siblings. It explicitly mentions resolving cryptic SeriesIDs and distinguishes itself by advising use before bls_get_series when lacking a SeriesID.

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?

The description explicitly states when to use the tool ('Use this before bls_get_series when you have a concept but not a SeriesID') and provides alternative tools (bls_get_series). It also notes offline operation and no API quota, which informs decision-making.

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

Discussions

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

Try in Browser

Your Connectors

Sign in to create a connector for this server.