Data To Agents
Server Details
A wide range of validated governmental statistics and datasets for Australia, NZ, US, Argentina, Uraguay
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP · MCP 2025-11-25
- URL
TDQS
Scored across 9 tools
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.
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.
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.
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 toolscall_serviceCall ServiceAInspect
Execute any catalog service by ID with arguments. Returns the service payload as text JSON plus structuredContent. Requires x402 payment in production.
| Name | Required | Description | Default |
|---|---|---|---|
| args | Yes | Arguments for the service, matching the service schema (see get_service_schema) | |
| service_id | Yes | The service id to call, e.g. "au-property-crime" |
TDQS
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.
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.
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.
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.
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.
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 CatalogBRead-onlyInspect
Full service catalog with complete param specs, return fields, prices, and cache TTLs. Free.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
TDQS
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.
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.
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.
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.
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.
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 SchemaARead-onlyInspect
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.
| Name | Required | Description | Default |
|---|---|---|---|
| service_id | Yes | The service id, e.g. "au-property-crime" |
TDQS
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.
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.
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.
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.
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.
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 CheckBRead-onlyInspect
Server health check: status, registered services, endpoint map. Free.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
TDQS
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.
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.
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.
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.
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.
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 CategoriesARead-onlyInspect
List available service categories with counts and country coverage. Optional country filter to see which categories have services for a specific country. Free.
| Name | Required | Description | Default |
|---|---|---|---|
| country | No | ISO 3166-1 alpha-2 country code filter, e.g. "AU" |
TDQS
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.
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.
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.
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.
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.
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 ServicesARead-onlyInspect
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.
| Name | Required | Description | Default |
|---|---|---|---|
| country | No | ISO 3166-1 alpha-2 country code filter, e.g. "AU" | |
| category | No | Category filter, e.g. "crime", "weather", "econ". Use list_categories to see available categories. |
TDQS
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.
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.
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.
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.
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.
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 ServicesARead-onlyInspect
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.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Max results (default 20) | |
| query | Yes | Search query, e.g. "unemployment in Australia" or "crime stats for NSW" | |
| country | No | ISO 3166-1 alpha-2 country code filter, e.g. "AU" | |
| category | No | Category filter, e.g. "crime" |
TDQS
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.
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.
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.
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.
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.
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 ServiceARead-onlyInspect
Resolve a natural-language request to the best catalog services. Returns explainable scores, matched reasons, and required parameters that are still missing. Free.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Max suggestions (default 5) | |
| query | Yes | Natural-language request, e.g. "compare defense spending in Australia and New Zealand" | |
| country | No | Optional country name or ISO code filter | |
| category | No | Optional category filter, e.g. "defense" |
TDQS
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.
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.
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.
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.
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.
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 tool update
- Added
suggest_service
124 tool updates
- Removed
ar-cpi - Removed
ar-demographics - Removed
ar-gdp - Removed
ar-postcode-lookup - Removed
ar-public-holidays - Removed
ar-school-terms - Removed
ar-timezone - Removed
ar-unemployment - Removed
ar-weather - Removed
au-abs-building-activity - Removed
au-abs-building-approvals - Removed
au-abs-demographics - Removed
au-awe - Removed
au-cash-rate - Removed
au-cpi - Removed
au-gdp - Removed
au-income - Removed
au-nsw-hazard - Removed
au-postcode-lookup - Removed
au-property-crime - Removed
au-public-holidays - Removed
au-school-terms - Removed
au-timezone - Removed
au-unemployment - Removed
au-vacancies - Removed
au-weather - Added
call_service - Removed
get_service_examples - Added
get_service_schema - Removed
it-building-activity - Removed
it-building-approvals - Removed
it-cpi - Removed
it-crime - Removed
it-demographics - Removed
it-earnings - Removed
it-gdp - Removed
it-hazard - Removed
it-income - Removed
it-policy-rate - Removed
it-postcode-lookup - Removed
it-public-holidays - Removed
it-school-terms - Removed
it-timezone - Removed
it-unemployment - Removed
it-vacancies - Removed
it-weather - Removed
nz-business-demography - Removed
nz-crime - Removed
nz-demographics - Removed
nz-gdp - Removed
nz-household-expenditure - Removed
nz-income - Removed
nz-ocr - Removed
nz-place-lookup - Removed
nz-public-holidays - Removed
nz-school-terms - Removed
nz-timezone - Removed
nz-weather - Removed
pl-building-activity - Removed
pl-building-approvals - Removed
pl-cpi - Removed
pl-crime - Removed
pl-demographics - Removed
pl-earnings - Removed
pl-gdp - Removed
pl-hazard - Removed
pl-income - Removed
pl-policy-rate - Removed
pl-postcode-lookup - Removed
pl-public-holidays - Removed
pl-school-terms - Removed
pl-timezone - Removed
pl-unemployment - Removed
pl-vacancies - Removed
pl-weather - Removed
uk-cpi - Removed
uk-crime - Removed
uk-demographics - Removed
uk-earnings - Removed
uk-gdp - Removed
uk-house-prices - Removed
uk-income - Removed
uk-postcode-lookup - Removed
uk-public-holidays - Removed
uk-school-terms - Removed
uk-timezone - Removed
uk-unemployment - Removed
uk-vacancies - Removed
uk-weather - Removed
us-address-lookup - Removed
us-building-activity - Removed
us-cpi - Removed
us-crime - Removed
us-crime-state - Removed
us-earnings - Removed
us-gdp - Removed
us-hazard - Removed
us-policy-rate - Removed
us-public-holidays - Removed
us-school-terms - Removed
us-social-vulnerability - Removed
us-timezone - Removed
us-unemployment - Removed
us-vacancies - Removed
us-weather - Removed
us-weekly-earnings - Removed
uy-building-permits - Removed
uy-construction - Removed
uy-cpi - Removed
uy-crime - Removed
uy-demographics - Removed
uy-earnings - Removed
uy-gdp - Removed
uy-hazard - Removed
uy-income - Removed
uy-policy-rate - Removed
uy-postcode - Removed
uy-public-holidays - Removed
uy-regional-demographics - Removed
uy-school-terms - Removed
uy-timezone - Removed
uy-unemployment - Removed
uy-vacancies - Removed
uy-weather
3 tool updates
- Changed
us-hazard4 fields changed- added
Input schema / properties / countyAdded value: +{ + "description": "County name, e.g. Los Angeles", + "type": "string" +} - changed
Input schema / properties / county_fips / descriptionPrevious value: -"Five-digit state-county FIPS code"New value: +"Five-digit state-county FIPS code (use this OR state+county)" - added
Input schema / properties / stateAdded value: +{ + "description": "State 2-letter code or full name (use this OR county_fips)", + "type": "string" +} - removed
Input schema / requiredRemoved value: -[ - "county_fips" -]
- Changed
us-social-vulnerability4 fields changed- added
Input schema / properties / countyAdded value: +{ + "description": "County name, e.g. Los Angeles", + "type": "string" +} - changed
Input schema / properties / county_fips / descriptionPrevious value: -"Five-digit state-county FIPS code"New value: +"Five-digit state-county FIPS code (use this OR state+county)" - added
Input schema / properties / stateAdded value: +{ + "description": "State 2-letter code or full name (use this OR county_fips)", + "type": "string" +} - removed
Input schema / requiredRemoved value: -[ - "county_fips" -]
- Changed
us-weather4 fields changed- added
Input schema / properties / cityAdded value: +{ + "description": "Supported US city name, e.g. San Francisco, New York City", + "type": "string" +} - changed
Input schema / properties / latitude / descriptionPrevious value: -"Latitude from -90 to 90"New value: +"Latitude from -90 to 90 (required unless city given)" - changed
Input schema / properties / longitude / descriptionPrevious value: -"Longitude from -180 to 180"New value: +"Longitude from -180 to 180 (required unless city given)" - removed
Input schema / requiredRemoved value: -[ - "latitude", - "longitude" -]
2 tool updates
- Changed
it-demographics1 field changed- changed
Input schema / properties / region / descriptionPrevious value: -"National only; regional values return 400"New value: +"National (default) or an Italian region, e.g. \"Lombardia\", \"Lazio\", \"Sicilia\""
- Changed
pl-demographics1 field changed- changed
Input schema / properties / region / descriptionPrevious value: -"National only; regional values return 400"New value: +"National (default) or a voivodeship, e.g. \"Mazowieckie\", \"Małopolskie\", \"Śląskie\""
5 tool updates
- Added
get_service_examples - Added
list_categories - Changed
list_services1 field changed- added
Input schema / properties / categoryAdded value: +{ + "description": "Category filter, e.g. \"crime\", \"weather\", \"econ\". Use list_categories to see available categories.", + "type": "string" +}
- Added
search_services - Added
suggest_related
128 tool updates
- Changed
ar-cpi1 field changed- changed
Input schema / $schemaPrevious value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
- Changed
ar-demographics1 field changed- changed
Input schema / $schemaPrevious value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
- Changed
ar-gdp1 field changed- changed
Input schema / $schemaPrevious value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
- Changed
ar-postcode-lookup1 field changed- changed
Input schema / $schemaPrevious value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
- Changed
ar-public-holidays1 field changed- changed
Input schema / $schemaPrevious value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
- Changed
ar-school-terms1 field changed- changed
Input schema / $schemaPrevious value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
- Changed
ar-timezone1 field changed- changed
Input schema / $schemaPrevious value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
- Changed
ar-unemployment1 field changed- changed
Input schema / $schemaPrevious value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
- Changed
ar-weather1 field changed- changed
Input schema / $schemaPrevious value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
- Changed
au-abs-building-activity1 field changed- changed
Input schema / $schemaPrevious value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
- Changed
au-abs-building-approvals1 field changed- changed
Input schema / $schemaPrevious value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
- Changed
au-abs-demographics1 field changed- changed
Input schema / $schemaPrevious value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
- Changed
au-awe1 field changed- changed
Input schema / $schemaPrevious value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
- Changed
au-cash-rate1 field changed- changed
Input schema / $schemaPrevious value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
- Changed
au-cpi1 field changed- changed
Input schema / $schemaPrevious value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
- Changed
au-gdp1 field changed- changed
Input schema / $schemaPrevious value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
- Changed
au-income1 field changed- changed
Input schema / $schemaPrevious value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
- Changed
au-nsw-hazard1 field changed- changed
Input schema / $schemaPrevious value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
- Changed
au-postcode-lookup1 field changed- changed
Input schema / $schemaPrevious value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
- Changed
au-property-crime1 field changed- changed
Input schema / $schemaPrevious value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
- Changed
au-public-holidays1 field changed- changed
Input schema / $schemaPrevious value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
- Changed
au-school-terms1 field changed- changed
Input schema / $schemaPrevious value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
- Changed
au-timezone1 field changed- changed
Input schema / $schemaPrevious value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
- Changed
au-unemployment1 field changed- changed
Input schema / $schemaPrevious value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
- Changed
au-vacancies1 field changed- changed
Input schema / $schemaPrevious value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
- Changed
au-weather1 field changed- changed
Input schema / $schemaPrevious value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
- Changed
get_catalog1 field changed- removed
Input schema / $schemaRemoved value: -"http://json-schema.org/draft-07/schema#"
- Changed
health1 field changed- removed
Input schema / $schemaRemoved value: -"http://json-schema.org/draft-07/schema#"
- Changed
it-building-activity1 field changed- changed
Input schema / $schemaPrevious value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
- Changed
it-building-approvals1 field changed- changed
Input schema / $schemaPrevious value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
- Changed
it-cpi1 field changed- changed
Input schema / $schemaPrevious value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
- Changed
it-crime1 field changed- changed
Input schema / $schemaPrevious value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
- Changed
it-demographics1 field changed- changed
Input schema / $schemaPrevious value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
- Changed
it-earnings1 field changed- changed
Input schema / $schemaPrevious value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
- Changed
it-gdp1 field changed- changed
Input schema / $schemaPrevious value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
- Changed
it-hazard1 field changed- changed
Input schema / $schemaPrevious value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
- Changed
it-income1 field changed- changed
Input schema / $schemaPrevious value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
- Changed
it-policy-rate1 field changed- changed
Input schema / $schemaPrevious value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
- Changed
it-postcode-lookup1 field changed- changed
Input schema / $schemaPrevious value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
- Changed
it-public-holidays1 field changed- changed
Input schema / $schemaPrevious value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
- Changed
it-school-terms1 field changed- changed
Input schema / $schemaPrevious value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
- Changed
it-timezone1 field changed- changed
Input schema / $schemaPrevious value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
- Changed
it-unemployment1 field changed- changed
Input schema / $schemaPrevious value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
- Changed
it-vacancies1 field changed- changed
Input schema / $schemaPrevious value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
- Changed
it-weather1 field changed- changed
Input schema / $schemaPrevious value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
- Changed
list_services1 field changed- changed
Input schema / $schemaPrevious value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
- Changed
nz-business-demography1 field changed- changed
Input schema / $schemaPrevious value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
- Changed
nz-crime1 field changed- changed
Input schema / $schemaPrevious value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
- Changed
nz-demographics1 field changed- changed
Input schema / $schemaPrevious value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
- Changed
nz-gdp1 field changed- changed
Input schema / $schemaPrevious value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
- Changed
nz-household-expenditure1 field changed- changed
Input schema / $schemaPrevious value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
- Changed
nz-income1 field changed- changed
Input schema / $schemaPrevious value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
- Changed
nz-ocr1 field changed- changed
Input schema / $schemaPrevious value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
- Changed
nz-place-lookup1 field changed- changed
Input schema / $schemaPrevious value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
- Changed
nz-public-holidays1 field changed- changed
Input schema / $schemaPrevious value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
- Changed
nz-school-terms1 field changed- changed
Input schema / $schemaPrevious value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
- Changed
nz-timezone1 field changed- changed
Input schema / $schemaPrevious value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
- Changed
nz-weather1 field changed- changed
Input schema / $schemaPrevious value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
- Changed
pl-building-activity1 field changed- changed
Input schema / $schemaPrevious value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
- Changed
pl-building-approvals1 field changed- changed
Input schema / $schemaPrevious value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
- Changed
pl-cpi1 field changed- changed
Input schema / $schemaPrevious value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
- Changed
pl-crime1 field changed- changed
Input schema / $schemaPrevious value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
- Changed
pl-demographics1 field changed- changed
Input schema / $schemaPrevious value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
- Changed
pl-earnings1 field changed- changed
Input schema / $schemaPrevious value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
- Changed
pl-gdp1 field changed- changed
Input schema / $schemaPrevious value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
- Changed
pl-hazard1 field changed- changed
Input schema / $schemaPrevious value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
- Changed
pl-income1 field changed- changed
Input schema / $schemaPrevious value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
- Changed
pl-policy-rate1 field changed- changed
Input schema / $schemaPrevious value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
- Changed
pl-postcode-lookup1 field changed- changed
Input schema / $schemaPrevious value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
- Changed
pl-public-holidays1 field changed- changed
Input schema / $schemaPrevious value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
- Changed
pl-school-terms1 field changed- changed
Input schema / $schemaPrevious value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
- Changed
pl-timezone1 field changed- changed
Input schema / $schemaPrevious value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
- Changed
pl-unemployment1 field changed- changed
Input schema / $schemaPrevious value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
- Changed
pl-vacancies1 field changed- changed
Input schema / $schemaPrevious value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
- Changed
pl-weather1 field changed- changed
Input schema / $schemaPrevious value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
- Changed
uk-cpi1 field changed- changed
Input schema / $schemaPrevious value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
- Changed
uk-crime1 field changed- changed
Input schema / $schemaPrevious value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
- Changed
uk-demographics1 field changed- changed
Input schema / $schemaPrevious value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
- Changed
uk-earnings1 field changed- changed
Input schema / $schemaPrevious value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
- Changed
uk-gdp1 field changed- changed
Input schema / $schemaPrevious value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
- Changed
uk-house-prices1 field changed- changed
Input schema / $schemaPrevious value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
- Changed
uk-income1 field changed- changed
Input schema / $schemaPrevious value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
- Changed
uk-postcode-lookup1 field changed- changed
Input schema / $schemaPrevious value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
- Changed
uk-public-holidays1 field changed- changed
Input schema / $schemaPrevious value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
- Changed
uk-school-terms1 field changed- changed
Input schema / $schemaPrevious value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
- Changed
uk-timezone1 field changed- changed
Input schema / $schemaPrevious value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
- Changed
uk-unemployment1 field changed- changed
Input schema / $schemaPrevious value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
- Changed
uk-vacancies1 field changed- changed
Input schema / $schemaPrevious value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
- Changed
uk-weather1 field changed- changed
Input schema / $schemaPrevious value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
- Changed
us-address-lookup1 field changed- changed
Input schema / $schemaPrevious value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
- Changed
us-building-activity1 field changed- changed
Input schema / $schemaPrevious value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
- Removed
us-building-permits - Changed
us-cpi1 field changed- changed
Input schema / $schemaPrevious value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
- Changed
us-crime1 field changed- changed
Input schema / $schemaPrevious value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
- Changed
us-crime-state1 field changed- changed
Input schema / $schemaPrevious value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
- Removed
us-demographics - Changed
us-earnings1 field changed- changed
Input schema / $schemaPrevious value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
- Changed
us-gdp1 field changed- changed
Input schema / $schemaPrevious value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
- Changed
us-hazard1 field changed- changed
Input schema / $schemaPrevious value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
- Removed
us-income - Changed
us-policy-rate1 field changed- changed
Input schema / $schemaPrevious value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
- Changed
us-public-holidays1 field changed- changed
Input schema / $schemaPrevious value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
- Changed
us-school-terms1 field changed- changed
Input schema / $schemaPrevious value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
- Changed
us-social-vulnerability1 field changed- changed
Input schema / $schemaPrevious value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
- Changed
us-timezone1 field changed- changed
Input schema / $schemaPrevious value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
- Changed
us-unemployment1 field changed- changed
Input schema / $schemaPrevious value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
- Changed
us-vacancies1 field changed- changed
Input schema / $schemaPrevious value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
- Changed
us-weather1 field changed- changed
Input schema / $schemaPrevious value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
- Changed
us-weekly-earnings1 field changed- changed
Input schema / $schemaPrevious value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
- Removed
us-zip-lookup - Changed
uy-building-permits1 field changed- changed
Input schema / $schemaPrevious value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
- Changed
uy-construction1 field changed- changed
Input schema / $schemaPrevious value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
- Changed
uy-cpi1 field changed- changed
Input schema / $schemaPrevious value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
- Changed
uy-crime1 field changed- changed
Input schema / $schemaPrevious value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
- Changed
uy-demographics1 field changed- changed
Input schema / $schemaPrevious value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
- Changed
uy-earnings1 field changed- changed
Input schema / $schemaPrevious value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
- Changed
uy-gdp1 field changed- changed
Input schema / $schemaPrevious value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
- Changed
uy-hazard1 field changed- changed
Input schema / $schemaPrevious value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
- Changed
uy-income1 field changed- changed
Input schema / $schemaPrevious value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
- Changed
uy-policy-rate1 field changed- changed
Input schema / $schemaPrevious value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
- Changed
uy-postcode1 field changed- changed
Input schema / $schemaPrevious value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
- Changed
uy-public-holidays1 field changed- changed
Input schema / $schemaPrevious value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
- Changed
uy-regional-demographics1 field changed- changed
Input schema / $schemaPrevious value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
- Changed
uy-school-terms1 field changed- changed
Input schema / $schemaPrevious value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
- Changed
uy-timezone1 field changed- changed
Input schema / $schemaPrevious value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
- Changed
uy-unemployment1 field changed- changed
Input schema / $schemaPrevious value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
- Changed
uy-vacancies1 field changed- changed
Input schema / $schemaPrevious value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
- Changed
uy-weather1 field changed- changed
Input schema / $schemaPrevious value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
18 tool updates
- Added
pl-building-activity - Added
pl-building-approvals - Added
pl-cpi - Added
pl-crime - Added
pl-demographics - Added
pl-earnings - Added
pl-gdp - Added
pl-hazard - Added
pl-income - Added
pl-policy-rate - Added
pl-postcode-lookup - Added
pl-public-holidays - Added
pl-school-terms - Added
pl-timezone - Added
pl-unemployment - Added
pl-vacancies - Added
pl-weather - Changed
uy-weather1 field changed- changed
Input schema / properties / city / descriptionPrevious value: -"Montevideo, Salto, Paysandu, or Maldonado"New value: +"Montevideo, Salto, Paysandu, Maldonado, or Punta del Este; accents and case are normalized"
12 tool updates
- Changed
it-building-activity1 field changed- changed
Input schema / properties / region / descriptionPrevious value: -"National (default)"New value: +"National only; regional values return 400"
- Changed
it-building-approvals1 field changed- changed
Input schema / properties / region / descriptionPrevious value: -"National (default)"New value: +"National only; regional values return 400"
- Changed
it-cpi1 field changed- changed
Input schema / properties / region / descriptionPrevious value: -"National (default)"New value: +"National only; regional values return 400"
- Changed
it-crime1 field changed- changed
Input schema / properties / region / descriptionPrevious value: -"National (default)"New value: +"National only; regional values return 400"
- Changed
it-demographics1 field changed- changed
Input schema / properties / region / descriptionPrevious value: -"National (default)"New value: +"National only; regional values return 400"
- Changed
it-earnings1 field changed- changed
Input schema / properties / region / descriptionPrevious value: -"National (default)"New value: +"National only; regional values return 400"
- Changed
it-gdp1 field changed- changed
Input schema / properties / region / descriptionPrevious value: -"National (default)"New value: +"National only; regional values return 400"
- Changed
it-income1 field changed- changed
Input schema / properties / region / descriptionPrevious value: -"National (default)"New value: +"National only; regional values return 400"
- Changed
it-postcode-lookup1 field changed- changed
Input schema / properties / city / descriptionPrevious value: -"Major Italian city"New value: +"Supported English or Italian city name, e.g. Rome/Roma, Venice/Venezia"
- Changed
it-unemployment1 field changed- changed
Input schema / properties / region / descriptionPrevious value: -"National (default)"New value: +"National only; regional values return 400"
- Changed
it-vacancies1 field changed- changed
Input schema / properties / region / descriptionPrevious value: -"National (default)"New value: +"National only; regional values return 400"
- Changed
it-weather1 field changed- changed
Input schema / properties / city / descriptionPrevious value: -"Rome, Milan, Naples, Turin, or Palermo"New value: +"Supported English or Italian city name, e.g. Rome/Roma, Milan/Milano, Venice/Venezia"
17 tool updates
- Added
it-building-activity - Added
it-building-approvals - Added
it-cpi - Added
it-crime - Added
it-demographics - Added
it-earnings - Added
it-gdp - Added
it-hazard - Added
it-income - Added
it-policy-rate - Added
it-postcode-lookup - Added
it-public-holidays - Added
it-school-terms - Added
it-timezone - Added
it-unemployment - Added
it-vacancies - Added
it-weather
9 tool updates
- Added
uy-building-permits - Added
uy-construction - Added
uy-crime - Added
uy-earnings - Added
uy-hazard - Added
uy-income - Added
uy-postcode - Added
uy-regional-demographics - Added
uy-vacancies
3 tool updates
- Added
uy-cpi - Added
uy-policy-rate - Added
uy-unemployment
7 tool updates
- Added
us-crime-state - Added
uy-demographics - Added
uy-gdp - Added
uy-public-holidays - Added
uy-school-terms - Added
uy-timezone - Added
uy-weather
17 tool updates
- Added
us-address-lookup - Added
us-building-activity - Added
us-building-permits - Added
us-crime - Changed
us-demographics1 field changed- changed
Input schema / properties / region / descriptionPrevious value: -"National (default); US is accepted as an alias"New value: +"National, US, a state abbreviation, or a state name"
- Added
us-earnings - Added
us-hazard - Added
us-income - Added
us-policy-rate - Added
us-public-holidays - Added
us-school-terms - Added
us-social-vulnerability - Added
us-timezone - Added
us-vacancies - Added
us-weather - Added
us-weekly-earnings - Added
us-zip-lookup
4 tool updates
- Added
ar-gdp - Added
au-gdp - Added
nz-gdp - Added
uk-gdp
4 tool updates
- Added
us-cpi - Added
us-demographics - Added
us-gdp - Added
us-unemployment
1 tool update
- Changed
nz-household-expenditure1 field changed- changed
Input schema / properties / category / descriptionPrevious 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."
8 tool updates
- Added
ar-cpi - Added
ar-demographics - Added
ar-postcode-lookup - Added
ar-public-holidays - Added
ar-school-terms - Added
ar-timezone - Added
ar-unemployment - Added
ar-weather
3 tool updates
- Added
uk-demographics - Added
uk-house-prices - Added
uk-income
Related MCP Connectors
Official UK, US and Australia public datasets as filtered CSV, REST API and MCP for AI agents.
Australia data.gov.au open-data catalogue (CKAN)
Macroeconomic and other official data from 170+ publishers, resolved from natural language with provenance.
Normalized official data with provenance, aggregations, insights, free samples and agent access.
Related MCP Servers
- AlicenseAqualityFmaintenanceCited 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.2876 npm2MIT
- AlicenseAqualityBmaintenanceOne-call Australian tax data plumbing via the ATO — cited responses for tax and super context, not a data broker.794 PyPIMIT
- AlicenseAqualityAmaintenanceOne-call Australian prudential data plumbing via APRA — cited responses for banking, superannuation and insurance context, not a data broker.6151 PyPIMIT
- AlicenseAqualityAmaintenanceMCP 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).214112 PyPI4MIT
Glama MCP Gateway
Add one secure layer between your agents and this server.