Skip to main content
Glama

Data To Agents

Server Details

A wide range of validated governmental statistics and datasets for Australia, NZ, US, Argentina, Uraguay

Ownership verified
Status
Healthy
Last Tested
Transport
Streamable HTTP · MCP 2025-11-25
URL

TDQS

A3.8/5.0

Scored across 9 tools

Disambiguation3/5

Most tools have distinct roles, but there is notable overlap among discovery tools: list_services, search_services, and suggest_service all return service recommendations in different modes. The descriptions help separate browse, keyword search, and natural-language intent, but an agent could still struggle to pick the right discovery tool.

Naming Consistency4/5

The naming pattern is mostly consistent with verb_noun names like get_catalog, list_services, search_services, and suggest_service. The outlier is 'health', which is a bare noun rather than get_health or check_health, but otherwise the convention is predictable.

Tool Count5/5

Nine tools is well-scoped for a data-service catalog and execution server. Each tool serves a clear part of the workflow: discovery, filtering, schema lookup, search, suggestion, execution, and health monitoring.

Completeness5/5

The server covers the full agent-facing lifecycle: discover categories and services, inspect schemas and pricing, search and get recommendations, execute a service, and check server health. No major dead ends or obvious missing operations are apparent for the stated purpose.

Available Tools

9 tools
call_serviceCall ServiceAInspect

Execute any catalog service by ID with arguments. Returns the service payload as text JSON plus structuredContent. Requires x402 payment in production.

ParametersJSON Schema
NameRequiredDescriptionDefault
argsYesArguments for the service, matching the service schema (see get_service_schema)
service_idYesThe service id to call, e.g. "au-property-crime"

TDQS

A3.5/5.0
Behavior3/5

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

With no annotations, the description carries the full burden, and it does add real value by disclosing the return shape ('text JSON plus structuredContent') and a production payment requirement ('x402 payment'). However, for a generic executor of arbitrary services it says nothing about idempotency, side effects, failure modes, or what happens if payment is missing.

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?

Three short sentences, each earning its place: what it does, what it returns, and the payment constraint. The action is front-loaded. It could be marginally tighter, but there is essentially no waste.

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?

No output schema exists, and the description compensates by describing the return payload. It also flags the x402 payment requirement, covering the key operational fact. Remaining gaps are error behavior and payment-flow specifics, which are minor for a tool whose parameters are fully documented.

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%, so both parameters (service_id, args) are already documented, including the pointer to get_service_schema. The description adds only the phrase 'with arguments' and adds no format, example, or constraint beyond the schema, so baseline 3 applies.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

States a specific verb and resource ('Execute any catalog service by ID with arguments'), which clearly separates execution from the introspection siblings like get_service_schema and list_services. It stops short of explicitly naming the sibling it complements, so it is clear but not sibling-differentiating in the description text itself.

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 only implied: the mention of get_service_schema inside the schema hints that this is the execution step that follows schema retrieval. The description itself gives no when-to-use, prerequisites, or when-not guidance, so an agent must infer the workflow.

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

get_catalogGet Full CatalogB
Read-only
Inspect

Full service catalog with complete param specs, return fields, prices, and cache TTLs. Free.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

TDQS

B3.4/5.0
Behavior3/5

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

readOnlyHint=true already tells the agent this is a safe read. The description adds the useful behavioral fact that the call is free, but says nothing about response size, pagination, or freshness despite being a 'full' catalog.

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?

Two short sentences, no filler, with the resource declared up front. The list of returned fields is compact and scannable, though the second fragment ('Free.') is stylistic rather than informative structure.

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?

With no output schema and no parameters, the description carries the burden of describing the return, and it does list the principal contents (param specs, return fields, prices, cache TTLs). It stops short of explaining shape or volume, which an agent consuming a 'full' catalog would want.

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 tool takes zero parameters, so there is nothing to disambiguate and the baseline is 4. The phrase 'complete param specs' refers to returned content, which is helpful framing but not a parameter constraint.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

States a clear resource ('full service catalog') and enumerates what it contains (param specs, return fields, prices, cache TTLs). It does not explicitly distinguish itself from siblings like list_services, list_categories, or get_service_schema, so an agent must infer that this is the complete-catalog variant.

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?

It notes the tool is 'Free,' which hints at a cost tradeoff, but gives no when-to-use guidance, no prerequisites, and never names an alternative such as list_services or search_services for narrower lookups.

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

get_service_schemaGet Service SchemaA
Read-only
Inspect

Get the full catalog entry (params, returns, cache TTL, price) for a specific service. Use after discovery to see exact request/response shapes before calling. Free.

ParametersJSON Schema
NameRequiredDescriptionDefault
service_idYesThe service id, e.g. "au-property-crime"

TDQS

A3.8/5.0
Behavior3/5

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

