@agentutility/mcp-locale 0.8.2 → 0.8.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -2
- package/dist/tools.generated.js +2 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -67,7 +67,7 @@ USDC on Base contract: `0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913`
|
|
|
67
67
|
| `current` | (0.01 USDC/call) Current weather API / instant weather by city name / weather current endpoint. Exact buyer-demand slug for city weather lookups: geocodes a city or place name, then returns current Open-Meteo temperature, feels-like, humidity, wind, precipitation, weather code, timezone, and optional short forecast. |
|
|
68
68
|
| `current-weather` | (0.005 USDC/call) Current weather lookup / live weather conditions / temperature, humidity, precipitation, wind, and WMO condition code for a latitude/longitude. Optional hourly and daily forecast included. |
|
|
69
69
|
| `current-weather-city` | (0.01 USDC/call) Current weather city lookup / city-name weather conditions. Geocodes a city name and returns current Open-Meteo conditions with optional forecast, timezone, and alternate place matches. |
|
|
70
|
-
| `earthquakes-recent` | (0.002 USDC/call) Earthquake feed. Returns recent earthquakes from USGS for any time window (hour, day, week, month) above a magnitude threshold. Includes location, magnitude, depth, tsunami flag. Each quake includes magnitude + type, depth (km), place, ISO8601 time, lat/lon, tsunami flag, USGS event URL, and felt-report count when available. Wraps USGS GeoJSON summary feeds
|
|
70
|
+
| `earthquakes-recent` | (0.002 USDC/call) Earthquake / recent earthquakes API / USGS earthquake feed. Returns recent earthquakes from USGS for any time window (hour, day, week, month) above a magnitude threshold. Includes location, magnitude, depth, tsunami flag. Each quake includes magnitude + type, depth (km), place, ISO8601 time, lat/lon, tsunami flag, USGS event URL, and felt-report count when available. Wraps USGS GeoJSON summary feeds - public domain, no auth. |
|
|
71
71
|
| `flight-status` | (0.01 USDC/call) Flight status / live aircraft position / flight tracker / ICAO24 lookup / callsign lookup / aircraft bounding-box / OpenSky Network state-vector wrapper. Pass icao24 (6-char hex transponder, e.g. 'a808c5'), a callsign (e.g. 'UAL124'), or a bbox {lamin,lamax,lomin,lomax}. Returns last-known position, altitude, speed, heading, on-ground flag, and origin country per aircraft. Live flight data from OpenSky Network. |
|
|
72
72
|
| `geocode` | (0.02 USDC/call) Geocode API / geocoder / forward geocode / address to coordinates / place name to latitude-longitude / postal-code lookup / OpenStreetMap Nominatim. Exact short alias for address-geocode so agents searching for 'geocode' can discover the same global address/place resolver. Converts a free-form address, postal code, place name, or POI into latitude/longitude, ranked matches, structured address fields, importance scores, and bounding boxes. |
|
|
73
73
|
| `holiday-lookup` | (0.002 USDC/call) Holiday calendar. Public holidays, bank holidays, and federal holidays for any country and year. ISO 3166-1 country codes. Returns date, local name, English name, type (public/observance/regional), and scope. Wraps the public Nager.Date API — no auth, commercial-OK. |
|
|
@@ -110,4 +110,4 @@ The agent never sees the payment flow — it just gets the result.
|
|
|
110
110
|
|
|
111
111
|
---
|
|
112
112
|
|
|
113
|
-
**Version:** 0.8.
|
|
113
|
+
**Version:** 0.8.3 · **License:** MIT
|
package/dist/tools.generated.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/** Auto-generated by scripts/generate-mcp-clusters.mjs. Do not edit by hand. */
|
|
2
2
|
export const CLUSTER_SLUG = "locale";
|
|
3
|
-
export const VERSION = "0.8.
|
|
3
|
+
export const VERSION = "0.8.3";
|
|
4
4
|
export const TOOLS = [
|
|
5
5
|
{
|
|
6
6
|
"name": "address-geocode",
|
|
@@ -518,7 +518,7 @@ export const TOOLS = [
|
|
|
518
518
|
{
|
|
519
519
|
"name": "earthquakes-recent",
|
|
520
520
|
"http_name": "earthquakes-recent",
|
|
521
|
-
"description": "(0.002 USDC/call) Earthquake feed. Returns recent earthquakes from USGS for any time window (hour, day, week, month) above a magnitude threshold. Includes location, magnitude, depth, tsunami flag. Each quake includes magnitude + type, depth (km), place, ISO8601 time, lat/lon, tsunami flag, USGS event URL, and felt-report count when available. Wraps USGS GeoJSON summary feeds
|
|
521
|
+
"description": "(0.002 USDC/call) Earthquake / recent earthquakes API / USGS earthquake feed. Returns recent earthquakes from USGS for any time window (hour, day, week, month) above a magnitude threshold. Includes location, magnitude, depth, tsunami flag. Each quake includes magnitude + type, depth (km), place, ISO8601 time, lat/lon, tsunami flag, USGS event URL, and felt-report count when available. Wraps USGS GeoJSON summary feeds - public domain, no auth.",
|
|
522
522
|
"method": "POST",
|
|
523
523
|
"input_schema": {
|
|
524
524
|
"type": "object",
|
package/package.json
CHANGED