File size: 118,090 Bytes
3464008 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 | import ISO2_TO_ISO3 from '../../../shared/iso2-to-iso3.js';
import { CHINA_MACRO_REQUIRED_SERIES } from '../../../shared/china-macro-contract.js';
import {
normalizeChinaMacroObservations,
normalizeChinaMacroPreflight,
validateChinaMacroAvailabilityBindings,
} from '../../../shared/china-macro-normalization';
import { getSourceProvenanceState } from '../../../shared/source-provenance';
import { CII_RISK_SCORE_CACHE_KEYS } from '../../_cii-risk-cache-keys.js';
// @ts-expect-error — generated Edge-safe JS mirror; authored types live in shared/bootstrap-tier-keys.d.ts
import { BOOTSTRAP_CACHE_KEYS } from '../../_bootstrap-tier-keys.js';
import { DEFAULT_LIST_LIMIT } from '../constants';
import {
argBool,
argNum,
argStr,
argStrList,
cacheEnvelope,
capArrays,
capNested,
capNestedMap,
ciIncludes,
compact,
filterMapValues,
mapNested,
matchesCode,
narrowArray,
narrowNested,
pickMapKeys,
pickMapKeysLike,
pickNestedMap,
selectDatasets,
summarizeData,
} from '../filters';
import type { ToolDef } from '../types';
import { utf8ByteLength } from '../utils';
import {
CHOKEPOINT_MONITOR_UI_URI,
CONFLICT_EVENTS_UI_URI,
FORECASTS_UI_URI,
MARKET_RADAR_UI_URI,
NATURAL_DISASTERS_UI_URI,
NEWS_INTELLIGENCE_UI_URI,
PREDICTION_MARKETS_UI_URI,
} from '../ui/registry';
// Iran-events domain sunset (war ended 2026-07). Default OFF: drop the dormant
// conflict:iran-events:v1 key from the get_conflict_events cache set so the MCP
// tool stops serving the stale snapshot that lingers for the key's 14-day TTL.
// The output schema still documents an iran-events field (harmless when absent).
// Set IRAN_EVENTS_ENABLED=true to restore. See api/health.js.
const IRAN_EVENTS_ENABLED = (process.env.IRAN_EVENTS_ENABLED ?? 'false').toLowerCase() === 'true';
// Leave headroom for the cache envelope (`cached_at`, `stale`, and `data`) so
// the dispatcher never replaces a useful conflict response with the generic
// `_budget_exceeded` envelope.
const CONFLICT_EVENTS_OUTPUT_BUDGET_BYTES = 128 * 1024;
const CONFLICT_EVENTS_DATA_BUDGET_BYTES = CONFLICT_EVENTS_OUTPUT_BUDGET_BYTES - 1024;
const CONFLICT_EVENT_LISTS = ['ucdp-events', 'iran-events', 'events'] as const;
function fitConflictEventsToBudget(data: Record<string, unknown>): void {
const lists = CONFLICT_EVENT_LISTS.flatMap((label) => {
const parent = data[label];
if (!parent || typeof parent !== 'object' || Array.isArray(parent)) return [];
const events = (parent as Record<string, unknown>).events;
return Array.isArray(events) ? [{ label, events }] : [];
});
const originalEventCount = lists.reduce((sum, { events }) => sum + events.length, 0);
if (originalEventCount === 0) return;
const byteLength = () => utf8ByteLength(JSON.stringify(data));
if (byteLength() <= CONFLICT_EVENTS_DATA_BUDGET_BYTES) return;
data.partial = true;
const truncation = {
reason: 'output_budget',
original_event_count: originalEventCount,
returned_event_count: 0,
};
data.truncation = truncation;
const caps = new Map(lists.map(({ label }) => [label, 0]));
const applyCaps = () => {
let returnedEventCount = 0;
for (const { label, events } of lists) {
const parent = data[label] as Record<string, unknown>;
const bounded = events.slice(0, caps.get(label) ?? 0);
parent.events = bounded;
returnedEventCount += bounded.length;
}
truncation.returned_event_count = returnedEventCount;
};
let low = 0;
let high = Math.max(...lists.map(({ events }) => events.length));
while (low < high) {
const mid = Math.ceil((low + high) / 2);
for (const { label } of lists) caps.set(label, mid);
applyCaps();
if (byteLength() <= CONFLICT_EVENTS_DATA_BUDGET_BYTES) low = mid;
else high = mid - 1;
}
for (const { label } of lists) caps.set(label, low);
applyCaps();
// Spend any remaining budget per feed. This preserves the fair common
// prefix above while ensuring one oversized feed cannot force every other
// source to return zero usable events.
for (const { label, events } of lists) {
let feedLow = caps.get(label) ?? 0;
let feedHigh = events.length;
while (feedLow < feedHigh) {
const mid = Math.ceil((feedLow + feedHigh) / 2);
caps.set(label, mid);
applyCaps();
if (byteLength() <= CONFLICT_EVENTS_DATA_BUDGET_BYTES) feedLow = mid;
else feedHigh = mid - 1;
}
caps.set(label, feedLow);
applyCaps();
}
}
function summarizeConflictEvents(data: Record<string, unknown>): Record<string, unknown> {
const summary = summarizeData(data);
if (utf8ByteLength(JSON.stringify(summary)) <= CONFLICT_EVENTS_DATA_BUDGET_BYTES) return summary;
const samples = CONFLICT_EVENT_LISTS.flatMap((label) => {
const parent = summary[label];
if (!parent || typeof parent !== 'object' || Array.isArray(parent)) return [];
const events = (parent as Record<string, unknown>).events;
if (!events || typeof events !== 'object' || Array.isArray(events)) return [];
const sample = (events as Record<string, unknown>).sample;
return Array.isArray(sample) ? [{ sample, original: [...sample] }] : [];
});
for (const { sample } of samples) sample.length = 0;
const maxSampleLength = Math.max(0, ...samples.map(({ original }) => original.length));
for (let index = 0; index < maxSampleLength; index++) {
for (const { sample, original } of samples) {
if (index >= original.length) continue;
sample.push(original[index]);
if (utf8ByteLength(JSON.stringify(summary)) > CONFLICT_EVENTS_DATA_BUDGET_BYTES) sample.pop();
}
}
return summary;
}
function addNewsSourceProvenance(value: unknown): unknown {
if (!Array.isArray(value)) return value;
return value.map((story) => {
if (!story || typeof story !== 'object' || Array.isArray(story)) return story;
const record = story as Record<string, unknown>;
const sourceName = typeof record.primarySource === 'string' ? record.primarySource.trim() : '';
return {
...record,
sourceProvenance: getSourceProvenanceState(sourceName),
};
});
}
function projectChinaMacroForMcp(value: unknown): unknown {
if (!value || typeof value !== 'object' || Array.isArray(value)) return null;
const macro = value as Record<string, unknown>;
const generatedAt = typeof macro.generatedAt === 'string' ? macro.generatedAt : '';
const rawObservations = Array.isArray(macro.observations) ? macro.observations : [];
const observations = normalizeChinaMacroObservations(rawObservations, Date.now(), generatedAt);
const decisions = normalizeChinaMacroPreflight(
Array.isArray(macro.sourceDecisions) ? macro.sourceDecisions : [],
generatedAt,
);
if (
macro.countryCode !== 'CN'
|| observations === null
|| decisions === null
|| !validateChinaMacroAvailabilityBindings(rawObservations, decisions)
) return null;
const launchReady = macro.launchReady === true && CHINA_MACRO_REQUIRED_SERIES.every(
(seriesId) => observations.some((observation) => (
observation.id === seriesId
&& observation.hasValue
&& !observation.stale
&& observation.unavailableReason === ''
&& observation.transportStatus === 'fresh'
)),
);
const degraded = observations.some((observation) => (
!observation.hasValue
|| observation.stale
|| observation.unavailableReason !== ''
|| observation.transportStatus !== 'fresh'
)) || decisions.some((decision) => decision.status !== 'accepted');
// Keep the existing unversioned MCP contract stable. The raw v2 snapshot
// contains an immutable vintage ledger and full provenance payloads; exposing
// those here would both break `indicators` clients and grow without a useful
// bound. A separately versioned MCP tool can expose that ledger later.
return {
countryCode: 'CN',
launchReady,
status: launchReady && !degraded ? 'ready' : 'degraded',
indicators: observations.map((observation) => ({
id: observation.id,
label: observation.label,
category: observation.category,
value: observation.hasValue ? observation.value : null,
priorValue: observation.hasPriorValue ? observation.priorValue : null,
comparisonValue: observation.hasComparisonValue ? observation.comparisonValue : null,
comparisonBasis: observation.comparisonBasis,
unit: observation.unit,
observationDate: observation.observationDate,
source: observation.source,
stale: observation.stale,
unavailableReason: observation.unavailableReason,
transportStatus: observation.transportStatus,
transportFailureReason: observation.transportFailureReason,
})),
};
}
export const CACHE_TOOLS: ToolDef[] = [
{
name: 'get_market_data',
_outputBudgetBytes: 131072,
description: 'Real-time equity quotes, commodity prices (including gold futures GC=F), crypto prices, forex FX rates (USD/EUR, USD/JPY etc.), sector performance, ETF flows, and Gulf market quotes from WorldMonitor\'s curated bootstrap cache.',
inputSchema: {
type: 'object',
properties: {
symbols: {
type: 'array',
items: { type: 'string' },
description: 'Tickers to keep, e.g. ["AAPL","GC=F","BTC"]. Case-insensitive; matches equity/commodity/crypto/gulf quotes, sector ETFs, and ETF-flow tickers. Omit for the full snapshot.',
},
asset_class: {
type: 'array',
items: { type: 'string', enum: ['equity', 'commodity', 'crypto', 'sectors', 'etf', 'gulf', 'sentiment'] },
description: 'Restrict the response to one or more asset classes. Omit for all.',
},
limit: { type: 'number', description: 'Cap each per-class quote list (stocks/commodities/crypto/gulf/sectors/ETF flows) to at most this many items (default 30, pass 0 for no cap).' },
},
required: [],
},
outputSchema: cacheEnvelope({
'stocks-bootstrap': {
type: ['object', 'null'],
properties: {
quotes: { type: 'array', items: { type: 'object', properties: { symbol: { type: 'string' }, price: { type: 'number' }, changePercent: { type: 'number' } } } },
finnhubSkipped: { type: 'boolean' },
skipReason: { type: 'string' },
rateLimited: { type: 'boolean' },
},
},
'commodities-bootstrap': {
type: ['object', 'null'],
properties: {
quotes: { type: 'array', items: { type: 'object', properties: { symbol: { type: 'string' }, price: { type: 'number' }, changePercent: { type: 'number' } } } },
},
},
crypto: {
type: ['object', 'null'],
properties: {
quotes: { type: 'array', items: { type: 'object', properties: { symbol: { type: 'string' }, price: { type: 'number' }, changePercent: { type: 'number' } } } },
},
},
sectors: {
type: ['object', 'null'],
properties: {
sectors: { type: 'array', items: { type: 'object', properties: { symbol: { type: 'string' }, name: { type: 'string' }, changePercent: { type: 'number' } } } },
valuations: { type: ['object', 'array', 'null'] },
},
},
'etf-flows': {
type: ['object', 'null'],
properties: {
timestamp: { type: ['string', 'number', 'null'] },
summary: { type: ['object', 'null'] },
etfs: { type: 'array', items: { type: 'object', properties: { ticker: { type: 'string' }, flow: { type: 'number' } } } },
rateLimited: { type: 'boolean' },
},
},
'gulf-quotes': {
type: ['object', 'null'],
properties: {
quotes: { type: 'array', items: { type: 'object', properties: { symbol: { type: 'string' }, price: { type: 'number' }, changePercent: { type: 'number' } } } },
rateLimited: { type: 'boolean' },
},
},
'fear-greed': {
type: ['object', 'null'],
properties: {
timestamp: { type: ['string', 'number', 'null'] },
composite: { type: ['object', 'number', 'null'], properties: {
score: { type: 'number' }, label: { type: 'string' }, previous: { type: ['number', 'null'] },
} },
categories: { type: ['object', 'array', 'null'] },
headerMetrics: { type: ['object', 'array', 'null'] },
sectorPerformance: { type: ['object', 'array', 'null'] },
unavailable: { type: 'boolean' },
},
},
}),
annotations: { readOnlyHint: true, destructiveHint: false, idempotentHint: true, openWorldHint: false },
_postFilter: (data, params) => {
const symbols = argStrList(params.symbols);
if (symbols.length > 0) {
for (const label of ['stocks-bootstrap', 'commodities-bootstrap', 'crypto', 'gulf-quotes']) {
narrowNested(data, label, 'quotes', (q) => matchesCode(q.symbol, symbols));
}
narrowNested(data, 'sectors', 'sectors', (s) => matchesCode(s.symbol, symbols));
narrowNested(data, 'etf-flows', 'etfs', (e) => matchesCode(e.ticker, symbols));
}
const limit = argNum(params.limit) ?? DEFAULT_LIST_LIMIT;
for (const label of ['stocks-bootstrap', 'commodities-bootstrap', 'crypto', 'gulf-quotes']) {
capNested(data, label, 'quotes', limit);
}
capNested(data, 'sectors', 'sectors', limit);
capNested(data, 'etf-flows', 'etfs', limit);
const cls = argStrList(params.asset_class);
if (cls.length > 0) {
const map: Record<string, string> = {
equity: 'stocks-bootstrap', commodity: 'commodities-bootstrap', crypto: 'crypto',
sectors: 'sectors', etf: 'etf-flows', gulf: 'gulf-quotes', sentiment: 'fear-greed',
};
return selectDatasets(data, compact(cls.map((c) => map[c])));
}
return data;
},
// MCP Apps (`io.modelcontextprotocol/ui`): links the tool to its interactive
// ui:// app shell. Single source of truth — registered in ../ui/registry.ts.
_uiResourceUri: MARKET_RADAR_UI_URI,
_cacheKeys: [
'market:stocks-bootstrap:v1',
'market:commodities-bootstrap:v1',
'market:crypto:v1',
'market:sectors:v2',
'market:etf-flows:v1',
'market:gulf-quotes:v1',
'market:fear-greed:v1',
],
_seedMetaKey: 'seed-meta:market:stocks',
_maxStaleMin: 30,
// NOTE: `GET /api/market/v1/get-gold-intelligence` is NOT covered here.
// The audit-time cross-reference matched on the single `market:commodities-bootstrap:v1`
// key shared between this tool and the gold-intel handler, but the handler also reads 4
// gold-specific keys (COT, gold-extended, gold-ETF-flows, gold-CB-reserves) that this
// tool's `_cacheKeys` does NOT expose. Excluded as `deferred-to-future-tool` in
// tests/mcp-api-parity.test.mjs until a future commodities-expansion tool bundles those.
_apiPaths: [
"GET /api/market/v1/get-fear-greed-index",
"GET /api/market/v1/get-sector-summary",
"GET /api/market/v1/list-commodity-quotes",
"GET /api/market/v1/list-crypto-quotes",
"GET /api/market/v1/list-etf-flows",
"GET /api/market/v1/list-gulf-quotes",
"GET /api/market/v1/list-market-quotes",
],
},
{
name: 'get_conflict_events',
_uiResourceUri: CONFLICT_EVENTS_UI_URI,
_outputBudgetBytes: CONFLICT_EVENTS_OUTPUT_BUDGET_BYTES,
description: 'Active armed conflict events (UCDP, Iran), unrest events with geo-coordinates, and country risk scores. Covers ongoing conflicts, protests, and instability indices worldwide.',
inputSchema: {
type: 'object',
properties: {
country: {
type: 'string',
description: 'Filter to one country — matches the country name on conflict/unrest events and the ISO 3166-1 alpha-2 region code on risk scores (case-insensitive).',
},
min_fatalities: {
type: 'number',
description: 'Drop events below this fatality count (UCDP deathsBest / unrest fatalities).',
},
limit: { type: 'number', description: 'Cap each event list to at most this many items (default 30, pass 0 for no cap).' },
},
required: [],
},
outputSchema: cacheEnvelope({
'ucdp-events': {
type: ['object', 'null'],
properties: {
events: { type: 'array', items: { type: 'object', properties: {
id: { type: 'string' }, dateStart: { type: ['number', 'string'] }, dateEnd: { type: ['number', 'string'] },
location: { type: 'object', properties: { latitude: { type: 'number' }, longitude: { type: 'number' } } },
country: { type: 'string' }, sideA: { type: 'string' }, sideB: { type: 'string' },
deathsBest: { type: 'number' }, deathsLow: { type: 'number' }, deathsHigh: { type: 'number' },
violenceType: { type: 'string' }, sourceOriginal: { type: 'string' },
} } },
fetchedAt: { type: ['number', 'string'] },
version: { type: ['string', 'number'] },
// Newest merged GED Candidate release, or null when the annual base is
// serving alone. A `+partial` suffix means the candidate was fetched
// incompletely.
candidateVersion: { type: ['string', 'null'] },
candidateComplete: { type: 'boolean' },
totalRaw: { type: 'number' },
filteredCount: { type: 'number' },
},
},
'iran-events': {
type: ['object', 'null'],
properties: {
events: { type: 'array', items: { type: 'object', properties: {
id: { type: 'string' }, country: { type: 'string' },
location: { type: 'object', properties: { latitude: { type: 'number' }, longitude: { type: 'number' } } },
} } },
scrapedAt: { type: ['number', 'string'] },
},
},
events: {
type: ['object', 'null'],
properties: {
events: { type: 'array', items: { type: 'object', properties: {
country: { type: 'string' }, fatalities: { type: 'number' },
location: { type: 'object', properties: { latitude: { type: 'number' }, longitude: { type: 'number' } } },
} } },
clusters: { type: ['array', 'object', 'null'] },
},
},
scores: {
type: ['object', 'null'],
properties: {
ciiScores: { type: 'array', items: { type: 'object', properties: { region: { type: 'string' }, score: { type: 'number' } } } },
strategicRisks: { type: ['array', 'object', 'null'] },
},
},
partial: { type: 'boolean', description: 'True when event lists were shortened to fit the MCP output budget.' },
truncation: {
type: 'object',
properties: {
reason: { type: 'string' },
original_event_count: { type: 'number' },
returned_event_count: { type: 'number' },
},
},
}),
annotations: { readOnlyHint: true, destructiveHint: false, idempotentHint: true, openWorldHint: false },
_summarize: summarizeConflictEvents,
_postFilter: (data, params) => {
const country = argStr(params.country);
const minFatal = argNum(params.min_fatalities);
const limit = (argNum(params.limit) ?? DEFAULT_LIST_LIMIT);
if (country) {
narrowNested(data, 'ucdp-events', 'events', (e) => ciIncludes(e.country, country));
narrowNested(data, 'events', 'events', (e) => ciIncludes(e.country, country));
narrowNested(data, 'scores', 'ciiScores', (s) => matchesCode(s.region, [country]));
}
if (minFatal != null) {
narrowNested(data, 'ucdp-events', 'events', (e) => (argNum(e.deathsBest) ?? 0) >= minFatal);
narrowNested(data, 'events', 'events', (e) => (argNum(e.fatalities) ?? 0) >= minFatal);
}
for (const label of CONFLICT_EVENT_LISTS) capNested(data, label, 'events', limit);
if (!argBool(params.summary) && !argStr(params.jmespath)) fitConflictEventsToBudget(data);
return data;
},
_cacheKeys: [
'conflict:ucdp-events:v1',
...(IRAN_EVENTS_ENABLED ? ['conflict:iran-events:v1'] : []),
'unrest:events:v1',
CII_RISK_SCORE_CACHE_KEYS.stale,
],
_seedMetaKey: 'seed-meta:conflict:ucdp-events',
_maxStaleMin: 30,
// Per-key budgets (#5864): unrest:events:v1 is materializer-backed since
// #5863 and was invisible to this envelope — a dead 15-min pipeline still
// reported stale:false to agents.
_freshnessChecks: [
{ key: 'seed-meta:conflict:ucdp-events', maxStaleMin: 30 }, // 15min cron × 2
{ key: 'seed-meta:unrest:events', maxStaleMin: 120 }, // matches api/health.js unrestEvents
],
// NOTE: `GET /api/intelligence/v1/get-risk-scores` is NOT covered here.
// The audit-time hint matched only this tool's conflict/risk cache keys,
// but the handler at server/worldmonitor/intelligence/v1/get-risk-scores.ts
// reads a broader cross-domain set (infra outages, climate anomalies,
// cyber threats, wildfires, GPS jamming, OREF history, security
// advisories, displacement, news insights, news threats, aviation,
// earthquakes, sanctions, temporal anomalies, and military CII). Excluded
// as `deferred-to-future-tool` -
// belongs in a future expanded_risk_scores composite tool, not here.
_apiPaths: [
"GET /api/conflict/v1/list-iran-events",
"GET /api/conflict/v1/list-ucdp-events",
"GET /api/unrest/v1/list-unrest-events",
],
},
{
name: 'get_aviation_status',
_outputBudgetBytes: 131072,
description: 'Airport delays, NOTAM airspace closures, and tracked military aircraft. Covers FAA delay data and active airspace restrictions.',
inputSchema: {
type: 'object',
properties: {
disrupted_only: {
type: 'boolean',
description: 'Drop airports with severity "normal" — keep only airports actually experiencing delays/closures. The bootstrap lists every monitored airport, so most rows are non-events without this.',
},
country: { type: 'string', description: 'Filter to one country by name (case-insensitive substring, e.g. "united states").' },
iata: { type: 'string', description: 'Filter to a single airport by IATA code (e.g. "JFK").' },
limit: { type: 'number', description: 'Cap the alert list to at most this many items (default 30, pass 0 for no cap).' },
},
required: [],
},
outputSchema: cacheEnvelope({
'delays-bootstrap': {
type: ['object', 'null'],
properties: {
alerts: { type: 'array', items: { type: 'object', properties: {
iata: { type: 'string' }, country: { type: 'string' },
severity: { type: 'string' }, name: { type: 'string' },
} } },
},
},
}),
annotations: { readOnlyHint: true, destructiveHint: false, idempotentHint: true, openWorldHint: false },
_postFilter: (data, params) => {
const country = argStr(params.country);
const iata = argStr(params.iata);
if (argBool(params.disrupted_only)) {
narrowNested(data, 'delays-bootstrap', 'alerts', (a) => argStr(a.severity) !== 'normal');
}
if (country) narrowNested(data, 'delays-bootstrap', 'alerts', (a) => ciIncludes(a.country, country));
if (iata) narrowNested(data, 'delays-bootstrap', 'alerts', (a) => argStr(a.iata) === iata);
capNested(data, 'delays-bootstrap', 'alerts', (argNum(params.limit) ?? DEFAULT_LIST_LIMIT));
return data;
},
_cacheKeys: ['aviation:delays-bootstrap:v2'],
_seedMetaKey: 'seed-meta:aviation:faa',
_maxStaleMin: 90,
_apiPaths: [],
},
{
name: 'get_news_intelligence',
_uiResourceUri: NEWS_INTELLIGENCE_UI_URI,
_outputBudgetBytes: 131072,
description: 'AI-classified geopolitical threat news summaries, GDELT intelligence signals, cross-source signals, and security advisories from WorldMonitor\'s intelligence layer.',
inputSchema: {
type: 'object',
properties: {
topic: {
type: 'string',
enum: ['conflict', 'economy', 'cyber', 'nuclear', 'intelligence', 'maritime'],
description: 'Filter GDELT intelligence to a single topic.',
},
category: { type: 'string', description: 'Filter top news stories to one category (e.g. "conflict", "economy"; fallback is "general").' },
country: { type: 'string', description: 'Filter top stories and travel advisories to one ISO 3166-1 alpha-2 country code (case-insensitive).' },
alerts_only: { type: 'boolean', description: 'Keep only top stories flagged as alerts.' },
limit: { type: 'number', description: 'Cap each list (top stories, signals, advisories) to at most this many items (default 30, pass 0 for no cap).' },
},
required: [],
},
outputSchema: cacheEnvelope({
insights: {
type: ['object', 'null'],
properties: {
topStories: { type: 'array', items: { type: 'object', properties: {
primaryTitle: { type: 'string' }, primarySource: { type: 'string' }, primaryLink: { type: 'string' },
pubDate: { type: 'string' }, sourceCount: { type: 'number' }, importanceScore: { type: 'number' },
velocity: { type: 'object', properties: {
level: { type: 'string' }, sourcesPerHour: { type: 'number' },
} },
category: { type: 'string' }, threatLevel: { type: 'string' },
countryCode: { type: ['string', 'null'] }, isAlert: { type: 'boolean' },
sourceProvenance: {
type: 'object',
properties: {
risk: { type: 'string', enum: ['low', 'medium', 'high', 'unknown'] },
type: { type: 'string', enum: ['wire', 'gov', 'intel', 'mainstream', 'market', 'tech', 'other', 'unknown'] },
riskDeclared: { type: 'boolean' },
typeDeclared: { type: 'boolean' },
riskReviewed: { type: 'boolean' },
typeReviewed: { type: 'boolean' },
stateAffiliated: { type: 'string' },
note: { type: 'string' },
},
required: ['risk', 'type', 'riskDeclared', 'typeDeclared', 'riskReviewed', 'typeReviewed'],
},
} } },
},
},
'gdelt-intel': {
type: ['object', 'null'],
properties: {
topics: { type: 'array', items: { type: 'object', properties: { id: { type: 'string' }, signals: { type: ['array', 'object'] } } } },
},
},
'cross-source-signals': {
type: ['object', 'null'],
properties: { signals: { type: 'array', items: { type: 'object' } } },
},
'advisories-bootstrap': {
type: ['object', 'null'],
properties: {
advisories: { type: 'array', items: { type: 'object', properties: { country: { type: 'string' }, level: { type: ['string', 'number'] } } } },
},
},
}),
annotations: { readOnlyHint: true, destructiveHint: false, idempotentHint: true, openWorldHint: false },
_postFilter: (data, params) => {
const topic = argStr(params.topic);
const category = argStr(params.category);
const countries = argStrList(params.country);
const limit = (argNum(params.limit) ?? DEFAULT_LIST_LIMIT);
mapNested(data, 'insights', 'topStories', addNewsSourceProvenance);
if (topic) narrowNested(data, 'gdelt-intel', 'topics', (t) => argStr(t.id) === topic);
if (category) narrowNested(data, 'insights', 'topStories', (s) => argStr(s.category) === category);
if (countries.length > 0) {
narrowNested(data, 'insights', 'topStories', (s) => matchesCode(s.countryCode, countries));
narrowNested(data, 'advisories-bootstrap', 'advisories', (a) => matchesCode(a.country, countries));
}
if (argBool(params.alerts_only)) narrowNested(data, 'insights', 'topStories', (s) => s.isAlert === true);
capNested(data, 'insights', 'topStories', limit);
capNested(data, 'cross-source-signals', 'signals', limit);
capNested(data, 'advisories-bootstrap', 'advisories', limit);
return data;
},
_cacheKeys: [
'news:insights:v1',
'intelligence:gdelt-intel:v1',
'intelligence:cross-source-signals:v1',
'intelligence:advisories-bootstrap:v1',
],
_seedMetaKey: 'seed-meta:news:insights',
_maxStaleMin: 30,
// Per-key budgets (#5864): the envelope used to gate on the insights meta
// alone, so a stalled GDELT materializer left agents reading stale:false
// for hours. Every bundled key now carries its own freshness budget,
// matching api/health.js.
_freshnessChecks: [
{ key: 'seed-meta:news:insights', maxStaleMin: 30 }, // 15min cron × 2
{ key: 'seed-meta:intelligence:gdelt-intel', maxStaleMin: 45 }, // 15min materializer; matches api/health.js
{ key: 'seed-meta:intelligence:cross-source-signals', maxStaleMin: 60 }, // 30min cron × 2
],
_apiPaths: [
"GET /api/intelligence/v1/list-cross-source-signals",
"GET /api/intelligence/v1/search-gdelt-documents",
],
},
{
name: 'get_natural_disasters',
_uiResourceUri: NATURAL_DISASTERS_UI_URI,
_outputBudgetBytes: 131072,
description: 'Recent earthquakes (USGS), active wildfires (NASA FIRMS), and natural hazard events. Includes magnitude, location, and threat severity.',
inputSchema: {
type: 'object',
properties: {
dataset: {
type: 'array',
items: { type: 'string', enum: ['earthquakes', 'wildfires', 'other'] },
description: 'Restrict to one or more hazard datasets (earthquakes / wildfires / other natural events). Omit for all.',
},
min_magnitude: { type: 'number', description: 'Drop earthquakes and natural events below this magnitude.' },
active_only: { type: 'boolean', description: 'Keep only natural events that are still active (not closed).' },
limit: { type: 'number', description: 'Cap each hazard list to at most this many items (default 30, pass 0 for no cap).' },
},
required: [],
},
outputSchema: cacheEnvelope({
earthquakes: {
type: ['object', 'null'],
properties: {
earthquakes: { type: 'array', items: { type: 'object', properties: {
id: { type: 'string' }, place: { type: 'string' }, magnitude: { type: 'number' },
depthKm: { type: 'number' }, occurredAt: { type: 'number' }, sourceUrl: { type: 'string' },
location: { type: 'object', properties: {
latitude: { type: 'number' }, longitude: { type: 'number' },
} },
nearTestSite: { type: 'boolean' }, testSiteName: { type: 'string' },
concernScore: { type: 'number' }, concernLevel: { type: 'string' },
} } },
},
},
fires: {
type: ['object', 'null'],
properties: {
fireDetections: { type: 'array', items: { type: 'object', properties: {
id: { type: 'string' },
location: { type: 'object', properties: {
latitude: { type: 'number' }, longitude: { type: 'number' },
} },
brightness: { type: 'number' }, frp: { type: 'number' },
confidence: { type: 'string', enum: [
'FIRE_CONFIDENCE_HIGH', 'FIRE_CONFIDENCE_NOMINAL',
'FIRE_CONFIDENCE_LOW', 'FIRE_CONFIDENCE_UNSPECIFIED',
] },
satellite: { type: 'string' }, detectedAt: { type: 'number' }, region: { type: 'string' },
dayNight: { type: 'string' }, possibleExplosion: { type: 'boolean' },
} } },
},
},
events: {
type: ['object', 'null'],
properties: {
events: { type: 'array', items: { type: 'object', properties: {
magnitude: { type: ['number', 'null'] }, closed: { type: 'boolean' },
country: { type: 'string' }, type: { type: 'string' }, title: { type: 'string' },
} } },
},
},
}),
annotations: { readOnlyHint: true, destructiveHint: false, idempotentHint: true, openWorldHint: false },
_postFilter: (data, params) => {
const minMag = argNum(params.min_magnitude);
const limit = (argNum(params.limit) ?? DEFAULT_LIST_LIMIT);
if (minMag != null) {
narrowNested(data, 'earthquakes', 'earthquakes', (q) => (argNum(q.magnitude) ?? 0) >= minMag);
narrowNested(data, 'events', 'events', (e) => (argNum(e.magnitude) ?? 0) >= minMag);
}
if (argBool(params.active_only)) narrowNested(data, 'events', 'events', (e) => e.closed === false);
capNested(data, 'earthquakes', 'earthquakes', limit);
capNested(data, 'fires', 'fireDetections', limit);
capNested(data, 'events', 'events', limit);
const ds = argStrList(params.dataset);
if (ds.length > 0) {
const map: Record<string, string> = { earthquakes: 'earthquakes', wildfires: 'fires', other: 'events' };
return selectDatasets(data, compact(ds.map((d) => map[d])));
}
return data;
},
_cacheKeys: [
'seismology:earthquakes:v1',
'wildfire:fires:v1',
'natural:events:v1',
],
_seedMetaKey: 'seed-meta:seismology:earthquakes',
_maxStaleMin: 30,
_apiPaths: [
"GET /api/natural/v1/list-natural-events",
"GET /api/seismology/v1/list-earthquakes",
"GET /api/wildfire/v1/list-fire-detections",
],
},
{
name: 'get_military_posture',
_outputBudgetBytes: 131072,
description: 'Theater posture assessment and military risk scores. Reflects aggregated military positioning and escalation signals across global theaters.',
inputSchema: {
type: 'object',
properties: {
theater: { type: 'string', description: 'Filter to one theater by id (case-insensitive substring, e.g. "iran", "taiwan", "baltic", "korea").' },
posture_level: { type: 'string', description: 'Filter to a single posture level.' },
limit: { type: 'number', description: 'Cap the theaters list to at most this many items (default 30, pass 0 for no cap).' },
},
required: [],
},
outputSchema: cacheEnvelope({
theater_posture: {
type: ['object', 'null'],
properties: {
theaters: { type: 'array', items: { type: 'object', properties: {
theater: { type: 'string' }, postureLevel: { type: 'string' },
summary: { type: 'string' }, signals: { type: ['array', 'object', 'null'] },
} } },
},
},
}),
annotations: { readOnlyHint: true, destructiveHint: false, idempotentHint: true, openWorldHint: false },
_postFilter: (data, params) => {
const theater = argStr(params.theater);
const level = argStr(params.posture_level);
if (theater) narrowNested(data, 'theater_posture', 'theaters', (t) => ciIncludes(t.theater, theater));
if (level) narrowNested(data, 'theater_posture', 'theaters', (t) => argStr(t.postureLevel) === level);
capNested(data, 'theater_posture', 'theaters', argNum(params.limit) ?? DEFAULT_LIST_LIMIT);
return data;
},
_cacheKeys: ['theater_posture:sebuf:stale:v1'],
_seedMetaKey: 'seed-meta:intelligence:risk-scores',
_maxStaleMin: 120,
// CASCADE-MIRROR EQUIVALENCE: the API handler at
// server/worldmonitor/military/v1/get-theater-posture.ts:23 reads 3 cascade
// variants (live + stale + backup) and returns the freshest available.
// This MCP tool reads only the stale variant; PR #3658's U7 already
// documents `theater-posture:sebuf:v1` and `theater-posture:sebuf:backup:v1`
// as `cascade-mirror: covered by get_military_posture` exclusions in the
// bootstrap-parity test — they share the same payload shape, only freshness
// differs. Coverage is intentional. The audit script's partial-overlap
// warning for this op is suppressed via CASCADE_MIRROR_EXEMPT in
// scripts/audit-mcp-api-coverage.mjs.
_apiPaths: [
"GET /api/military/v1/get-theater-posture",
],
},
{
name: 'get_cyber_threats',
_outputBudgetBytes: 131072,
description: 'Active cyber threat intelligence: malware IOCs (URLhaus, Feodotracker), CISA known exploited vulnerabilities, and active command-and-control infrastructure.',
inputSchema: {
type: 'object',
properties: {
threat_type: { type: 'string', description: 'Filter to one threat type (case-insensitive substring, e.g. "malware", "vulnerability", "c2").' },
min_severity: {
type: 'string',
enum: ['low', 'medium', 'high', 'critical'],
description: 'Drop threats below this severity level.',
},
country: { type: 'string', description: 'Filter to one ISO 3166-1 alpha-2 country code (many threats have no country and are dropped by this filter).' },
limit: { type: 'number', description: 'Cap the threat list to at most this many items (default 30, pass 0 for no cap).' },
},
required: [],
},
outputSchema: cacheEnvelope({
'threats-bootstrap': {
type: ['object', 'null'],
properties: {
threats: { type: 'array', items: { type: 'object', properties: {
type: { type: 'string' }, severity: { type: 'string' }, country: { type: 'string' },
indicator: { type: 'string' }, description: { type: 'string' },
} } },
},
},
}),
annotations: { readOnlyHint: true, destructiveHint: false, idempotentHint: true, openWorldHint: false },
_postFilter: (data, params) => {
const type = argStr(params.threat_type);
const countries = argStrList(params.country);
const minSev = argStr(params.min_severity).replace('criticality_level_', '');
const ranks: Record<string, number> = { low: 1, medium: 2, high: 3, critical: 4 };
const minRank = ranks[minSev];
if (type) narrowNested(data, 'threats-bootstrap', 'threats', (t) => ciIncludes(t.type, type));
if (countries.length > 0) {
narrowNested(data, 'threats-bootstrap', 'threats', (t) => matchesCode(t.country, countries));
}
if (minRank != null) {
narrowNested(data, 'threats-bootstrap', 'threats', (t) => {
const tok = argStr(t.severity).replace('criticality_level_', '');
const r = ranks[tok];
return r == null || r >= minRank;
});
}
capNested(data, 'threats-bootstrap', 'threats', (argNum(params.limit) ?? DEFAULT_LIST_LIMIT));
return data;
},
_cacheKeys: ['cyber:threats-bootstrap:v2'],
_seedMetaKey: 'seed-meta:cyber:threats',
_maxStaleMin: 240,
_apiPaths: [],
},
{
name: 'get_economic_data',
_outputBudgetBytes: 131072,
description: 'China macro: official-only 12-series; 5 NBS/SAFE ingestible, PBoC/GACC unavailable, no proxies; see launchReady/status. Retained values expose transportStatus and transportFailureReason independently. Other economic data includes Fed Funds (FRED), economic and official NBS/PBoC release calendars, fuel prices, ECB FX rates, EU yield curves, earnings, COT positioning, energy storage, BIS household debt service ratios, and BIS residential/commercial property prices.',
inputSchema: {
type: 'object',
properties: {
dataset: {
type: 'array',
items: {
type: 'string',
enum: ['fedfunds', 'econ-calendar', 'china-macro', 'china-release-calendar', 'fuel-prices', 'ecb-fx-rates', 'yield-curve-eu', 'spending', 'earnings-calendar', 'cot', 'dsr', 'property-residential', 'property-commercial'],
},
description: 'Restrict the response to one or more sub-datasets. Omit for the full economic bundle.',
},
country: {
type: 'string',
description: 'Filter the country-keyed datasets (fuel-prices, BIS DSR/property, economic calendar) to one ISO 3166-1 alpha-2 code.',
},
limit: { type: 'number', description: 'Cap each list dataset (calendar, spending, earnings) to at most this many items (default 30, pass 0 for no cap).' },
},
required: [],
},
// FRED key is `economic:fred:v1:FEDFUNDS:0` — the label-walk skips the
// `0` suffix (NON_LABEL regex matches bare digits) and the `v1` segment,
// landing on `FEDFUNDS`.
outputSchema: cacheEnvelope({
FEDFUNDS: { type: ['object', 'array', 'null'] },
'econ-calendar': {
type: ['object', 'null'],
properties: { events: { type: 'array', items: { type: 'object', properties: {
country: { type: 'string' }, event: { type: 'string' }, time: { type: ['string', 'number'] },
} } } },
},
'china-macro': {
type: ['object', 'null'],
properties: {
countryCode: { type: 'string' }, launchReady: { type: 'boolean' }, status: { type: 'string' },
indicators: { type: 'array', items: { type: 'object', properties: {
id: { type: 'string' }, label: { type: 'string' }, category: { type: 'string' },
value: { type: ['number', 'null'] }, priorValue: { type: ['number', 'null'] },
comparisonValue: { type: ['number', 'null'] }, comparisonBasis: { type: 'string' },
unit: { type: 'string' },
observationDate: { type: 'string' }, source: { type: 'string' },
stale: { type: 'boolean' }, unavailableReason: { type: 'string' },
transportStatus: { type: 'string' }, transportFailureReason: { type: 'string' },
} } },
},
},
'china-release-calendar': {
type: ['object', 'null'],
properties: { events: { type: 'array', items: { type: 'object', properties: {
event: { type: 'string' }, countryCode: { type: 'string' }, releaseDate: { type: 'string' }, status: { type: 'string' }, source: { type: 'string' },
} } } },
},
'fuel-prices': {
type: ['object', 'null'],
properties: { countries: { type: 'array', items: { type: 'object', properties: { code: { type: 'string' }, price: { type: 'number' }, currency: { type: 'string' } } } } },
},
'ecb-fx-rates': { type: ['object', 'null'] },
'yield-curve-eu': { type: ['object', 'null'] },
spending: {
type: ['object', 'null'],
properties: { awards: { type: 'array', items: { type: 'object' } } },
},
'earnings-calendar': {
type: ['object', 'null'],
properties: { earnings: { type: 'array', items: { type: 'object', properties: { symbol: { type: 'string' }, date: { type: 'string' } } } } },
},
cot: { type: ['object', 'null'] },
dsr: {
type: ['object', 'null'],
properties: { entries: { type: 'array', items: { type: 'object', properties: { countryCode: { type: 'string' }, value: { type: 'number' } } } } },
},
'property-residential': {
type: ['object', 'null'],
properties: { entries: { type: 'array', items: { type: 'object', properties: { countryCode: { type: 'string' }, value: { type: 'number' } } } } },
},
'property-commercial': {
type: ['object', 'null'],
properties: { entries: { type: 'array', items: { type: 'object', properties: { countryCode: { type: 'string' }, value: { type: 'number' } } } } },
},
}),
annotations: { readOnlyHint: true, destructiveHint: false, idempotentHint: true, openWorldHint: false },
_postFilter: (data, params) => {
data['china-macro'] = projectChinaMacroForMcp(data['china-macro']);
const countries = argStrList(params.country);
const limit = (argNum(params.limit) ?? DEFAULT_LIST_LIMIT);
if (countries.length > 0) {
narrowNested(data, 'fuel-prices', 'countries', (c) => matchesCode(c.code, countries));
narrowNested(data, 'econ-calendar', 'events', (e) => matchesCode(e.country, countries));
narrowNested(data, 'china-release-calendar', 'events', (e) => matchesCode(e.countryCode, countries));
if (!countries.some((code) => code.toUpperCase() === 'CN')) data['china-macro'] = null;
for (const label of ['dsr', 'property-residential', 'property-commercial']) {
narrowNested(data, label, 'entries', (e) => matchesCode(e.countryCode, countries));
}
}
capNested(data, 'econ-calendar', 'events', limit);
capNested(data, 'china-release-calendar', 'events', limit);
capNested(data, 'spending', 'awards', limit);
capNested(data, 'earnings-calendar', 'earnings', limit);
return selectDatasets(data, argStrList(params.dataset));
},
_cacheKeys: [
'economic:fred:v1:FEDFUNDS:0',
'economic:econ-calendar:v1',
BOOTSTRAP_CACHE_KEYS.chinaMacro,
BOOTSTRAP_CACHE_KEYS.chinaReleaseCalendar,
'economic:fuel-prices:v1',
'economic:ecb-fx-rates:v1',
'economic:yield-curve-eu:v1',
'economic:spending:v1',
'market:earnings-calendar:v1',
'market:cot:v1',
'economic:bis:dsr:v1',
'economic:bis:property-residential:v1',
'economic:bis:property-commercial:v1',
],
_cacheLabels: {
[BOOTSTRAP_CACHE_KEYS.chinaMacro]: 'china-macro',
[BOOTSTRAP_CACHE_KEYS.chinaReleaseCalendar]: 'china-release-calendar',
},
_seedMetaKey: 'seed-meta:economic:econ-calendar',
_maxStaleMin: 1440,
_freshnessChecks: [
{ key: 'seed-meta:economic:econ-calendar', maxStaleMin: 1440 },
{ key: 'seed-meta:economic:china-macro-transport', maxStaleMin: 4320 },
{ key: 'seed-meta:economic:china-release-calendar', maxStaleMin: 4320 },
// Per-dataset BIS seed-meta keys — the aggregate
// `seed-meta:economic:bis-extended` would report "fresh" even if only
// one of the three datasets (DSR / SPP / CPP) is current, matching the
// false-freshness bug already fixed for /api/health and resilience.
{ key: 'seed-meta:economic:bis-dsr', maxStaleMin: 1440 }, // 12h cron × 2
{ key: 'seed-meta:economic:bis-property-residential', maxStaleMin: 1440 },
{ key: 'seed-meta:economic:bis-property-commercial', maxStaleMin: 1440 },
],
_apiPaths: [
"GET /api/economic/v1/get-ecb-fx-rates",
"GET /api/economic/v1/get-economic-calendar",
"GET /api/economic/v1/get-china-macro-snapshot",
"GET /api/economic/v1/get-eu-yield-curve",
"GET /api/economic/v1/list-fuel-prices",
"GET /api/market/v1/get-cot-positioning",
"GET /api/market/v1/list-earnings-calendar",
],
},
{
name: 'get_country_macro',
_outputBudgetBytes: 131072,
description: 'Per-country macroeconomic indicators from IMF WEO (~210 countries, monthly cadence). Bundles fiscal/external balance (inflation, current account, gov revenue/expenditure/primary balance, CPI), growth & per-capita (real GDP growth, GDP/capita USD & PPP, savings & investment rates, savings-investment gap), labor & demographics (unemployment, population), and external trade (current account USD, import/export volume % changes). Latest available year per series. Use for country-level economic screening, peer benchmarking, and stagflation/imbalance flags. NOTE: export/import LEVELS in USD (exportsUsd, importsUsd, tradeBalanceUsd) are returned as null — WEO retracted broad coverage for BX/BM indicators in 2026-04; use currentAccountUsd or volume changes (import/exportVolumePctChg) instead.',
inputSchema: {
type: 'object',
properties: {
countries: {
type: 'array',
items: { type: 'string' },
description: 'ISO 3166-1 alpha-2 country codes to keep across all four IMF datasets (e.g. ["US","DE","CN"]). Omit for all ~210 countries.',
},
limit: { type: 'integer', minimum: 0, description: 'Cap each IMF dataset country map to at most this many entries when no countries filter is supplied (default 30, pass 0 for no cap).' },
},
required: [],
},
// Each IMF label maps to `{ countries: { [iso2]: { ... per-series metrics ... } } }`.
outputSchema: cacheEnvelope({
macro: { type: ['object', 'null'], properties: { countries: { type: 'object', additionalProperties: { type: 'object' } } } },
growth: { type: ['object', 'null'], properties: { countries: { type: 'object', additionalProperties: { type: 'object' } } } },
labor: { type: ['object', 'null'], properties: { countries: { type: 'object', additionalProperties: { type: 'object' } } } },
external: { type: ['object', 'null'], properties: { countries: { type: 'object', additionalProperties: { type: 'object' } } } },
}),
annotations: { readOnlyHint: true, destructiveHint: false, idempotentHint: true, openWorldHint: false },
_postFilter: (data, params) => {
const codes = argStrList(params.countries);
if (codes.length > 0) {
for (const label of ['macro', 'growth', 'labor', 'external']) pickNestedMap(data, label, 'countries', codes);
return data;
}
const limit = argNum(params.limit) ?? DEFAULT_LIST_LIMIT;
for (const label of ['macro', 'growth', 'labor', 'external']) capNestedMap(data, label, 'countries', limit);
return data;
},
_cacheKeys: [
'economic:imf:macro:v2',
'economic:imf:growth:v1',
'economic:imf:labor:v1',
'economic:imf:external:v1',
],
_seedMetaKey: 'seed-meta:economic:imf-macro',
_maxStaleMin: 100800, // monthly WEO release; 70d = 2× interval (absorbs one missed run)
_freshnessChecks: [
{ key: 'seed-meta:economic:imf-macro', maxStaleMin: 100800 },
{ key: 'seed-meta:economic:imf-growth', maxStaleMin: 100800 },
{ key: 'seed-meta:economic:imf-labor', maxStaleMin: 100800 },
{ key: 'seed-meta:economic:imf-external', maxStaleMin: 100800 },
],
_apiPaths: [],
},
{
name: 'get_eu_housing_cycle',
_outputBudgetBytes: 131072,
description: 'Eurostat annual house price index (prc_hpi_a, base 2015=100) for all 27 EU members plus EA20 and EU27_2020 aggregates. Each country entry includes the latest value, prior value, date, unit, and a 10-year sparkline series. Complements BIS WS_SPP with broader EU coverage for the Housing cycle tile.',
inputSchema: {
type: 'object',
properties: {
countries: {
type: 'array',
items: { type: 'string' },
description: 'Eurostat geo codes to keep — ISO 3166-1 alpha-2, but "EL" for Greece, plus aggregates "EA20" and "EU27_2020". Omit for all.',
},
limit: { type: 'integer', minimum: 0, description: 'Cap the country map to at most this many entries when no countries filter is supplied (default 30, pass 0 for no cap).' },
},
required: [],
},
outputSchema: cacheEnvelope({
'house-prices': {
type: ['object', 'null'],
properties: { countries: { type: 'object', additionalProperties: { type: 'object', properties: {
latest: { type: ['number', 'null'] }, prior: { type: ['number', 'null'] },
date: { type: 'string' }, unit: { type: 'string' }, series: { type: 'array', items: { type: 'object' } },
} } } },
},
}),
annotations: { readOnlyHint: true, destructiveHint: false, idempotentHint: true, openWorldHint: false },
_postFilter: (data, params) => {
const codes = argStrList(params.countries);
if (codes.length > 0) {
pickNestedMap(data, 'house-prices', 'countries', codes);
return data;
}
capNestedMap(data, 'house-prices', 'countries', argNum(params.limit) ?? DEFAULT_LIST_LIMIT);
return data;
},
_cacheKeys: ['economic:eurostat:house-prices:v1'],
_seedMetaKey: 'seed-meta:economic:eurostat-house-prices',
_maxStaleMin: 60 * 24 * 50, // weekly cron, annual data
_apiPaths: [],
},
{
name: 'get_eu_quarterly_gov_debt',
_outputBudgetBytes: 131072,
description: 'Eurostat quarterly general government gross debt (gov_10q_ggdebt, %GDP) for all 27 EU members plus EA20 and EU27_2020 aggregates. Each country entry includes latest value, prior value, quarter label, and an 8-quarter sparkline series. Provides fresher debt-trajectory signal than annual IMF GGXWDG_NGDP for EU panels.',
inputSchema: {
type: 'object',
properties: {
countries: {
type: 'array',
items: { type: 'string' },
description: 'Eurostat geo codes to keep — ISO 3166-1 alpha-2, but "EL" for Greece, plus aggregates "EA20" and "EU27_2020". Omit for all.',
},
limit: { type: 'integer', minimum: 0, description: 'Cap the country map to at most this many entries when no countries filter is supplied (default 30, pass 0 for no cap).' },
},
required: [],
},
outputSchema: cacheEnvelope({
'gov-debt-q': {
type: ['object', 'null'],
properties: { countries: { type: 'object', additionalProperties: { type: 'object', properties: {
latest: { type: ['number', 'null'] }, prior: { type: ['number', 'null'] },
quarter: { type: 'string' }, series: { type: 'array', items: { type: 'object' } },
} } } },
},
}),
annotations: { readOnlyHint: true, destructiveHint: false, idempotentHint: true, openWorldHint: false },
_postFilter: (data, params) => {
const codes = argStrList(params.countries);
if (codes.length > 0) {
pickNestedMap(data, 'gov-debt-q', 'countries', codes);
return data;
}
capNestedMap(data, 'gov-debt-q', 'countries', argNum(params.limit) ?? DEFAULT_LIST_LIMIT);
return data;
},
_cacheKeys: ['economic:eurostat:gov-debt-q:v1'],
_seedMetaKey: 'seed-meta:economic:eurostat-gov-debt-q',
_maxStaleMin: 60 * 24 * 14, // quarterly data, 2-day cron
_apiPaths: [],
},
{
name: 'get_eu_industrial_production',
_outputBudgetBytes: 131072,
description: 'Eurostat monthly industrial production index (sts_inpr_m, NACE B-D industry excl. construction, SCA, base 2021=100) for all 27 EU members plus EA20 and EU27_2020 aggregates. Each country entry includes latest value, prior value, month label, and a 12-month sparkline series. Leading indicator of real-economy activity used by the "Real economy pulse" sparkline.',
inputSchema: {
type: 'object',
properties: {
countries: {
type: 'array',
items: { type: 'string' },
description: 'Eurostat geo codes to keep — ISO 3166-1 alpha-2, but "EL" for Greece, plus aggregates "EA20" and "EU27_2020". Omit for all.',
},
limit: { type: 'integer', minimum: 0, description: 'Cap the country map to at most this many entries when no countries filter is supplied (default 30, pass 0 for no cap).' },
},
required: [],
},
outputSchema: cacheEnvelope({
'industrial-production': {
type: ['object', 'null'],
properties: { countries: { type: 'object', additionalProperties: { type: 'object', properties: {
latest: { type: ['number', 'null'] }, prior: { type: ['number', 'null'] },
month: { type: 'string' }, series: { type: 'array', items: { type: 'object' } },
} } } },
},
}),
annotations: { readOnlyHint: true, destructiveHint: false, idempotentHint: true, openWorldHint: false },
_postFilter: (data, params) => {
const codes = argStrList(params.countries);
if (codes.length > 0) {
pickNestedMap(data, 'industrial-production', 'countries', codes);
return data;
}
capNestedMap(data, 'industrial-production', 'countries', argNum(params.limit) ?? DEFAULT_LIST_LIMIT);
return data;
},
_cacheKeys: ['economic:eurostat:industrial-production:v1'],
_seedMetaKey: 'seed-meta:economic:eurostat-industrial-production',
_maxStaleMin: 60 * 24 * 5, // monthly data, daily cron
_apiPaths: [],
},
{
name: 'get_prediction_markets',
_uiResourceUri: PREDICTION_MARKETS_UI_URI,
_outputBudgetBytes: 131072,
description: 'Active Polymarket event contracts with current probabilities. Covers geopolitical, economic, and election prediction markets.',
inputSchema: {
type: 'object',
properties: {
category: {
type: 'string',
enum: ['geopolitical', 'tech', 'finance'],
description: 'Restrict to one market category bucket. Omit for all three.',
},
query: { type: 'string', description: 'Keep only markets whose title contains this text (case-insensitive).' },
source: { type: 'string', enum: ['kalshi', 'polymarket'], description: 'Filter to one prediction-market source.' },
limit: { type: 'number', description: 'Cap each category bucket to at most this many markets (default 30, pass 0 for no cap).' },
},
required: [],
},
outputSchema: cacheEnvelope({
'markets-bootstrap': {
type: ['object', 'null'],
properties: {
geopolitical: { type: 'array', items: { type: 'object', properties: {
title: { type: 'string' }, yesPrice: { type: 'number', minimum: 0, maximum: 100 },
source: { type: 'string' }, volume: { type: 'number' }, url: { type: 'string' },
endDate: { type: 'string' }, regions: { type: 'array', items: { type: 'string' } },
} } },
tech: { type: 'array', items: { type: 'object', properties: {
title: { type: 'string' }, yesPrice: { type: 'number', minimum: 0, maximum: 100 },
source: { type: 'string' }, volume: { type: 'number' }, url: { type: 'string' },
endDate: { type: 'string' }, regions: { type: 'array', items: { type: 'string' } },
} } },
finance: { type: 'array', items: { type: 'object', properties: {
title: { type: 'string' }, yesPrice: { type: 'number', minimum: 0, maximum: 100 },
source: { type: 'string' }, volume: { type: 'number' }, url: { type: 'string' },
endDate: { type: 'string' }, regions: { type: 'array', items: { type: 'string' } },
} } },
},
},
}),
annotations: { readOnlyHint: true, destructiveHint: false, idempotentHint: true, openWorldHint: false },
_postFilter: (data, params) => {
const category = argStr(params.category);
const query = argStr(params.query);
const source = argStr(params.source);
const limit = (argNum(params.limit) ?? DEFAULT_LIST_LIMIT);
const buckets = ['geopolitical', 'tech', 'finance'];
for (const b of buckets) {
if (query) narrowNested(data, 'markets-bootstrap', b, (m) => ciIncludes(m.title, query));
if (source) narrowNested(data, 'markets-bootstrap', b, (m) => argStr(m.source) === source);
capNested(data, 'markets-bootstrap', b, limit);
}
if (category && buckets.includes(category)) {
const node = data['markets-bootstrap'];
if (node && typeof node === 'object' && !Array.isArray(node)) {
const n = node as Record<string, unknown>;
for (const b of buckets) if (b !== category) n[b] = [];
}
}
return data;
},
_cacheKeys: ['prediction:markets-bootstrap:v1'],
_seedMetaKey: 'seed-meta:prediction:markets',
_maxStaleMin: 90,
_apiPaths: [
"GET /api/prediction/v1/list-prediction-markets",
],
},
{
name: 'get_sanctions_data',
_outputBudgetBytes: 131072,
description: 'OFAC SDN sanctioned entities list and sanctions pressure scores by country. Useful for compliance screening and geopolitical pressure analysis.',
inputSchema: {
type: 'object',
properties: {
country: { type: 'string', description: 'Filter sanctioned entities and pressure scores to one ISO 3166-1 alpha-2 country code.' },
entity_type: { type: 'string', description: 'Filter to one entity type (case-insensitive substring, e.g. "vessel", "aircraft", "person", "entity").' },
query: { type: 'string', description: 'Keep only sanctioned entities whose name contains this text (case-insensitive).' },
limit: { type: 'number', description: 'Cap the entity list and recent pressure entries to at most this many items (default 30, pass 0 for no cap).' },
},
required: [],
},
// `_postFilter` calls `narrowArray(data, 'entities', ...)` on the
// entities slot, so that label's value is itself an array (not an object
// with a child array). The pressure label is the usual `{entries, countries}` shape.
outputSchema: cacheEnvelope({
entities: {
type: ['array', 'object', 'null'],
items: { type: 'object', properties: {
name: { type: 'string' }, cc: { type: 'string' }, et: { type: 'string' },
addr: { type: 'string' },
} },
},
pressure: {
type: ['object', 'null'],
properties: {
entries: { type: 'array', items: { type: 'object', properties: {
countryCodes: { type: ['array', 'string'] }, entityType: { type: 'string' },
} } },
countries: { type: 'array', items: { type: 'object', properties: {
countryCode: { type: 'string' }, pressureScore: { type: 'number' },
} } },
},
},
}),
annotations: { readOnlyHint: true, destructiveHint: false, idempotentHint: true, openWorldHint: false },
_postFilter: (data, params) => {
const countries = argStrList(params.country);
const etype = argStr(params.entity_type);
const query = argStr(params.query);
const limit = (argNum(params.limit) ?? DEFAULT_LIST_LIMIT);
if (countries.length > 0) {
narrowArray(data, 'entities', (e) => matchesCode(e.cc, countries));
narrowNested(data, 'pressure', 'entries', (e) => matchesCode(e.countryCodes, countries));
narrowNested(data, 'pressure', 'countries', (c) => matchesCode(c.countryCode, countries));
}
if (etype) {
narrowArray(data, 'entities', (e) => ciIncludes(e.et, etype));
narrowNested(data, 'pressure', 'entries', (e) => ciIncludes(e.entityType, etype));
}
if (query) narrowArray(data, 'entities', (e) => ciIncludes(e.name, query));
capArrays(data, limit);
capNested(data, 'pressure', 'entries', limit);
return data;
},
_cacheKeys: ['sanctions:entities:v1', 'sanctions:pressure:v1'],
_seedMetaKey: 'seed-meta:sanctions:entities',
_maxStaleMin: 1440,
_apiPaths: [
"GET /api/sanctions/v1/list-sanctions-pressure",
"GET /api/sanctions/v1/lookup-sanction-entity",
],
},
{
name: 'get_displacement_data',
_outputBudgetBytes: 131072,
description: 'Refugee and IDP counts by country (UNHCR annual data).',
inputSchema: {
type: 'object',
properties: {
countries: {
type: 'array',
items: { type: 'string' },
description: 'ISO 3166-1 alpha-3 country codes to keep (e.g. ["SYR","UKR","AFG"]). Matches both per-country totals and origin/asylum flows. Omit for all.',
},
limit: { type: 'number', description: 'Cap the per-country and top-flow lists to at most this many items (default 30, pass 0 for no cap).' },
},
required: [],
},
outputSchema: cacheEnvelope({
summary: {
type: ['object', 'null'],
properties: {
countries: { type: 'array', items: { type: 'object', properties: {
code: { type: 'string' }, total: { type: ['number', 'null'] }, year: { type: ['number', 'string'] },
} } },
topFlows: { type: 'array', items: { type: 'object', properties: {
originCode: { type: 'string' }, asylumCode: { type: 'string' }, value: { type: ['number', 'null'] },
} } },
},
},
}),
annotations: { readOnlyHint: true, destructiveHint: false, idempotentHint: true, openWorldHint: false },
_postFilter: (data, params) => {
const codes = argStrList(params.countries);
const limit = (argNum(params.limit) ?? DEFAULT_LIST_LIMIT);
if (codes.length > 0) {
narrowNested(data, 'summary', 'countries', (c) => matchesCode(c.code, codes));
narrowNested(data, 'summary', 'topFlows', (f) => matchesCode(f.originCode, codes) || matchesCode(f.asylumCode, codes));
}
capNested(data, 'summary', 'countries', limit);
capNested(data, 'summary', 'topFlows', limit);
return data;
},
// Dynamic-year key resolved once at module evaluation — mirrors the
// STANDALONE_KEYS pattern in api/health.js:147. The UNHCR seeder publishes
// a single current-year key; the prior year exists at the same prefix but
// is intentionally excluded — the executeTool label-walk would strip the
// year segment from both keys and collide on the same `summary` label,
// causing the second result to overwrite the first.
_cacheKeys: [`displacement:summary:v1:${new Date().getUTCFullYear()}`],
_seedMetaKey: 'seed-meta:displacement:summary',
_maxStaleMin: 3600,
// Audit miss: handler uses cachedFetchJson with a year-suffixed key the
// audit's regex couldn't statically resolve. The op IS covered by this
// tool — same underlying displacement:summary:v1:<year> cache.
_apiPaths: [
'GET /api/displacement/v1/get-displacement-summary',
],
},
{
name: 'get_health_signals',
_outputBudgetBytes: 131072,
description: 'Active disease outbreaks (WHO/ECDC etc.) and global air-quality station readings (OpenAQ/WAQI PM2.5). For health-risk screening.',
inputSchema: {
type: 'object',
properties: {
signal_type: {
type: 'array',
items: { type: 'string', enum: ['outbreaks', 'air-quality'] },
description: 'Restrict to disease outbreaks, air-quality stations, or both. Omit for both.',
},
country: { type: 'string', description: 'Filter outbreaks and air-quality stations to one ISO 3166-1 alpha-2 country code.' },
disease: { type: 'string', description: 'Keep only outbreaks whose disease name contains this text (case-insensitive).' },
min_aqi: { type: 'number', description: 'Drop air-quality stations below this AQI value.' },
limit: { type: 'number', description: 'Cap the outbreak and station lists to at most this many items (default 30, pass 0 for no cap).' },
},
required: [],
},
outputSchema: cacheEnvelope({
'disease-outbreaks': {
type: ['object', 'null'],
properties: {
outbreaks: { type: 'array', items: { type: 'object', properties: {
disease: { type: 'string' }, country: { type: 'string' }, countryCode: { type: 'string' },
cases: { type: ['number', 'null'] }, deaths: { type: ['number', 'null'] }, date: { type: 'string' },
} } },
},
},
'air-quality': {
type: ['object', 'null'],
properties: {
stations: { type: 'array', items: { type: 'object', properties: {
country_code: { type: 'string' }, city: { type: 'string' }, aqi: { type: ['number', 'null'] },
pm25: { type: ['number', 'null'] }, latitude: { type: 'number' }, longitude: { type: 'number' },
} } },
},
},
}),
annotations: { readOnlyHint: true, destructiveHint: false, idempotentHint: true, openWorldHint: false },
_postFilter: (data, params) => {
const countries = argStrList(params.country);
const disease = argStr(params.disease);
const minAqi = argNum(params.min_aqi);
const limit = (argNum(params.limit) ?? DEFAULT_LIST_LIMIT);
if (countries.length > 0) {
narrowNested(data, 'disease-outbreaks', 'outbreaks', (o) => matchesCode(o.countryCode, countries));
narrowNested(data, 'air-quality', 'stations', (s) => matchesCode(s.country_code, countries));
}
if (disease) narrowNested(data, 'disease-outbreaks', 'outbreaks', (o) => ciIncludes(o.disease, disease));
if (minAqi != null) narrowNested(data, 'air-quality', 'stations', (s) => (argNum(s.aqi) ?? 0) >= minAqi);
capNested(data, 'disease-outbreaks', 'outbreaks', limit);
capNested(data, 'air-quality', 'stations', limit);
const st = argStrList(params.signal_type);
if (st.length > 0) {
const map: Record<string, string> = { outbreaks: 'disease-outbreaks', 'air-quality': 'air-quality' };
return selectDatasets(data, compact(st.map((s) => map[s])));
}
return data;
},
// Uses the health-domain canonical key health:air-quality:v1 (NOT the
// climate-domain mirror climate:air-quality:v1, which stays exclusively
// in get_climate_data). Both are written by the same seeder
// (scripts/seed-health-air-quality.mjs exports HEALTH_AIR_QUALITY_KEY +
// CLIMATE_AIR_QUALITY_KEY) so no duplicate seed work.
_cacheKeys: ['health:disease-outbreaks:v1', 'health:air-quality:v1'],
_seedMetaKey: 'seed-meta:health:disease-outbreaks',
_maxStaleMin: 2880,
_freshnessChecks: [
{ key: 'seed-meta:health:disease-outbreaks', maxStaleMin: 2880 }, // daily cron; 48h budget
{ key: 'seed-meta:health:air-quality', maxStaleMin: 180 }, // hourly cron; 3h budget
],
_apiPaths: [
"GET /api/health/v1/list-air-quality-alerts",
"GET /api/health/v1/list-disease-outbreaks",
],
},
{
name: 'get_energy_intelligence',
_outputBudgetBytes: 131072,
description: 'Energy supply, prices, storage, disruptions, and policy: EIA petroleum stocks, electricity prices (Ember), gas storage (GIE), fuel shortages, fossil & renewable shares, active energy disruptions, government crisis policies.',
inputSchema: {
type: 'object',
properties: {
dataset: {
type: 'array',
items: {
type: 'string',
enum: ['eia-petroleum', 'electricity', 'ember', 'gas-storage', 'fuel-shortages', 'disruptions', 'crisis-policies', 'fossil-share', 'renewable'],
},
description: 'Restrict the response to one or more energy sub-datasets. Omit for the full bundle.',
},
country: {
type: 'string',
description: 'Filter the country-keyed datasets (Ember electricity mix, gas storage, fuel shortages, energy disruptions, fossil-share) to one ISO 3166-1 alpha-2 code.',
},
limit: { type: 'number', description: 'Cap each list-bearing energy slice (crisis-policies, electricity regions, gas-storage countries, World Bank renewable history/regions) to at most this many items (default 30, pass 0 for no cap).' },
},
required: [],
},
// Labels derived from each cache key's last informative segment:
// energy:eia-petroleum:v1 -> eia-petroleum
// energy:electricity:v1:index -> index
// energy:ember:v1:_all -> _all
// energy:gas-storage:v1:_countries -> _countries
// energy:fuel-shortages:v1 -> fuel-shortages
// energy:disruptions:v1 -> disruptions
// energy:crisis-policies:v1 -> crisis-policies
// resilience:fossil-electricity-share:v1 -> fossil-electricity-share
// economic:worldbank-renewable:v1 -> worldbank-renewable
outputSchema: cacheEnvelope({
'eia-petroleum': { type: ['object', 'null'] },
index: { type: ['object', 'null'], properties: { regions: { type: 'array', items: { type: 'object' } } } },
_all: { type: ['object', 'null'] },
_countries: { type: ['array', 'object', 'null'] },
'fuel-shortages': { type: ['object', 'null'], properties: { shortages: { type: ['object', 'array', 'null'] } } },
disruptions: { type: ['object', 'null'], properties: { events: { type: ['object', 'array', 'null'] } } },
'crisis-policies': { type: ['object', 'null'], properties: { policies: { type: 'array', items: { type: 'object' } } } },
'fossil-electricity-share': { type: ['object', 'null'], properties: { countries: { type: 'object', additionalProperties: { type: 'object' } } } },
'worldbank-renewable': { type: ['object', 'null'], properties: {
historicalData: { type: 'array', items: { type: 'object' } },
regions: { type: 'array', items: { type: 'object' } },
} },
}),
annotations: { readOnlyHint: true, destructiveHint: false, idempotentHint: true, openWorldHint: false },
_postFilter: (data, params) => {
const countries = argStrList(params.country);
if (countries.length > 0) {
data._all = pickMapKeys(data._all, countries);
pickNestedMap(data, 'fossil-electricity-share', 'countries', countries);
// energy:gas-storage:v1:_countries is a string[] of ISO2 codes — match
// the entry directly; the `?.iso2` fallback tolerates an object shape.
narrowArray(data, '_countries', (c) => matchesCode(c, countries) || matchesCode(c?.iso2, countries));
mapNested(data, 'fuel-shortages', 'shortages', (m) => filterMapValues(m, (s) => matchesCode(s.country, countries)));
mapNested(data, 'disruptions', 'events', (m) => filterMapValues(m, (e) => matchesCode(e.countries, countries)));
}
const limit = argNum(params.limit) ?? DEFAULT_LIST_LIMIT;
capNested(data, 'crisis-policies', 'policies', limit);
capNested(data, 'index', 'regions', limit);
capNested(data, 'worldbank-renewable', 'historicalData', limit);
capNested(data, 'worldbank-renewable', 'regions', limit);
// _countries is a top-level string[] — capArrays handles top-level arrays;
// in the energy bundle it's the only such array, so no collateral damage.
capArrays(data, limit);
const ds = argStrList(params.dataset);
if (ds.length > 0) {
const map: Record<string, string> = {
'eia-petroleum': 'eia-petroleum', electricity: 'index', ember: '_all', 'gas-storage': '_countries',
'fuel-shortages': 'fuel-shortages', disruptions: 'disruptions', 'crisis-policies': 'crisis-policies',
'fossil-share': 'fossil-electricity-share', renewable: 'worldbank-renewable',
};
return selectDatasets(data, compact(ds.map((d) => map[d])));
}
return data;
},
// Broad 9-key energy bundle mirroring get_economic_data. Cadences span
// hourly (electricity prices) to annual (World Bank renewable share); use
// _freshnessChecks with per-key maxStaleMin pulled from
// api/health.js::SEED_META so a slow-cadence key doesn't drag the
// aggregate stale flag unnecessarily.
_cacheKeys: [
'energy:eia-petroleum:v1', // STANDALONE_KEYS::eiaPetroleum
'energy:electricity:v1:index', // BOOTSTRAP_KEYS::electricityPrices
'energy:ember:v1:_all', // STANDALONE_KEYS::emberElectricity
'energy:gas-storage:v1:_countries', // BOOTSTRAP_KEYS::gasStorageCountries
'energy:fuel-shortages:v1', // STANDALONE_KEYS::fuelShortages
'energy:disruptions:v1', // STANDALONE_KEYS::energyDisruptions
'energy:crisis-policies:v1', // STANDALONE_KEYS::energyCrisisPolicies
'resilience:fossil-electricity-share:v1', // STANDALONE_KEYS::fossilElectricityShare
'economic:worldbank-renewable:v1', // BOOTSTRAP_KEYS::renewableEnergy
],
_seedMetaKey: 'seed-meta:energy:eia-petroleum',
_maxStaleMin: 4320, // EIA petroleum daily-bundle baseline; per-key budgets via _freshnessChecks below
_freshnessChecks: [
{ key: 'seed-meta:energy:eia-petroleum', maxStaleMin: 4320 }, // daily bundle; 72h = 3× interval
{ key: 'seed-meta:energy:electricity-prices', maxStaleMin: 2880 }, // daily cron (14:00 UTC); 48h = 2× interval
{ key: 'seed-meta:energy:ember', maxStaleMin: 2880 }, // daily cron (08:00 UTC); 48h = 2× interval
{ key: 'seed-meta:energy:gas-storage-countries', maxStaleMin: 2880 }, // daily cron at 10:30 UTC; 48h = 2× interval
{ key: 'seed-meta:energy:fuel-shortages', maxStaleMin: 2880 }, // 2d — daily cron × 2 headroom
{ key: 'seed-meta:energy:disruptions', maxStaleMin: 20160 }, // 14d — weekly cron × 2 headroom
{ key: 'seed-meta:energy:crisis-policies', maxStaleMin: 60 * 24 * 400 }, // ~400d static registry
{ key: 'seed-meta:resilience:fossil-electricity-share', maxStaleMin: 11520 }, // ~8d (annual WB-style cadence)
{ key: 'seed-meta:economic:worldbank-renewable:v1', maxStaleMin: 10080 }, // 7d WB weekly-cron annual data
],
_apiPaths: [
"GET /api/economic/v1/get-energy-crisis-policies",
"GET /api/supply-chain/v1/get-fuel-shortage-detail",
"GET /api/supply-chain/v1/list-energy-disruptions",
"GET /api/supply-chain/v1/list-fuel-shortages",
],
},
{
name: 'get_climate_data',
_outputBudgetBytes: 131072,
description: 'Climate intelligence: temperature/precipitation anomalies (vs 30-year WMO normals), climate-relevant disaster alerts (ReliefWeb/GDACS/FIRMS), atmospheric CO2 trend (NOAA Mauna Loa), air quality (OpenAQ/WAQI PM2.5 stations), Arctic sea ice extent and ocean heat indicators (NSIDC/NOAA), weather alerts, and climate news.',
inputSchema: {
type: 'object',
properties: {
dataset: {
type: 'array',
items: {
type: 'string',
enum: ['anomalies', 'disasters', 'co2-monitoring', 'air-quality', 'ocean-ice', 'news-intelligence', 'alerts'],
},
description: 'Restrict the response to one or more climate sub-datasets. Omit for the full bundle.',
},
country: {
type: 'string',
description: 'Filter the country-tagged datasets (climate disasters, air-quality stations) to one ISO 3166-1 alpha-2 code.',
},
limit: { type: 'number', description: 'Cap each list dataset (anomalies, disasters, stations, news, alerts) to at most this many items (default 30, pass 0 for no cap).' },
},
required: [],
},
outputSchema: cacheEnvelope({
anomalies: { type: ['object', 'null'], properties: { anomalies: { type: 'array', items: { type: 'object' } } } },
disasters: { type: ['object', 'null'], properties: { disasters: { type: 'array', items: { type: 'object', properties: {
countryCode: { type: 'string' }, type: { type: 'string' }, severity: { type: 'string' },
} } } } },
'co2-monitoring': { type: ['object', 'null'] },
'air-quality': { type: ['object', 'null'], properties: { stations: { type: 'array', items: { type: 'object', properties: {
country_code: { type: 'string' }, city: { type: 'string' }, aqi: { type: ['number', 'null'] },
} } } } },
'ocean-ice': { type: ['object', 'null'] },
'news-intelligence': { type: ['object', 'null'], properties: { items: { type: 'array', items: { type: 'object' } } } },
alerts: { type: ['object', 'null'], properties: { alerts: { type: 'array', items: { type: 'object' } } } },
}),
annotations: { readOnlyHint: true, destructiveHint: false, idempotentHint: true, openWorldHint: false },
_postFilter: (data, params) => {
const countries = argStrList(params.country);
const limit = (argNum(params.limit) ?? DEFAULT_LIST_LIMIT);
if (countries.length > 0) {
narrowNested(data, 'disasters', 'disasters', (d) => matchesCode(d.countryCode, countries));
narrowNested(data, 'air-quality', 'stations', (s) => matchesCode(s.country_code, countries));
}
capNested(data, 'anomalies', 'anomalies', limit);
capNested(data, 'disasters', 'disasters', limit);
capNested(data, 'air-quality', 'stations', limit);
capNested(data, 'news-intelligence', 'items', limit);
capNested(data, 'alerts', 'alerts', limit);
return selectDatasets(data, argStrList(params.dataset));
},
_cacheKeys: ['climate:anomalies:v2', 'climate:disasters:v1', 'climate:co2-monitoring:v1', 'climate:air-quality:v1', 'climate:ocean-ice:v1', 'climate:news-intelligence:v1', 'weather:alerts:v1'],
_seedMetaKey: 'seed-meta:climate:co2-monitoring',
_maxStaleMin: 2880,
_freshnessChecks: [
{ key: 'seed-meta:climate:anomalies', maxStaleMin: 120 },
{ key: 'seed-meta:climate:disasters', maxStaleMin: 720 },
{ key: 'seed-meta:climate:co2-monitoring', maxStaleMin: 2880 },
{ key: 'seed-meta:health:air-quality', maxStaleMin: 180 },
{ key: 'seed-meta:climate:ocean-ice', maxStaleMin: 1440 },
{ key: 'seed-meta:climate:news-intelligence', maxStaleMin: 90 },
{ key: 'seed-meta:weather:alerts', maxStaleMin: 45 },
],
_apiPaths: [
"GET /api/climate/v1/get-co2-monitoring",
"GET /api/climate/v1/get-ocean-ice-data",
"GET /api/climate/v1/list-air-quality-data",
"GET /api/climate/v1/list-climate-anomalies",
"GET /api/climate/v1/list-climate-disasters",
"GET /api/climate/v1/list-climate-news",
],
},
{
name: 'get_infrastructure_status',
_outputBudgetBytes: 131072,
description: 'Internet infrastructure health: Cloudflare Radar outages and service status for major cloud providers and internet services.',
inputSchema: {
type: 'object',
properties: {
country: { type: 'string', description: 'Filter to one country by name (case-insensitive substring).' },
severity: { type: 'string', description: 'Filter to one outage severity (case-insensitive substring).' },
limit: { type: 'number', description: 'Cap the outage list to at most this many items (default 30, pass 0 for no cap).' },
},
required: [],
},
outputSchema: cacheEnvelope({
outages: {
type: ['object', 'null'],
properties: { outages: { type: 'array', items: { type: 'object', properties: {
country: { type: 'string' }, severity: { type: 'string' }, asn: { type: ['number', 'string'] },
startTime: { type: 'string' }, description: { type: 'string' },
} } } },
},
}),
annotations: { readOnlyHint: true, destructiveHint: false, idempotentHint: true, openWorldHint: false },
_postFilter: (data, params) => {
const country = argStr(params.country);
const severity = argStr(params.severity);
if (country) narrowNested(data, 'outages', 'outages', (o) => ciIncludes(o.country, country));
if (severity) narrowNested(data, 'outages', 'outages', (o) => ciIncludes(o.severity, severity));
capNested(data, 'outages', 'outages', (argNum(params.limit) ?? DEFAULT_LIST_LIMIT));
return data;
},
_cacheKeys: ['infra:outages:v1'],
_seedMetaKey: 'seed-meta:infra:outages',
_maxStaleMin: 30,
_apiPaths: [
"GET /api/infrastructure/v1/list-internet-outages",
],
},
{
name: 'get_supply_chain_data',
_outputBudgetBytes: 131072,
description: 'Dry bulk shipping stress index, customs revenue flows, and COMTRADE bilateral trade data. Tracks global supply chain pressure and trade disruptions.',
inputSchema: {
type: 'object',
properties: {
dataset: {
type: 'array',
items: { type: 'string', enum: ['shipping_stress', 'customs-revenue', 'flows'] },
description: 'Restrict the response to one or more sub-datasets (dry-bulk shipping stress / customs revenue / COMTRADE flows). Omit for all.',
},
commodity: {
type: 'string',
description: 'Filter COMTRADE flows to one commodity — matches the HS code exactly or the commodity description by substring (e.g. "2709" or "crude").',
},
reporter: {
type: 'string',
description: 'Filter COMTRADE flows to one reporter by numeric reporter code or reporter name (e.g. "156" or "China").',
},
limit: { type: 'number', description: 'Cap each list dataset (carriers, months, flows) to at most this many items (default 30, pass 0 for no cap).' },
},
required: [],
},
outputSchema: cacheEnvelope({
shipping_stress: {
type: ['object', 'null'],
properties: { carriers: { type: 'array', items: { type: 'object', properties: {
name: { type: 'string' }, stressScore: { type: ['number', 'null'] },
} } } },
},
'customs-revenue': {
type: ['object', 'null'],
properties: { months: { type: 'array', items: { type: 'object', properties: {
month: { type: 'string' }, revenueUsd: { type: ['number', 'null'] },
} } } },
},
flows: {
type: ['object', 'null'],
properties: { flows: { type: 'array', items: { type: 'object', properties: {
cmdCode: { type: 'string' }, cmdDesc: { type: 'string' }, reporter: { type: 'string' },
partner: { type: 'string' }, value: { type: ['number', 'null'] },
} } } },
},
}),
annotations: { readOnlyHint: true, destructiveHint: false, idempotentHint: true, openWorldHint: false },
_postFilter: (data, params) => {
const commodity = argStr(params.commodity);
const reporter = argStr(params.reporter);
const limit = (argNum(params.limit) ?? DEFAULT_LIST_LIMIT);
if (commodity) {
narrowNested(data, 'flows', 'flows', (f) => argStr(f.cmdCode) === commodity || ciIncludes(f.cmdDesc, commodity));
}
if (reporter) {
narrowNested(data, 'flows', 'flows', (f) => argStr(f.reporterCode) === reporter || ciIncludes(f.reporterName ?? f.reporter, reporter));
}
capNested(data, 'shipping_stress', 'carriers', limit);
capNested(data, 'customs-revenue', 'months', limit);
capNested(data, 'flows', 'flows', limit);
return selectDatasets(data, argStrList(params.dataset));
},
_cacheKeys: [
'supply_chain:shipping_stress:v1',
'trade:customs-revenue:v1',
'comtrade:flows:v1',
],
_seedMetaKey: 'seed-meta:trade:customs-revenue',
_maxStaleMin: 2880,
_apiPaths: [
"GET /api/supply-chain/v1/get-shipping-stress",
"GET /api/trade/v1/get-customs-revenue",
],
},
{
name: 'get_tariff_trends',
_outputBudgetBytes: 131072,
description: 'Global trade and pricing indicators: US tariff trends (HTS-coded), BigMac index, FAO Food Price Index, and per-country national debt levels.',
inputSchema: {
type: 'object',
properties: {
dataset: {
type: 'array',
items: { type: 'string', enum: ['tariffs', 'bigmac', 'fao-ffpi', 'national-debt'] },
description: 'Restrict the response to one or more sub-datasets. Omit for the full bundle.',
},
country: {
type: 'string',
description: 'Filter the per-country datasets to one ISO 3166-1 alpha-2 country code (e.g. "US"). It is translated to alpha-3 internally for the national-debt dataset; passing an alpha-3 code directly also works.',
},
limit: { type: 'number', description: 'Cap each list dataset (tariff datapoints, BigMac countries, debt entries) to at most this many items (default 30, pass 0 for no cap).' },
},
required: [],
},
// First cache key `trade:tariffs:v1:840:all:10` — NON_LABEL drops bare digits
// (840, 10) and `v1`, lands on `all`.
outputSchema: cacheEnvelope({
all: {
type: ['object', 'null'],
properties: { datapoints: { type: 'array', items: { type: 'object', properties: {
hsCode: { type: 'string' }, rate: { type: ['number', 'null'] }, country: { type: 'string' },
} } } },
},
bigmac: {
type: ['object', 'null'],
properties: { countries: { type: 'array', items: { type: 'object', properties: {
code: { type: 'string' }, priceLocal: { type: ['number', 'null'] }, priceUsd: { type: ['number', 'null'] },
} } } },
},
'fao-ffpi': { type: ['object', 'null'] },
'national-debt': {
type: ['object', 'null'],
properties: { entries: { type: 'array', items: { type: 'object', properties: {
iso3: { type: 'string' }, value: { type: ['number', 'null'] }, year: { type: ['number', 'string'] },
} } } },
},
}),
annotations: { readOnlyHint: true, destructiveHint: false, idempotentHint: true, openWorldHint: false },
_postFilter: (data, params) => {
const countries = argStrList(params.country);
const limit = (argNum(params.limit) ?? DEFAULT_LIST_LIMIT);
if (countries.length > 0) {
narrowNested(data, 'bigmac', 'countries', (c) => matchesCode(c.code, countries));
// national-debt entries are keyed by ISO alpha-3 (iso3:"USA"); the
// country param is alpha-2 like the rest of the tool, so expand it.
const debtCodes = [
...countries,
...compact(countries.map((c) => ISO2_TO_ISO3[c.toUpperCase()]?.toLowerCase())),
];
narrowNested(data, 'national-debt', 'entries', (e) => matchesCode(e.iso3, debtCodes));
}
capNested(data, 'all', 'datapoints', limit);
capNested(data, 'bigmac', 'countries', limit);
capNested(data, 'national-debt', 'entries', limit);
const ds = argStrList(params.dataset);
if (ds.length > 0) {
const map: Record<string, string> = { tariffs: 'all', bigmac: 'bigmac', 'fao-ffpi': 'fao-ffpi', 'national-debt': 'national-debt' };
return selectDatasets(data, compact(ds.map((d) => map[d])));
}
return data;
},
// 4-key bundle spanning trade + economic domains. Cadences span hourly-ish
// (tariffs co-pinned to 8h TARIFF_TTL) to monthly (FAO / national debt).
// Per-key _freshnessChecks pulled from api/health.js::SEED_META so a slow
// monthly key doesn't drag the aggregate stale flag and a fast tariff
// outage isn't masked by a long FAO budget.
_cacheKeys: [
'trade:tariffs:v1:840:all:10', // STANDALONE_KEYS::tariffTrendsUs
'economic:bigmac:v1', // BOOTSTRAP_KEYS::bigmac
'economic:fao-ffpi:v1', // BOOTSTRAP_KEYS::faoFoodPriceIndex
'economic:national-debt:v1', // BOOTSTRAP_KEYS::nationalDebt
],
_seedMetaKey: 'seed-meta:trade:tariffs:v1:840:all:10',
_maxStaleMin: 540, // tariff cron baseline; per-key budgets via _freshnessChecks below
_freshnessChecks: [
{ key: 'seed-meta:trade:tariffs:v1:840:all:10', maxStaleMin: 540 }, // TARIFF_TTL 8h + 60min grace
{ key: 'seed-meta:economic:bigmac', maxStaleMin: 10080 }, // weekly seed; 7d
{ key: 'seed-meta:economic:fao-ffpi', maxStaleMin: 86400 }, // monthly seed; 60d (2× interval)
{ key: 'seed-meta:economic:national-debt', maxStaleMin: 86400 }, // monthly seed; 60d (2× interval)
],
_apiPaths: [
"GET /api/economic/v1/get-fao-food-price-index",
"GET /api/economic/v1/get-national-debt",
"GET /api/economic/v1/list-bigmac-prices",
],
},
{
name: 'get_chokepoint_status',
_outputBudgetBytes: 131072,
description: 'Live maritime chokepoint status: per-chokepoint vessel transit counts (10-min cadence), rolling transit summaries, per-port activity, plus static reference data (chokepoint geometry, canonical 13-chokepoint registry) and flow aggregates. Covers Suez, Hormuz, Malacca, Bab-el-Mandeb, Panama, etc.',
inputSchema: {
type: 'object',
properties: {
chokepoint: {
type: 'string',
description: 'Filter to one chokepoint — matches by case-insensitive substring across the differing identifiers used by each dataset (e.g. "hormuz" matches "hormuz_strait", "Strait of Hormuz").',
},
dataset: {
type: 'array',
items: {
type: 'string',
enum: ['transit-summaries', 'chokepoint_transits', '_countries', 'chokepoint-baselines', 'ref', 'chokepoint-flows'],
},
description: 'Restrict the response to one or more sub-datasets. Omit for the full bundle.',
},
limit: { type: 'number', description: 'Cap the chokepoint-baselines list and the _countries ISO2 index to at most this many items (default 30, pass 0 for no cap). Keyed-object maps (transit-summaries, chokepoint_transits, ref, chokepoint-flows) are intentionally not capped — use the `chokepoint` filter instead.' },
},
required: [],
},
// Schema validated against tests/fixtures/jmespath-samples/thin-get-chokepoint-status.response.json.
outputSchema: cacheEnvelope({
'transit-summaries': {
type: ['object', 'null'],
properties: {
summaries: { type: 'object', additionalProperties: { type: 'object', properties: {
todayTotal: { type: ['number', 'null'] }, todayTanker: { type: ['number', 'null'] },
todayCargo: { type: ['number', 'null'] }, todayOther: { type: ['number', 'null'] },
wowChangePct: { type: ['number', 'null'] }, riskLevel: { type: 'string' },
incidentCount7d: { type: ['number', 'null'] }, disruptionPct: { type: ['number', 'null'] },
riskSummary: { type: 'string' }, riskReportAction: { type: 'string' },
anomaly: { type: 'object' }, dataAvailable: { type: 'boolean' },
} } },
fetchedAt: { type: ['number', 'string'] },
},
},
chokepoint_transits: {
type: ['object', 'null'],
properties: {
transits: { type: 'object', additionalProperties: { type: 'object' } },
fetchedAt: { type: ['number', 'string'] },
},
},
_countries: {
type: ['array', 'object', 'null'],
items: { type: 'string' },
},
'chokepoint-baselines': {
type: ['object', 'null'],
properties: {
source: { type: 'string' }, referenceYear: { type: ['number', 'string'] },
updatedAt: { type: 'string' },
chokepoints: { type: 'array', items: { type: 'object', properties: {
id: { type: 'string' }, relayId: { type: 'string' }, name: { type: 'string' },
} } },
},
},
ref: {
type: ['object', 'null'],
additionalProperties: { type: 'object' },
},
'chokepoint-flows': {
type: ['object', 'null'],
additionalProperties: { type: 'object' },
},
}),
annotations: { readOnlyHint: true, destructiveHint: false, idempotentHint: true, openWorldHint: false },
_postFilter: (data, params) => {
const cp = argStr(params.chokepoint);
if (cp) {
mapNested(data, 'transit-summaries', 'summaries', (m) => pickMapKeysLike(m, cp));
mapNested(data, 'chokepoint_transits', 'transits', (m) => pickMapKeysLike(m, cp));
data['chokepoint-flows'] = pickMapKeysLike(data['chokepoint-flows'], cp);
narrowNested(data, 'chokepoint-baselines', 'chokepoints', (c) => ciIncludes(c.id, cp) || ciIncludes(c.relayId, cp) || ciIncludes(c.name, cp));
}
const limit = argNum(params.limit) ?? DEFAULT_LIST_LIMIT;
capNested(data, 'chokepoint-baselines', 'chokepoints', limit);
// _countries is the only top-level array in this bundle (string[] of ISO2 codes).
capArrays(data, limit);
return selectDatasets(data, argStrList(params.dataset));
},
// Maritime chokepoint bundle distinct from get_supply_chain_data (which keeps
// shipping-stress + customs + comtrade). Cadences span 10-minute relay
// (transit-summaries, chokepoint_transits) to ~400-day static registries
// (chokepoint-baselines), so per-key _freshnessChecks pulled from
// api/health.js::SEED_META — a fast transit outage isn't masked by the
// slow chokepoint-baselines budget, and the long-cadence portwatch keys
// don't drag aggregate stale flagging.
//
// Payload measurement (PR pre-merge, fun-toad-55127.upstash.io 2026-05-11):
// transit-summaries:v1 — 6.8 KB
// chokepoint_transits:v1 — 1.1 KB
// portwatch-ports:v1:_countries — 0.9 KB
// energy:chokepoint-baselines:v1 — 0.6 KB
// portwatch:chokepoints:ref:v1 — 7.9 KB
// energy:chokepoint-flows:v1 — 1.2 KB
// ────────────────────────────────────────────────────
// Total: 18.5 KB (well under the 200KB/single-key and 500KB/aggregate
// thresholds that historically tripped handler timeouts —
// see tests/transit-summaries.test.mjs:539-545).
//
// EXCLUDED on purpose: supply_chain:corridorrisk:v1 is an intermediate
// key whose data flows through supply_chain:transit-summaries:v1
// (api/health.js:461). U7 will add corridorrisk to EXCLUDED_FROM_MCP.
// MCP Apps (`io.modelcontextprotocol/ui`): links the tool to its interactive
// ui:// app shell. Single source of truth — registered in ../ui/registry.ts.
_uiResourceUri: CHOKEPOINT_MONITOR_UI_URI,
_cacheKeys: [
'supply_chain:transit-summaries:v1', // STANDALONE_KEYS::transitSummaries
'supply_chain:chokepoint_transits:v1', // STANDALONE_KEYS::chokepointTransits
'supply_chain:portwatch-ports:v1:_countries', // STANDALONE_KEYS::portwatchPortActivity
'energy:chokepoint-baselines:v1', // STANDALONE_KEYS::chokepointBaselines
'portwatch:chokepoints:ref:v1', // STANDALONE_KEYS::portwatchChokepointsRef
'energy:chokepoint-flows:v1', // STANDALONE_KEYS::chokepointFlows
],
_seedMetaKey: 'seed-meta:supply_chain:transit-summaries',
_maxStaleMin: 30, // transit-summaries 10-min relay baseline; per-key budgets via _freshnessChecks below
_freshnessChecks: [
{ key: 'seed-meta:supply_chain:transit-summaries', maxStaleMin: 30 }, // 10-min relay; 30min = 3× interval
{ key: 'seed-meta:supply_chain:chokepoint_transits', maxStaleMin: 30 }, // 10-min relay; 30min = 3× interval
{ key: 'seed-meta:supply_chain:portwatch-ports', maxStaleMin: 2160, minRecordCount: 174 }, // 12h cron; 36h = 3× interval; #3613 requires full country coverage
{ key: 'seed-meta:energy:chokepoint-baselines', maxStaleMin: 60 * 24 * 400 }, // ~400d static registry
{ key: 'seed-meta:portwatch:chokepoints-ref', maxStaleMin: 60 * 24 * 14 }, // weekly cron; 14d = 2× interval
{ key: 'seed-meta:energy:chokepoint-flows', maxStaleMin: 720 }, // 6h cron; 12h = 2× interval
],
_apiPaths: [
"GET /api/intelligence/v1/get-country-port-activity",
"GET /api/supply-chain/v1/get-chokepoint-status",
],
},
{
name: 'get_positive_events',
_outputBudgetBytes: 131072,
description: 'Positive geopolitical events: diplomatic agreements, humanitarian aid, development milestones, and peace initiatives worldwide.',
inputSchema: {
type: 'object',
properties: {
category: {
type: 'string',
enum: ['science-health', 'nature-wildlife', 'climate-wins', 'innovation-tech', 'humanity-kindness', 'culture-community'],
description: 'Filter to one positive-event category.',
},
limit: { type: 'number', description: 'Cap the event list to at most this many items (default 30, pass 0 for no cap).' },
},
required: [],
},
outputSchema: cacheEnvelope({
'geo-bootstrap': {
type: ['object', 'null'],
properties: { events: { type: 'array', items: { type: 'object', properties: {
category: { type: 'string' }, title: { type: 'string' }, summary: { type: 'string' },
date: { type: 'string' },
} } } },
},
}),
annotations: { readOnlyHint: true, destructiveHint: false, idempotentHint: true, openWorldHint: false },
_postFilter: (data, params) => {
const category = argStr(params.category);
if (category) narrowNested(data, 'geo-bootstrap', 'events', (e) => argStr(e.category) === category);
capNested(data, 'geo-bootstrap', 'events', (argNum(params.limit) ?? DEFAULT_LIST_LIMIT));
return data;
},
_cacheKeys: ['positive_events:geo-bootstrap:v1'],
_seedMetaKey: 'seed-meta:positive-events:geo',
_maxStaleMin: 60,
_apiPaths: [
'GET /api/positive-events/v1/list-positive-geo-events',
],
},
{
name: 'get_radiation_data',
_outputBudgetBytes: 131072,
description: 'Radiation observation levels from global monitoring stations. Flags anomalous readings that may indicate nuclear incidents.',
inputSchema: {
type: 'object',
properties: {
country: { type: 'string', description: 'Filter to one country by name (case-insensitive substring).' },
anomalous_only: {
type: 'boolean',
description: 'Drop observations with severity "normal" — keep only elevated/spike readings.',
},
limit: { type: 'number', description: 'Cap the observation list to at most this many items (default 30, pass 0 for no cap).' },
},
required: [],
},
outputSchema: cacheEnvelope({
observations: {
type: ['object', 'null'],
properties: { observations: { type: 'array', items: { type: 'object', properties: {
country: { type: 'string' }, severity: { type: 'string' },
stationName: { type: 'string' }, value: { type: ['number', 'null'] }, unit: { type: 'string' },
} } } },
},
}),
annotations: { readOnlyHint: true, destructiveHint: false, idempotentHint: true, openWorldHint: false },
_postFilter: (data, params) => {
const country = argStr(params.country);
if (country) narrowNested(data, 'observations', 'observations', (o) => ciIncludes(o.country, country));
if (argBool(params.anomalous_only)) {
narrowNested(data, 'observations', 'observations', (o) => !argStr(o.severity).endsWith('normal'));
}
capNested(data, 'observations', 'observations', (argNum(params.limit) ?? DEFAULT_LIST_LIMIT));
return data;
},
_cacheKeys: ['radiation:observations:v1'],
_seedMetaKey: 'seed-meta:radiation:observations',
_maxStaleMin: 30,
_apiPaths: [
"GET /api/radiation/v1/list-radiation-observations",
],
},
{
name: 'get_research_signals',
_outputBudgetBytes: 131072,
description: 'Tech and research event signals: emerging technology events bootstrap data from curated research feeds.',
inputSchema: {
type: 'object',
properties: {
type: {
type: 'string',
enum: ['conference', 'earnings', 'ipo', 'other'],
description: 'Filter to one tech-event type.',
},
source: { type: 'string', description: 'Filter to one source feed (e.g. "techmeme", "dev.events", "curated").' },
limit: { type: 'number', description: 'Cap the event list to at most this many items (default 30, pass 0 for no cap).' },
},
required: [],
},
outputSchema: cacheEnvelope({
'tech-events-bootstrap': {
type: ['object', 'null'],
properties: { events: { type: 'array', items: { type: 'object', properties: {
type: { type: 'string' }, source: { type: 'string' },
title: { type: 'string' }, date: { type: 'string' },
} } } },
},
}),
annotations: { readOnlyHint: true, destructiveHint: false, idempotentHint: true, openWorldHint: false },
_postFilter: (data, params) => {
const type = argStr(params.type);
const source = argStr(params.source);
if (type) narrowNested(data, 'tech-events-bootstrap', 'events', (e) => argStr(e.type) === type);
if (source) narrowNested(data, 'tech-events-bootstrap', 'events', (e) => argStr(e.source) === source);
capNested(data, 'tech-events-bootstrap', 'events', (argNum(params.limit) ?? DEFAULT_LIST_LIMIT));
return data;
},
_cacheKeys: ['research:tech-events-bootstrap:v1'],
_seedMetaKey: 'seed-meta:research:tech-events',
_maxStaleMin: 480,
_apiPaths: [
'GET /api/research/v1/list-tech-events',
],
},
{
name: 'get_forecast_predictions',
_uiResourceUri: FORECASTS_UI_URI,
_outputBudgetBytes: 131072,
description: 'AI-generated geopolitical and economic forecasts from WorldMonitor\'s predictive models. Covers upcoming risk events and probability assessments.',
inputSchema: {
type: 'object',
properties: {
domain: { type: 'string', description: 'Filter to one forecast domain (exact, case-insensitive — e.g. "shipping", "energy", "macro").' },
region: { type: 'string', description: 'Filter to one region/theater (case-insensitive substring).' },
limit: { type: 'number', description: 'Cap the forecast list to at most this many items (default 30, pass 0 for no cap).' },
},
required: [],
},
outputSchema: cacheEnvelope({
predictions: {
type: ['object', 'null'],
properties: { predictions: { type: 'array', items: { type: 'object', properties: {
domain: { type: 'string' }, region: { type: 'string' },
probability: { type: ['number', 'null'] }, title: { type: 'string' },
} } } },
},
}),
annotations: { readOnlyHint: true, destructiveHint: false, idempotentHint: true, openWorldHint: false },
_postFilter: (data, params) => {
const domain = argStr(params.domain);
const region = argStr(params.region);
if (domain) narrowNested(data, 'predictions', 'predictions', (p) => argStr(p.domain) === domain);
if (region) narrowNested(data, 'predictions', 'predictions', (p) => ciIncludes(p.region, region));
capNested(data, 'predictions', 'predictions', (argNum(params.limit) ?? DEFAULT_LIST_LIMIT));
return data;
},
_cacheKeys: ['forecast:predictions:v2'],
_seedMetaKey: 'seed-meta:forecast:predictions',
_maxStaleMin: 90,
_apiPaths: [
"GET /api/forecast/v1/get-forecasts",
],
},
{
name: 'get_forecast_scorecard',
_outputBudgetBytes: 65536,
description: 'Forecast resolution scorecard with calibration, Brier/log score, domain and generation-origin breakdowns, and pending/judged resolution counts.',
inputSchema: {
type: 'object',
properties: {},
required: [],
},
outputSchema: cacheEnvelope({
scorecard: {
type: ['object', 'null'],
properties: {
generatedAt: { type: ['number', 'null'] },
rollingWindowDays: { type: ['number', 'null'] },
totals: { type: ['object', 'null'] },
overall: { type: ['object', 'null'] },
skill: { type: ['object', 'null'] },
byDomain: { type: 'array', items: { type: 'object' } },
byGenerationOrigin: { type: 'array', items: { type: 'object' } },
calibration: { type: 'array', items: { type: 'object' } },
vsMarketSkill: { type: ['object', 'null'] },
},
},
}),
annotations: { readOnlyHint: true, destructiveHint: false, idempotentHint: true, openWorldHint: false },
_cacheKeys: ['forecast:scorecard:v1'],
_seedMetaKey: 'seed-meta:forecast:scorecard',
_maxStaleMin: 2160,
_apiPaths: [
"GET /api/forecast/v1/get-forecast-scorecard",
],
},
// -------------------------------------------------------------------------
// Social velocity — cache read (Reddit signals, seeded by relay)
// -------------------------------------------------------------------------
{
name: 'get_social_velocity',
_outputBudgetBytes: 131072,
description: 'Reddit geopolitical social velocity: top posts from worldnews, geopolitics, and related subreddits with engagement scores and trend signals.',
inputSchema: {
type: 'object',
properties: {
subreddit: { type: 'string', description: 'Filter to one subreddit (e.g. "worldnews", "geopolitics").' },
limit: { type: 'number', description: 'Cap the post list to at most this many items (default 30, pass 0 for no cap).' },
},
required: [],
},
outputSchema: cacheEnvelope({
reddit: {
type: ['object', 'null'],
properties: { posts: { type: 'array', items: { type: 'object', properties: {
subreddit: { type: 'string' }, title: { type: 'string' },
score: { type: ['number', 'null'] }, url: { type: 'string' }, createdAt: { type: ['string', 'number'] },
} } } },
},
}),
annotations: { readOnlyHint: true, destructiveHint: false, idempotentHint: true, openWorldHint: false },
_postFilter: (data, params) => {
const sub = argStr(params.subreddit);
if (sub) narrowNested(data, 'reddit', 'posts', (p) => argStr(p.subreddit) === sub);
capNested(data, 'reddit', 'posts', (argNum(params.limit) ?? DEFAULT_LIST_LIMIT));
return data;
},
_cacheKeys: ['intelligence:social:reddit:v1'],
_seedMetaKey: 'seed-meta:intelligence:social-reddit',
_maxStaleMin: 30,
_apiPaths: [
"GET /api/intelligence/v1/get-social-velocity",
],
},
{
name: 'get_temporal_anomalies',
_outputBudgetBytes: 65536,
description:
'Temporal anomaly watch: current event counts vs day-of-week and seasonal baselines, scored by z-score severity. ' +
'Surfaces where activity is statistically abnormal right now — news velocity, satellite fire detections, and other tracked ' +
'streams are compared against 90-day Welford baselines keyed by weekday and month, so a Tuesday in July is only compared ' +
'to prior Tuesdays in July. Each anomaly carries the observed count, expected baseline count, z-score, multiplier, and a ' +
'severity band (medium >= 1.5σ, high >= 2σ, critical >= 3σ). Filter by stream type, region, or minimum severity. An empty ' +
'anomaly list with fresh data means activity is within normal bounds — that is itself signal.',
inputSchema: {
type: 'object',
properties: {
type: {
type: 'string',
description: 'Filter to one tracked stream type (e.g. "news", "satellite_fires"); see trackedTypes in the response for what is currently baselined.',
},
region: { type: 'string', description: 'Filter to one region label (case-insensitive exact match).' },
min_severity: {
type: 'string',
enum: ['medium', 'high', 'critical'],
description: 'Drop anomalies below this severity band.',
},
limit: { type: 'number', description: 'Cap the anomaly list to at most this many items (default 30, pass 0 for no cap).' },
},
required: [],
},
outputSchema: cacheEnvelope({
snapshot: {
type: ['object', 'null'],
properties: {
anomalies: {
type: 'array',
items: {
type: 'object',
properties: {
type: { type: 'string' }, region: { type: 'string' },
currentCount: { type: 'number' }, expectedCount: { type: 'number' },
zScore: { type: 'number' }, severity: { type: 'string' },
multiplier: { type: 'number' }, message: { type: 'string' },
},
},
},
trackedTypes: { type: 'array', items: { type: 'string' } },
computedAt: { type: 'string' },
},
},
}),
annotations: { readOnlyHint: true, destructiveHint: false, idempotentHint: true, openWorldHint: false },
_postFilter: (data, params) => {
const type = argStr(params.type);
const region = argStr(params.region);
const minSeverity = argStr(params.min_severity);
const severityRank: Record<string, number> = { medium: 1, high: 2, critical: 3 };
const floor = minSeverity ? (severityRank[minSeverity] ?? 0) : 0;
narrowNested(data, 'snapshot', 'anomalies', (a) => {
if (type && String(a.type ?? '').toLowerCase() !== type) return false;
if (region && String(a.region ?? '').toLowerCase() !== region) return false;
if (floor && (severityRank[String(a.severity ?? '')] ?? 0) < floor) return false;
return true;
});
capNested(data, 'snapshot', 'anomalies', (argNum(params.limit) ?? DEFAULT_LIST_LIMIT));
return data;
},
_cacheKeys: ['temporal:anomalies:v1'],
_cacheLabels: { 'temporal:anomalies:v1': 'snapshot' },
_seedMetaKey: 'seed-meta:temporal:anomalies',
_maxStaleMin: 45,
_apiPaths: [],
},
{
name: 'get_test_site_seismicity',
_outputBudgetBytes: 65536,
description:
'Nuclear test-site seismic monitor: USGS earthquakes near known test sites scored for proliferation concern. ' +
'Watches seismic events within 100 km of the monitored nuclear test sites (Punggye-ri, Lop Nur, Novaya Zemlya, the ' +
'Nevada National Security Site, Semipalatinsk, and other historical sites) and scores each event 0-100 from magnitude, ' +
'proximity, and depth — shallow events close to a site score highest, since underground tests are shallow by nature. ' +
'Concern bands: low, moderate, elevated, critical. Includes a per-site rollup (event count, max concern, max magnitude). ' +
'An empty list with fresh data means no seismicity near any monitored site in the current feed window.',
inputSchema: {
type: 'object',
properties: {
site: { type: 'string', description: 'Filter to one test site by name substring (e.g. "Punggye", "Lop Nur", case-insensitive).' },
min_concern: {
type: 'string',
enum: ['low', 'moderate', 'elevated', 'critical'],
description: 'Drop events below this concern band.',
},
limit: { type: 'number', description: 'Cap the event list to at most this many items (default 30, pass 0 for no cap).' },
},
required: [],
},
outputSchema: cacheEnvelope({
earthquakes: {
type: ['object', 'null'],
properties: {
earthquakes: {
type: 'array',
items: {
type: 'object',
properties: {
id: { type: 'string' }, place: { type: 'string' },
magnitude: { type: 'number' }, depthKm: { type: 'number' },
location: {
type: 'object',
properties: { latitude: { type: 'number' }, longitude: { type: 'number' } },
},
occurredAt: { type: 'number' },
nearTestSite: { type: 'boolean' }, testSiteName: { type: 'string' },
concernScore: { type: 'number' }, concernLevel: { type: 'string' },
},
},
},
siteSummary: {
type: 'array',
items: {
type: 'object',
properties: {
site: { type: 'string' }, eventCount: { type: 'number' },
maxConcernScore: { type: 'number' }, maxConcernLevel: { type: 'string' },
maxMagnitude: { type: 'number' },
},
},
},
},
},
}),
annotations: { readOnlyHint: true, destructiveHint: false, idempotentHint: true, openWorldHint: false },
_postFilter: (data, params) => {
const site = argStr(params.site);
const minConcern = argStr(params.min_concern);
const concernRank: Record<string, number> = { low: 1, moderate: 2, elevated: 3, critical: 4 };
const floor = minConcern ? (concernRank[minConcern] ?? 0) : 0;
narrowNested(data, 'earthquakes', 'earthquakes', (q) => {
const siteName = typeof q.testSiteName === 'string' ? q.testSiteName : '';
if (!q.nearTestSite && !siteName && typeof q.concernScore !== 'number') return false;
if (site && !siteName.toLowerCase().includes(site)) return false;
if (floor && (concernRank[String(q.concernLevel ?? '')] ?? 0) < floor) return false;
return true;
});
const payload = data.earthquakes as {
earthquakes?: Array<Record<string, unknown>>;
siteSummary?: Array<Record<string, unknown>>;
} | null;
if (payload && Array.isArray(payload.earthquakes)) {
const bySite = new Map<string, { site: string; eventCount: number; maxConcernScore: number; maxConcernLevel: string; maxMagnitude: number }>();
for (const q of payload.earthquakes) {
const name = (typeof q.testSiteName === 'string' && q.testSiteName) || 'Unattributed';
const entry = bySite.get(name) ?? { site: name, eventCount: 0, maxConcernScore: 0, maxConcernLevel: '', maxMagnitude: 0 };
entry.eventCount += 1;
const score = typeof q.concernScore === 'number' ? q.concernScore : 0;
if (score >= entry.maxConcernScore) {
entry.maxConcernScore = score;
entry.maxConcernLevel = typeof q.concernLevel === 'string' ? q.concernLevel : entry.maxConcernLevel;
}
const mag = typeof q.magnitude === 'number' ? q.magnitude : 0;
if (mag > entry.maxMagnitude) entry.maxMagnitude = mag;
bySite.set(name, entry);
}
payload.siteSummary = [...bySite.values()].sort((a, b) => b.maxConcernScore - a.maxConcernScore);
}
capNested(data, 'earthquakes', 'earthquakes', (argNum(params.limit) ?? DEFAULT_LIST_LIMIT));
return data;
},
_cacheKeys: ['seismology:earthquakes:v1'],
_cacheLabels: { 'seismology:earthquakes:v1': 'earthquakes' },
_seedMetaKey: 'seed-meta:seismology:earthquakes',
_maxStaleMin: 30,
_apiPaths: [],
},
];
|