readOnlyHint=true already tells the agent this is a safe read, so the description's main added fact is that the call is "Free" — useful for deciding whether to call it liberally. It says nothing about auth, rate limits, or error behavior for a missing service_id.

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 short sentences, front-loaded with the core action, then the workflow guidance, then the cost note. Nothing is redundant and the trailing "Free." fragment carries real decision value.

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?

With no output schema, the description usefully previews the return payload (params, returns, cache TTL, price) so the agent knows what it gets back. Combined with the read-only annotation and fully documented single param, an agent has enough to call it 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?

There is a single parameter with 100% schema description coverage, including a concrete example ("au-property-crime"), so the schema carries the burden. The description only restates "for a specific service" and adds no id format or lookup guidance.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

States a specific verb and resource (get the full catalog entry for a specific service) and enumerates what the entry contains: params, returns, cache TTL, price. That enumeration distinguishes it from the broad get_catalog/list_services siblings, though no sibling is named explicitly.

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?

"Use after discovery to see exact request/response shapes before calling" gives a clear workflow position between discovery (search_services) and execution (call_service). It does not name the alternatives explicitly or state exclusions, so it stops short of a 5.

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

healthHealth CheckB
Read-only
Inspect

Server health check: status, registered services, endpoint map. Free.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

TDQS

B3.4/5.0
Behavior3/5

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

readOnlyHint=true already establishes this as a safe read, so the description carries a lower burden. It adds useful context beyond the annotation by disclosing the payload contents and that the call is free, but says nothing about latency, caching, or failure behavior.

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?

A single compact sentence with the core purpose front-loaded, followed by the returned fields. Nothing is wasted, though 'Free' reads as an afterthought appended to the payload list.

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 zero-parameter, no-output-schema read tool, the description covers what it is and what it returns. No output schema exists to explain return values, but the enumerated payload partially compensates; error handling and response shape remain unstated.

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 tool takes zero parameters, so per the rubric the baseline is 4. The description has no parameter details to add, and none are needed.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

States a specific resource (server health) and enumerates the content returned (status, registered services, endpoint map), so an agent can distinguish it from the service-discovery siblings at a glance. It stops short of explicitly naming which sibling to use instead, so it lands at 4 rather than 5.

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?

There is no explicit when-to-use guidance, no mention of prerequisites or alternatives, and no condition that selects this tool over call_service or get_catalog. 'Free' hints at cost but does not tell the agent when to invoke it.

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

list_categoriesList CategoriesA
Read-only
Inspect

List available service categories with counts and country coverage. Optional country filter to see which categories have services for a specific country. Free.

ParametersJSON Schema
NameRequiredDescriptionDefault
countryNoISO 3166-1 alpha-2 country code filter, e.g. "AU"

TDQS

A4/5.0
Behavior3/5

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

readOnlyHint already declares a safe read operation. The description adds that results include counts and country coverage, plus that it's free (useful for a paid API), but doesn't describe pagination or output shape. Adequate additional context.

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 short sentences, front-loaded with the core action, no filler. Every sentence earns its place.

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, single-optional-param tool, the description covers purpose, return content, and filter behavior. Only minor gaps (pagination, output shape) remain, and it's a list tool with no output schema so those are modest.

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 only parameter (country) is fully documented. The description reinforces the filter's purpose but adds no syntax or format detail beyond the schema. Baseline 3 applies.

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?

States a specific verb (List) plus resource (service categories) and what it returns (counts and country coverage). Distinguishable from siblings like list_services or get_catalog.

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?

Explains the optional country filter's purpose, giving clear context for when to include it. No explicit alternatives named, but the usage is well-implied.

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

list_servicesList ServicesA
Read-only
Inspect

List data services offered by this server: ids, countries, prices, and required params. Optional country filter (ISO 3166-1 alpha-2, e.g. "AU", "US", "GB"). Optional category filter (e.g. "crime", "weather", "econ"). Free.

ParametersJSON Schema
NameRequiredDescriptionDefault
countryNoISO 3166-1 alpha-2 country code filter, e.g. "AU"
categoryNoCategory filter, e.g. "crime", "weather", "econ". Use list_categories to see available categories.

TDQS

A3.8/5.0
Behavior4/5

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

readOnlyHint=true already establishes this is a safe read, but the description adds two pieces of behavioral context beyond annotations: the tool is "Free" (no cost to invoke) and it returns ids, countries, prices, and required params. Since there is no output schema, disclosing the return fields is genuinely useful. It stops short of describing pagination or result-size limits.

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?

A single well-ordered sentence: purpose and return contents first, then the two optional filters, then the cost marker. Every clause carries information and nothing is padded.

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?

With no output schema, the description compensates by naming the returned fields, and it covers both optional filters and the cost model. It is nearly complete for a simple read-only list tool; only pagination/result-size behavior and explicit sibling routing are absent.

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%, so both parameters are already documented with format examples in the schema itself. The description largely restates the filters and their examples (ISO 3166-1 alpha-2, "crime"/"weather"/"econ") without adding syntax or semantics beyond that. Baseline 3 applies when the schema does the heavy lifting.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description states a specific verb and resource ("List data services offered by this server") and enumerates what comes back (ids, countries, prices, required params). It is clearly a listing tool, though it does not explicitly contrast itself with siblings like search_services or get_catalog, leaving that distinction to inference.

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 through the optional filter descriptions (country, category), which tell the agent how to narrow results. However, there is no explicit when-to-use guidance, no mention of when to prefer search_services or get_catalog, and no stated prerequisites.

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

search_servicesSearch ServicesA
Read-only
Inspect

Search data services by keyword or natural language query using aliases and typo-tolerant indexing. Returns ranked results with match scores. Supports optional country and category filters. Free.

ParametersJSON Schema
NameRequiredDescriptionDefault
limitNoMax results (default 20)
queryYesSearch query, e.g. "unemployment in Australia" or "crime stats for NSW"
countryNoISO 3166-1 alpha-2 country code filter, e.g. "AU"
categoryNoCategory filter, e.g. "crime"

TDQS

A4.5/5.0
Behavior4/5

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

readOnlyHint already covers the read-only safety profile, and the description adds meaningful behavioral detail on top: aliases, typo-tolerant indexing, ranked results with match scores, optional filters, and that it is free. No contradiction 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?

Three short sentences, front-loaded with the core search function, followed by output behavior and filter options. Every sentence earns its place, with no filler or redundant schema text.

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?

The description covers query semantics, ranking/match-score output, available filters, and cost, while the schema fully documents parameters and their constraints. For a search tool without an output schema, this is sufficiently complete for an agent to invoke it correctly.

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 100%, so the schema handles the parameters themselves. The description still adds value by clarifying that the query is interpreted with natural-language, alias, and typo-tolerant semantics and by flagging country/category filters as optional.

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?

Description uses a specific verb ('Search') and a clear resource ('data services') and further specifies how the search behaves: keyword/natural language queries, aliases, and typo-tolerant indexing. This clearly distinguishes it from sibling tools like list_services and suggest_service.

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 opening phrase 'Search data services by keyword or natural language query' establishes when to use this tool: when looking up a service by free-form query rather than enumerating the catalog. It does not explicitly name alternatives or exclusion conditions, so it stops short of a 5.

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

suggest_serviceSuggest ServiceA
Read-only
Inspect

Resolve a natural-language request to the best catalog services. Returns explainable scores, matched reasons, and required parameters that are still missing. Free.

ParametersJSON Schema
NameRequiredDescriptionDefault
limitNoMax suggestions (default 5)
queryYesNatural-language request, e.g. "compare defense spending in Australia and New Zealand"
countryNoOptional country name or ISO code filter
categoryNoOptional category filter, e.g. "defense"

TDQS

A4/5.0
Behavior4/5

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

Annotations provide readOnlyHint=true, and the description adds useful behavioral detail: it returns explainable scores, matched reasons, and still-missing required parameters. It also notes the tool is free. This goes beyond annotation coverage without contradicting it.

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 compact sentences with no filler. The core purpose is front-loaded, output behavior is summarized, and the cost note is a single word. Every part earns its place.

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 tool with one required parameter, full schema coverage, and no output schema, the description provides the key output expectations. It could add explicit guidance on when to prefer it over search_services or suggest_related, but basic invocation is well supported.

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%, so the schema already documents all four parameters. The description adds minimal parameter-specific meaning beyond tying the query parameter to natural-language requests, which is the baseline case.

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 a specific verb and resource: resolve a natural-language request into catalog services. It also differentiates itself from siblings like search_services by emphasizing explainable scores, matched reasons, and missing required parameters.

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 intended use case is clear: natural-language requests that need the best matching catalog service. However, the description does not explicitly contrast it with alternatives such as search_services or suggest_related, nor does it say when not to use it.

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

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections.

  1. 1 tool update
    • Addedsuggest_service
  2. 124 tool updates
    • Removedar-cpi
    • Removedar-demographics
    • Removedar-gdp
    • Removedar-postcode-lookup
    • Removedar-public-holidays
    • Removedar-school-terms
    • Removedar-timezone
    • Removedar-unemployment
    • Removedar-weather
    • Removedau-abs-building-activity
    • Removedau-abs-building-approvals
    • Removedau-abs-demographics
    • Removedau-awe
    • Removedau-cash-rate
    • Removedau-cpi
    • Removedau-gdp
    • Removedau-income
    • Removedau-nsw-hazard
    • Removedau-postcode-lookup
    • Removedau-property-crime
    • Removedau-public-holidays
    • Removedau-school-terms
    • Removedau-timezone
    • Removedau-unemployment
    • Removedau-vacancies
    • Removedau-weather
    • Addedcall_service
    • Removedget_service_examples
    • Addedget_service_schema
    • Removedit-building-activity
    • Removedit-building-approvals
    • Removedit-cpi
    • Removedit-crime
    • Removedit-demographics
    • Removedit-earnings
    • Removedit-gdp
    • Removedit-hazard
    • Removedit-income
    • Removedit-policy-rate
    • Removedit-postcode-lookup
    • Removedit-public-holidays
    • Removedit-school-terms
    • Removedit-timezone
    • Removedit-unemployment
    • Removedit-vacancies
    • Removedit-weather
    • Removednz-business-demography
    • Removednz-crime
    • Removednz-demographics
    • Removednz-gdp
    • Removednz-household-expenditure
    • Removednz-income
    • Removednz-ocr
    • Removednz-place-lookup
    • Removednz-public-holidays
    • Removednz-school-terms
    • Removednz-timezone
    • Removednz-weather
    • Removedpl-building-activity
    • Removedpl-building-approvals
    • Removedpl-cpi
    • Removedpl-crime
    • Removedpl-demographics
    • Removedpl-earnings
    • Removedpl-gdp
    • Removedpl-hazard
    • Removedpl-income
    • Removedpl-policy-rate
    • Removedpl-postcode-lookup
    • Removedpl-public-holidays
    • Removedpl-school-terms
    • Removedpl-timezone
    • Removedpl-unemployment
    • Removedpl-vacancies
    • Removedpl-weather
    • Removeduk-cpi
    • Removeduk-crime
    • Removeduk-demographics
    • Removeduk-earnings
    • Removeduk-gdp
    • Removeduk-house-prices
    • Removeduk-income
    • Removeduk-postcode-lookup
    • Removeduk-public-holidays
    • Removeduk-school-terms
    • Removeduk-timezone
    • Removeduk-unemployment
    • Removeduk-vacancies
    • Removeduk-weather
    • Removedus-address-lookup
    • Removedus-building-activity
    • Removedus-cpi
    • Removedus-crime
    • Removedus-crime-state
    • Removedus-earnings
    • Removedus-gdp
    • Removedus-hazard
    • Removedus-policy-rate
    • Removedus-public-holidays
    • Removedus-school-terms
    • Removedus-social-vulnerability
    • Removedus-timezone
    • Removedus-unemployment
    • Removedus-vacancies
    • Removedus-weather
    • Removedus-weekly-earnings
    • Removeduy-building-permits
    • Removeduy-construction
    • Removeduy-cpi
    • Removeduy-crime
    • Removeduy-demographics
    • Removeduy-earnings
    • Removeduy-gdp
    • Removeduy-hazard
    • Removeduy-income
    • Removeduy-policy-rate
    • Removeduy-postcode
    • Removeduy-public-holidays
    • Removeduy-regional-demographics
    • Removeduy-school-terms
    • Removeduy-timezone
    • Removeduy-unemployment
    • Removeduy-vacancies
    • Removeduy-weather
  3. 3 tool updates
    • Changedus-hazard4 fields changed
      • addedInput schema / properties / county
        Added value: +{
        +  "description": "County name, e.g. Los Angeles",
        +  "type": "string"
        +}
      • changedInput schema / properties / county_fips / description
        Previous value: -"Five-digit state-county FIPS code"New value: +"Five-digit state-county FIPS code (use this OR state+county)"
      • addedInput schema / properties / state
        Added value: +{
        +  "description": "State 2-letter code or full name (use this OR county_fips)",
        +  "type": "string"
        +}
      • removedInput schema / required
        Removed value: -[
        -  "county_fips"
        -]
    • Changedus-social-vulnerability4 fields changed
      • addedInput schema / properties / county
        Added value: +{
        +  "description": "County name, e.g. Los Angeles",
        +  "type": "string"
        +}
      • changedInput schema / properties / county_fips / description
        Previous value: -"Five-digit state-county FIPS code"New value: +"Five-digit state-county FIPS code (use this OR state+county)"
      • addedInput schema / properties / state
        Added value: +{
        +  "description": "State 2-letter code or full name (use this OR county_fips)",
        +  "type": "string"
        +}
      • removedInput schema / required
        Removed value: -[
        -  "county_fips"
        -]
    • Changedus-weather4 fields changed
      • addedInput schema / properties / city
        Added value: +{
        +  "description": "Supported US city name, e.g. San Francisco, New York City",
        +  "type": "string"
        +}
      • changedInput schema / properties / latitude / description
        Previous value: -"Latitude from -90 to 90"New value: +"Latitude from -90 to 90 (required unless city given)"
      • changedInput schema / properties / longitude / description
        Previous value: -"Longitude from -180 to 180"New value: +"Longitude from -180 to 180 (required unless city given)"
      • removedInput schema / required
        Removed value: -[
        -  "latitude",
        -  "longitude"
        -]
  4. 2 tool updates
    • Changedit-demographics1 field changed
      • changedInput schema / properties / region / description
        Previous value: -"National only; regional values return 400"New value: +"National (default) or an Italian region, e.g. \"Lombardia\", \"Lazio\", \"Sicilia\""
    • Changedpl-demographics1 field changed
      • changedInput schema / properties / region / description
        Previous value: -"National only; regional values return 400"New value: +"National (default) or a voivodeship, e.g. \"Mazowieckie\", \"Małopolskie\", \"Śląskie\""
  5. 5 tool updates
    • Addedget_service_examples
    • Addedlist_categories
    • Changedlist_services1 field changed
      • addedInput schema / properties / category
        Added value: +{
        +  "description": "Category filter, e.g. \"crime\", \"weather\", \"econ\". Use list_categories to see available categories.",
        +  "type": "string"
        +}
    • Addedsearch_services
    • Addedsuggest_related
  6. 128 tool updates
    • Changedar-cpi1 field changed
      • changedInput schema / $schema
        Previous value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
    • Changedar-demographics1 field changed
      • changedInput schema / $schema
        Previous value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
    • Changedar-gdp1 field changed
      • changedInput schema / $schema
        Previous value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
    • Changedar-postcode-lookup1 field changed
      • changedInput schema / $schema
        Previous value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
    • Changedar-public-holidays1 field changed
      • changedInput schema / $schema
        Previous value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
    • Changedar-school-terms1 field changed
      • changedInput schema / $schema
        Previous value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
    • Changedar-timezone1 field changed
      • changedInput schema / $schema
        Previous value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
    • Changedar-unemployment1 field changed
      • changedInput schema / $schema
        Previous value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
    • Changedar-weather1 field changed
      • changedInput schema / $schema
        Previous value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
    • Changedau-abs-building-activity1 field changed
      • changedInput schema / $schema
        Previous value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
    • Changedau-abs-building-approvals1 field changed
      • changedInput schema / $schema
        Previous value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
    • Changedau-abs-demographics1 field changed
      • changedInput schema / $schema
        Previous value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
    • Changedau-awe1 field changed
      • changedInput schema / $schema
        Previous value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
    • Changedau-cash-rate1 field changed
      • changedInput schema / $schema
        Previous value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
    • Changedau-cpi1 field changed
      • changedInput schema / $schema
        Previous value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
    • Changedau-gdp1 field changed
      • changedInput schema / $schema
        Previous value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
    • Changedau-income1 field changed
      • changedInput schema / $schema
        Previous value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
    • Changedau-nsw-hazard1 field changed
      • changedInput schema / $schema
        Previous value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
    • Changedau-postcode-lookup1 field changed
      • changedInput schema / $schema
        Previous value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
    • Changedau-property-crime1 field changed
      • changedInput schema / $schema
        Previous value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
    • Changedau-public-holidays1 field changed
      • changedInput schema / $schema
        Previous value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
    • Changedau-school-terms1 field changed
      • changedInput schema / $schema
        Previous value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
    • Changedau-timezone1 field changed
      • changedInput schema / $schema
        Previous value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
    • Changedau-unemployment1 field changed
      • changedInput schema / $schema
        Previous value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
    • Changedau-vacancies1 field changed
      • changedInput schema / $schema
        Previous value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
    • Changedau-weather1 field changed
      • changedInput schema / $schema
        Previous value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
    • Changedget_catalog1 field changed
      • removedInput schema / $schema
        Removed value: -"http://json-schema.org/draft-07/schema#"
    • Changedhealth1 field changed
      • removedInput schema / $schema
        Removed value: -"http://json-schema.org/draft-07/schema#"
    • Changedit-building-activity1 field changed
      • changedInput schema / $schema
        Previous value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
    • Changedit-building-approvals1 field changed
      • changedInput schema / $schema
        Previous value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
    • Changedit-cpi1 field changed
      • changedInput schema / $schema
        Previous value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
    • Changedit-crime1 field changed
      • changedInput schema / $schema
        Previous value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
    • Changedit-demographics1 field changed
      • changedInput schema / $schema
        Previous value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
    • Changedit-earnings1 field changed
      • changedInput schema / $schema
        Previous value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
    • Changedit-gdp1 field changed
      • changedInput schema / $schema
        Previous value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
    • Changedit-hazard1 field changed
      • changedInput schema / $schema
        Previous value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
    • Changedit-income1 field changed
      • changedInput schema / $schema
        Previous value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
    • Changedit-policy-rate1 field changed
      • changedInput schema / $schema
        Previous value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
    • Changedit-postcode-lookup1 field changed
      • changedInput schema / $schema
        Previous value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
    • Changedit-public-holidays1 field changed
      • changedInput schema / $schema
        Previous value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
    • Changedit-school-terms1 field changed
      • changedInput schema / $schema
        Previous value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
    • Changedit-timezone1 field changed
      • changedInput schema / $schema
        Previous value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
    • Changedit-unemployment1 field changed
      • changedInput schema / $schema
        Previous value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
    • Changedit-vacancies1 field changed
      • changedInput schema / $schema
        Previous value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
    • Changedit-weather1 field changed
      • changedInput schema / $schema
        Previous value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
    • Changedlist_services1 field changed
      • changedInput schema / $schema
        Previous value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
    • Changednz-business-demography1 field changed
      • changedInput schema / $schema
        Previous value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
    • Changednz-crime1 field changed
      • changedInput schema / $schema
        Previous value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
    • Changednz-demographics1 field changed
      • changedInput schema / $schema
        Previous value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
    • Changednz-gdp1 field changed
      • changedInput schema / $schema
        Previous value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
    • Changednz-household-expenditure1 field changed
      • changedInput schema / $schema
        Previous value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
    • Changednz-income1 field changed
      • changedInput schema / $schema
        Previous value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
    • Changednz-ocr1 field changed
      • changedInput schema / $schema
        Previous value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
    • Changednz-place-lookup1 field changed
      • changedInput schema / $schema
        Previous value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
    • Changednz-public-holidays1 field changed
      • changedInput schema / $schema
        Previous value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
    • Changednz-school-terms1 field changed
      • changedInput schema / $schema
        Previous value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
    • Changednz-timezone1 field changed
      • changedInput schema / $schema
        Previous value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
    • Changednz-weather1 field changed
      • changedInput schema / $schema
        Previous value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
    • Changedpl-building-activity1 field changed
      • changedInput schema / $schema
        Previous value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
    • Changedpl-building-approvals1 field changed
      • changedInput schema / $schema
        Previous value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
    • Changedpl-cpi1 field changed
      • changedInput schema / $schema
        Previous value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
    • Changedpl-crime1 field changed
      • changedInput schema / $schema
        Previous value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
    • Changedpl-demographics1 field changed
      • changedInput schema / $schema
        Previous value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
    • Changedpl-earnings1 field changed
      • changedInput schema / $schema
        Previous value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
    • Changedpl-gdp1 field changed
      • changedInput schema / $schema
        Previous value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
    • Changedpl-hazard1 field changed
      • changedInput schema / $schema
        Previous value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
    • Changedpl-income1 field changed
      • changedInput schema / $schema
        Previous value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
    • Changedpl-policy-rate1 field changed
      • changedInput schema / $schema
        Previous value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
    • Changedpl-postcode-lookup1 field changed
      • changedInput schema / $schema
        Previous value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
    • Changedpl-public-holidays1 field changed
      • changedInput schema / $schema
        Previous value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
    • Changedpl-school-terms1 field changed
      • changedInput schema / $schema
        Previous value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
    • Changedpl-timezone1 field changed
      • changedInput schema / $schema
        Previous value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
    • Changedpl-unemployment1 field changed
      • changedInput schema / $schema
        Previous value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
    • Changedpl-vacancies1 field changed
      • changedInput schema / $schema
        Previous value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
    • Changedpl-weather1 field changed
      • changedInput schema / $schema
        Previous value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
    • Changeduk-cpi1 field changed
      • changedInput schema / $schema
        Previous value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
    • Changeduk-crime1 field changed
      • changedInput schema / $schema
        Previous value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
    • Changeduk-demographics1 field changed
      • changedInput schema / $schema
        Previous value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
    • Changeduk-earnings1 field changed
      • changedInput schema / $schema
        Previous value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
    • Changeduk-gdp1 field changed
      • changedInput schema / $schema
        Previous value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
    • Changeduk-house-prices1 field changed
      • changedInput schema / $schema
        Previous value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
    • Changeduk-income1 field changed
      • changedInput schema / $schema
        Previous value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
    • Changeduk-postcode-lookup1 field changed
      • changedInput schema / $schema
        Previous value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
    • Changeduk-public-holidays1 field changed
      • changedInput schema / $schema
        Previous value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
    • Changeduk-school-terms1 field changed
      • changedInput schema / $schema
        Previous value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
    • Changeduk-timezone1 field changed
      • changedInput schema / $schema
        Previous value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
    • Changeduk-unemployment1 field changed
      • changedInput schema / $schema
        Previous value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
    • Changeduk-vacancies1 field changed
      • changedInput schema / $schema
        Previous value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
    • Changeduk-weather1 field changed
      • changedInput schema / $schema
        Previous value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
    • Changedus-address-lookup1 field changed
      • changedInput schema / $schema
        Previous value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
    • Changedus-building-activity1 field changed
      • changedInput schema / $schema
        Previous value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
    • Removedus-building-permits
    • Changedus-cpi1 field changed
      • changedInput schema / $schema
        Previous value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
    • Changedus-crime1 field changed
      • changedInput schema / $schema
        Previous value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
    • Changedus-crime-state1 field changed
      • changedInput schema / $schema
        Previous value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
    • Removedus-demographics
    • Changedus-earnings1 field changed
      • changedInput schema / $schema
        Previous value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
    • Changedus-gdp1 field changed
      • changedInput schema / $schema
        Previous value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
    • Changedus-hazard1 field changed
      • changedInput schema / $schema
        Previous value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
    • Removedus-income
    • Changedus-policy-rate1 field changed
      • changedInput schema / $schema
        Previous value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
    • Changedus-public-holidays1 field changed
      • changedInput schema / $schema
        Previous value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
    • Changedus-school-terms1 field changed
      • changedInput schema / $schema
        Previous value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
    • Changedus-social-vulnerability1 field changed
      • changedInput schema / $schema
        Previous value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
    • Changedus-timezone1 field changed
      • changedInput schema / $schema
        Previous value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
    • Changedus-unemployment1 field changed
      • changedInput schema / $schema
        Previous value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
    • Changedus-vacancies1 field changed
      • changedInput schema / $schema
        Previous value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
    • Changedus-weather1 field changed
      • changedInput schema / $schema
        Previous value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
    • Changedus-weekly-earnings1 field changed
      • changedInput schema / $schema
        Previous value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
    • Removedus-zip-lookup
    • Changeduy-building-permits1 field changed
      • changedInput schema / $schema
        Previous value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
    • Changeduy-construction1 field changed
      • changedInput schema / $schema
        Previous value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
    • Changeduy-cpi1 field changed
      • changedInput schema / $schema
        Previous value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
    • Changeduy-crime1 field changed
      • changedInput schema / $schema
        Previous value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
    • Changeduy-demographics1 field changed
      • changedInput schema / $schema
        Previous value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
    • Changeduy-earnings1 field changed
      • changedInput schema / $schema
        Previous value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
    • Changeduy-gdp1 field changed
      • changedInput schema / $schema
        Previous value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
    • Changeduy-hazard1 field changed
      • changedInput schema / $schema
        Previous value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
    • Changeduy-income1 field changed
      • changedInput schema / $schema
        Previous value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
    • Changeduy-policy-rate1 field changed
      • changedInput schema / $schema
        Previous value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
    • Changeduy-postcode1 field changed
      • changedInput schema / $schema
        Previous value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
    • Changeduy-public-holidays1 field changed
      • changedInput schema / $schema
        Previous value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
    • Changeduy-regional-demographics1 field changed
      • changedInput schema / $schema
        Previous value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
    • Changeduy-school-terms1 field changed
      • changedInput schema / $schema
        Previous value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
    • Changeduy-timezone1 field changed
      • changedInput schema / $schema
        Previous value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
    • Changeduy-unemployment1 field changed
      • changedInput schema / $schema
        Previous value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
    • Changeduy-vacancies1 field changed
      • changedInput schema / $schema
        Previous value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
    • Changeduy-weather1 field changed
      • changedInput schema / $schema
        Previous value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
  7. 18 tool updates
    • Addedpl-building-activity
    • Addedpl-building-approvals
    • Addedpl-cpi
    • Addedpl-crime
    • Addedpl-demographics
    • Addedpl-earnings
    • Addedpl-gdp
    • Addedpl-hazard
    • Addedpl-income
    • Addedpl-policy-rate
    • Addedpl-postcode-lookup
    • Addedpl-public-holidays
    • Addedpl-school-terms
    • Addedpl-timezone
    • Addedpl-unemployment
    • Addedpl-vacancies
    • Addedpl-weather
    • Changeduy-weather1 field changed
      • changedInput schema / properties / city / description
        Previous value: -"Montevideo, Salto, Paysandu, or Maldonado"New value: +"Montevideo, Salto, Paysandu, Maldonado, or Punta del Este; accents and case are normalized"
  8. 12 tool updates
    • Changedit-building-activity1 field changed
      • changedInput schema / properties / region / description
        Previous value: -"National (default)"New value: +"National only; regional values return 400"
    • Changedit-building-approvals1 field changed
      • changedInput schema / properties / region / description
        Previous value: -"National (default)"New value: +"National only; regional values return 400"
    • Changedit-cpi1 field changed
      • changedInput schema / properties / region / description
        Previous value: -"National (default)"New value: +"National only; regional values return 400"
    • Changedit-crime1 field changed
      • changedInput schema / properties / region / description
        Previous value: -"National (default)"New value: +"National only; regional values return 400"
    • Changedit-demographics1 field changed
      • changedInput schema / properties / region / description
        Previous value: -"National (default)"New value: +"National only; regional values return 400"
    • Changedit-earnings1 field changed
      • changedInput schema / properties / region / description
        Previous value: -"National (default)"New value: +"National only; regional values return 400"
    • Changedit-gdp1 field changed
      • changedInput schema / properties / region / description
        Previous value: -"National (default)"New value: +"National only; regional values return 400"
    • Changedit-income1 field changed
      • changedInput schema / properties / region / description
        Previous value: -"National (default)"New value: +"National only; regional values return 400"
    • Changedit-postcode-lookup1 field changed
      • changedInput schema / properties / city / description
        Previous value: -"Major Italian city"New value: +"Supported English or Italian city name, e.g. Rome/Roma, Venice/Venezia"
    • Changedit-unemployment1 field changed
      • changedInput schema / properties / region / description
        Previous value: -"National (default)"New value: +"National only; regional values return 400"
    • Changedit-vacancies1 field changed
      • changedInput schema / properties / region / description
        Previous value: -"National (default)"New value: +"National only; regional values return 400"
    • Changedit-weather1 field changed
      • changedInput schema / properties / city / description
        Previous value: -"Rome, Milan, Naples, Turin, or Palermo"New value: +"Supported English or Italian city name, e.g. Rome/Roma, Milan/Milano, Venice/Venezia"
  9. 17 tool updates
    • Addedit-building-activity
    • Addedit-building-approvals
    • Addedit-cpi
    • Addedit-crime
    • Addedit-demographics
    • Addedit-earnings
    • Addedit-gdp
    • Addedit-hazard
    • Addedit-income
    • Addedit-policy-rate
    • Addedit-postcode-lookup
    • Addedit-public-holidays
    • Addedit-school-terms
    • Addedit-timezone
    • Addedit-unemployment
    • Addedit-vacancies
    • Addedit-weather
  10. 9 tool updates
    • Addeduy-building-permits
    • Addeduy-construction
    • Addeduy-crime
    • Addeduy-earnings
    • Addeduy-hazard
    • Addeduy-income
    • Addeduy-postcode
    • Addeduy-regional-demographics
    • Addeduy-vacancies
  11. 3 tool updates
    • Addeduy-cpi
    • Addeduy-policy-rate
    • Addeduy-unemployment
  12. 7 tool updates
    • Addedus-crime-state
    • Addeduy-demographics
    • Addeduy-gdp
    • Addeduy-public-holidays
    • Addeduy-school-terms
    • Addeduy-timezone
    • Addeduy-weather
  13. 17 tool updates
    • Addedus-address-lookup
    • Addedus-building-activity
    • Addedus-building-permits
    • Addedus-crime
    • Changedus-demographics1 field changed
      • changedInput schema / properties / region / description
        Previous value: -"National (default); US is accepted as an alias"New value: +"National, US, a state abbreviation, or a state name"
    • Addedus-earnings
    • Addedus-hazard
    • Addedus-income
    • Addedus-policy-rate
    • Addedus-public-holidays
    • Addedus-school-terms
    • Addedus-social-vulnerability
    • Addedus-timezone
    • Addedus-vacancies
    • Addedus-weather
    • Addedus-weekly-earnings
    • Addedus-zip-lookup
  14. 4 tool updates
    • Addedar-gdp
    • Addedau-gdp
    • Addednz-gdp
    • Addeduk-gdp
  15. 4 tool updates
    • Addedus-cpi
    • Addedus-demographics
    • Addedus-gdp
    • Addedus-unemployment
  16. 1 tool update
    • Changednz-household-expenditure1 field changed
      • changedInput schema / properties / category / description
        Previous value: -"NZHEC category code (e.g. \"01\" Food, \"02\" Alcohol, \"03\" Clothing). Optional — omit for full latest-year breakdown."New value: +"NZHEC category code or label (e.g. \"01\", \"Food\", \"02\", \"Alcohol\"). Optional — omit for full latest-year breakdown."
  17. 8 tool updates
    • Addedar-cpi
    • Addedar-demographics
    • Addedar-postcode-lookup
    • Addedar-public-holidays
    • Addedar-school-terms
    • Addedar-timezone
    • Addedar-unemployment
    • Addedar-weather
  18. 3 tool updates
    • Addeduk-demographics
    • Addeduk-house-prices
    • Addeduk-income

Related MCP Connectors

Related MCP Servers

  • A
    license
    A
    quality
    F
    maintenance
    Cited Australian stats via the ausdata.io gateway — stable AU.* series IDs, source_url + retrieved_at on every response. Free tier. Not a data broker; upgrade for Embed / signed / webhooks.
    28
    76 npm
    2
    MIT
  • A
    license
    A
    quality
    B
    maintenance
    One-call Australian tax data plumbing via the ATO — cited responses for tax and super context, not a data broker.
    7
    94 PyPI
    MIT
  • A
    license
    A
    quality
    A
    maintenance
    MCP server for structured Australian macroeconomic and financial data from the Australian Bureau of Statistics (ABS), the Reserve Bank of Australia (RBA), and the Australian Prudential Regulation Authority (APRA).
    2
    14
    112 PyPI
    4
    MIT
Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

Resources