File size: 119,167 Bytes
064bfd6 | 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 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 | import { feature } from 'bun:bundle'
import type {
Base64ImageSource,
ContentBlockParam,
MessageParam,
} from '@anthropic-ai/sdk/resources/index.mjs'
import { Client } from '@modelcontextprotocol/sdk/client/index.js'
import {
SSEClientTransport,
type SSEClientTransportOptions,
} from '@modelcontextprotocol/sdk/client/sse.js'
import { StdioClientTransport } from '@modelcontextprotocol/sdk/client/stdio.js'
import {
StreamableHTTPClientTransport,
type StreamableHTTPClientTransportOptions,
} from '@modelcontextprotocol/sdk/client/streamableHttp.js'
import {
createFetchWithInit,
type FetchLike,
type Transport,
} from '@modelcontextprotocol/sdk/shared/transport.js'
import {
CallToolResultSchema,
ElicitRequestSchema,
type ElicitRequestURLParams,
type ElicitResult,
ErrorCode,
type JSONRPCMessage,
type ListPromptsResult,
ListPromptsResultSchema,
ListResourcesResultSchema,
ListRootsRequestSchema,
type ListToolsResult,
ListToolsResultSchema,
McpError,
type PromptMessage,
type ResourceLink,
} from '@modelcontextprotocol/sdk/types.js'
import mapValues from 'lodash-es/mapValues.js'
import memoize from 'lodash-es/memoize.js'
import zipObject from 'lodash-es/zipObject.js'
import pMap from 'p-map'
import { getOriginalCwd, getSessionId } from '../../bootstrap/state.js'
import type { Command } from '../../commands.js'
import { getOauthConfig } from '../../constants/oauth.js'
import { PRODUCT_URL } from '../../constants/product.js'
import type { AppState } from '../../state/AppState.js'
import {
type Tool,
type ToolCallProgress,
toolMatchesName,
} from '../../Tool.js'
import { ListMcpResourcesTool } from '../../tools/ListMcpResourcesTool/ListMcpResourcesTool.js'
import { type MCPProgress, MCPTool } from '../../tools/MCPTool/MCPTool.js'
import { createMcpAuthTool } from '../../tools/McpAuthTool/McpAuthTool.js'
import { ReadMcpResourceTool } from '../../tools/ReadMcpResourceTool/ReadMcpResourceTool.js'
import { createAbortController } from '../../utils/abortController.js'
import { count } from '../../utils/array.js'
import {
checkAndRefreshOAuthTokenIfNeeded,
getClaudeAIOAuthTokens,
handleOAuth401Error,
} from '../../utils/auth.js'
import { registerCleanup } from '../../utils/cleanupRegistry.js'
import { detectCodeIndexingFromMcpServerName } from '../../utils/codeIndexing.js'
import { logForDebugging } from '../../utils/debug.js'
import { isEnvDefinedFalsy, isEnvTruthy } from '../../utils/envUtils.js'
import {
errorMessage,
TelemetrySafeError_I_VERIFIED_THIS_IS_NOT_CODE_OR_FILEPATHS,
} from '../../utils/errors.js'
import { getMCPUserAgent } from '../../utils/http.js'
import { maybeNotifyIDEConnected } from '../../utils/ide.js'
import { maybeResizeAndDownsampleImageBuffer } from '../../utils/imageResizer.js'
import { logMCPDebug, logMCPError } from '../../utils/log.js'
import {
getBinaryBlobSavedMessage,
getFormatDescription,
getLargeOutputInstructions,
persistBinaryContent,
} from '../../utils/mcpOutputStorage.js'
import {
getContentSizeEstimate,
type MCPToolResult,
mcpContentNeedsTruncation,
truncateMcpContentIfNeeded,
} from '../../utils/mcpValidation.js'
import { WebSocketTransport } from '../../utils/mcpWebSocketTransport.js'
import { memoizeWithLRU } from '../../utils/memoize.js'
import { getWebSocketTLSOptions } from '../../utils/mtls.js'
import {
getProxyFetchOptions,
getWebSocketProxyAgent,
getWebSocketProxyUrl,
} from '../../utils/proxy.js'
import { recursivelySanitizeUnicode } from '../../utils/sanitization.js'
import { getSessionIngressAuthToken } from '../../utils/sessionIngressAuth.js'
import { subprocessEnv } from '../../utils/subprocessEnv.js'
import {
isPersistError,
persistToolResult,
} from '../../utils/toolResultStorage.js'
import {
type AnalyticsMetadata_I_VERIFIED_THIS_IS_NOT_CODE_OR_FILEPATHS,
logEvent,
} from '../analytics/index.js'
import {
type ElicitationWaitingState,
runElicitationHooks,
runElicitationResultHooks,
} from './elicitationHandler.js'
import { buildMcpToolName } from './mcpStringUtils.js'
import { normalizeNameForMCP } from './normalization.js'
import { getLoggingSafeMcpBaseUrl } from './utils.js'
/* eslint-disable @typescript-eslint/no-require-imports */
const fetchMcpSkillsForClient = feature('MCP_SKILLS')
? (
require('../../skills/mcpSkills.js') as typeof import('../../skills/mcpSkills.js')
).fetchMcpSkillsForClient
: null
import { UnauthorizedError } from '@modelcontextprotocol/sdk/client/auth.js'
import type { AssistantMessage } from 'src/types/message.js'
/* eslint-enable @typescript-eslint/no-require-imports */
import { classifyMcpToolForCollapse } from '../../tools/MCPTool/classifyForCollapse.js'
import { clearKeychainCache } from '../../utils/secureStorage/macOsKeychainHelpers.js'
import { sleep } from '../../utils/sleep.js'
import {
ClaudeAuthProvider,
hasMcpDiscoveryButNoToken,
wrapFetchWithStepUpDetection,
} from './auth.js'
import { markClaudeAiMcpConnected } from './claudeai.js'
import { getAllMcpConfigs, isMcpServerDisabled } from './config.js'
import { getMcpServerHeaders } from './headersHelper.js'
import { SdkControlClientTransport } from './SdkControlTransport.js'
import type {
ConnectedMCPServer,
MCPServerConnection,
McpSdkServerConfig,
ScopedMcpServerConfig,
ServerResource,
} from './types.js'
/**
* Custom error class to indicate that an MCP tool call failed due to
* authentication issues (e.g., expired OAuth token returning 401).
* This error should be caught at the tool execution layer to update
* the client's status to 'needs-auth'.
*/
export class McpAuthError extends Error {
serverName: string
constructor(serverName: string, message: string) {
super(message)
this.name = 'McpAuthError'
this.serverName = serverName
}
}
/**
* Thrown when an MCP session has expired and the connection cache has been cleared.
* The caller should get a fresh client via ensureConnectedClient and retry.
*/
class McpSessionExpiredError extends Error {
constructor(serverName: string) {
super(`MCP server "${serverName}" session expired`)
this.name = 'McpSessionExpiredError'
}
}
/**
* Thrown when an MCP tool returns `isError: true`. Carries the result's `_meta`
* so SDK consumers can still receive it — per the MCP spec, `_meta` is on the
* base Result type and is valid on error results.
*/
export class McpToolCallError_I_VERIFIED_THIS_IS_NOT_CODE_OR_FILEPATHS extends TelemetrySafeError_I_VERIFIED_THIS_IS_NOT_CODE_OR_FILEPATHS {
constructor(
message: string,
telemetryMessage: string,
readonly mcpMeta?: { _meta?: Record<string, unknown> },
) {
super(message, telemetryMessage)
this.name = 'McpToolCallError'
}
}
/**
* Detects whether an error is an MCP "Session not found" error (HTTP 404 + JSON-RPC code -32001).
* Per the MCP spec, servers return 404 when a session ID is no longer valid.
* We check both signals to avoid false positives from generic 404s (wrong URL, server gone, etc.).
*/
export function isMcpSessionExpiredError(error: Error): boolean {
const httpStatus =
'code' in error ? (error as Error & { code?: number }).code : undefined
if (httpStatus !== 404) {
return false
}
// The SDK embeds the response body text in the error message.
// MCP servers return: {"error":{"code":-32001,"message":"Session not found"},...}
// Check for the JSON-RPC error code to distinguish from generic web server 404s.
return (
error.message.includes('"code":-32001') ||
error.message.includes('"code": -32001')
)
}
/**
* Default timeout for MCP tool calls (effectively infinite - ~27.8 hours).
*/
const DEFAULT_MCP_TOOL_TIMEOUT_MS = 100_000_000
/**
* Cap on MCP tool descriptions and server instructions sent to the model.
* OpenAPI-generated MCP servers have been observed dumping 15-60KB of endpoint
* docs into tool.description; this caps the p95 tail without losing the intent.
*/
const MAX_MCP_DESCRIPTION_LENGTH = 2048
/**
* Gets the timeout for MCP tool calls in milliseconds.
* Uses MCP_TOOL_TIMEOUT environment variable if set, otherwise defaults to ~27.8 hours.
*/
function getMcpToolTimeoutMs(): number {
return (
parseInt(process.env.MCP_TOOL_TIMEOUT || '', 10) ||
DEFAULT_MCP_TOOL_TIMEOUT_MS
)
}
import { isClaudeInChromeMCPServer } from '../../utils/claudeInChrome/common.js'
// Lazy: toolRendering.tsx pulls React/ink; only needed when Claude-in-Chrome MCP server is connected
/* eslint-disable @typescript-eslint/no-require-imports */
const claudeInChromeToolRendering =
(): typeof import('../../utils/claudeInChrome/toolRendering.js') =>
require('../../utils/claudeInChrome/toolRendering.js')
// Lazy: wrapper.tsx → hostAdapter.ts → executor.ts pulls both native modules
// (@ant/computer-use-input + @ant/computer-use-swift). Runtime-gated by
// GrowthBook tengu_malort_pedway (see gates.ts).
const computerUseWrapper = feature('CHICAGO_MCP')
? (): typeof import('../../utils/computerUse/wrapper.js') =>
require('../../utils/computerUse/wrapper.js')
: undefined
const isComputerUseMCPServer = feature('CHICAGO_MCP')
? (
require('../../utils/computerUse/common.js') as typeof import('../../utils/computerUse/common.js')
).isComputerUseMCPServer
: undefined
import { mkdir, readFile, unlink, writeFile } from 'fs/promises'
import { dirname, join } from 'path'
import { getClaudeConfigHomeDir } from '../../utils/envUtils.js'
/* eslint-enable @typescript-eslint/no-require-imports */
import { jsonParse, jsonStringify } from '../../utils/slowOperations.js'
const MCP_AUTH_CACHE_TTL_MS = 15 * 60 * 1000 // 15 min
type McpAuthCacheData = Record<string, { timestamp: number }>
function getMcpAuthCachePath(): string {
return join(getClaudeConfigHomeDir(), 'mcp-needs-auth-cache.json')
}
// Memoized so N concurrent isMcpAuthCached() calls during batched connection
// share a single file read instead of N reads of the same file. Invalidated
// on write (setMcpAuthCacheEntry) and clear (clearMcpAuthCache). Not using
// lodash memoize because we need to null out the cache, not delete by key.
let authCachePromise: Promise<McpAuthCacheData> | null = null
function getMcpAuthCache(): Promise<McpAuthCacheData> {
if (!authCachePromise) {
authCachePromise = readFile(getMcpAuthCachePath(), 'utf-8')
.then(data => jsonParse(data) as McpAuthCacheData)
.catch(() => ({}))
}
return authCachePromise
}
async function isMcpAuthCached(serverId: string): Promise<boolean> {
const cache = await getMcpAuthCache()
const entry = cache[serverId]
if (!entry) {
return false
}
return Date.now() - entry.timestamp < MCP_AUTH_CACHE_TTL_MS
}
// Serialize cache writes through a promise chain to prevent concurrent
// read-modify-write races when multiple servers return 401 in the same batch
let writeChain = Promise.resolve()
function setMcpAuthCacheEntry(serverId: string): void {
writeChain = writeChain
.then(async () => {
const cache = await getMcpAuthCache()
cache[serverId] = { timestamp: Date.now() }
const cachePath = getMcpAuthCachePath()
await mkdir(dirname(cachePath), { recursive: true })
await writeFile(cachePath, jsonStringify(cache))
// Invalidate the read cache so subsequent reads see the new entry.
// Safe because writeChain serializes writes: the next write's
// getMcpAuthCache() call will re-read the file with this entry present.
authCachePromise = null
})
.catch(() => {
// Best-effort cache write
})
}
export function clearMcpAuthCache(): void {
authCachePromise = null
void unlink(getMcpAuthCachePath()).catch(() => {
// Cache file may not exist
})
}
/**
* Spread-ready analytics field for the server's base URL. Calls
* getLoggingSafeMcpBaseUrl once (not twice like the inline ternary it replaces).
* Typed as AnalyticsMetadata since the URL is query-stripped and safe to log.
*/
function mcpBaseUrlAnalytics(serverRef: ScopedMcpServerConfig): {
mcpServerBaseUrl?: AnalyticsMetadata_I_VERIFIED_THIS_IS_NOT_CODE_OR_FILEPATHS
} {
const url = getLoggingSafeMcpBaseUrl(serverRef)
return url
? {
mcpServerBaseUrl:
url as AnalyticsMetadata_I_VERIFIED_THIS_IS_NOT_CODE_OR_FILEPATHS,
}
: {}
}
/**
* Shared handler for sse/http/claudeai-proxy auth failures during connect:
* emits tengu_mcp_server_needs_auth, caches the needs-auth entry, and returns
* the needs-auth connection result.
*/
function handleRemoteAuthFailure(
name: string,
serverRef: ScopedMcpServerConfig,
transportType: 'sse' | 'http' | 'claudeai-proxy',
): MCPServerConnection {
logEvent('tengu_mcp_server_needs_auth', {
transportType:
transportType as AnalyticsMetadata_I_VERIFIED_THIS_IS_NOT_CODE_OR_FILEPATHS,
...mcpBaseUrlAnalytics(serverRef),
})
const label: Record<typeof transportType, string> = {
sse: 'SSE',
http: 'HTTP',
'claudeai-proxy': 'claude.ai proxy',
}
logMCPDebug(
name,
`Authentication required for ${label[transportType]} server`,
)
setMcpAuthCacheEntry(name)
return { name, type: 'needs-auth', config: serverRef }
}
/**
* Fetch wrapper for claude.ai proxy connections. Attaches the OAuth bearer
* token and retries once on 401 via handleOAuth401Error (force-refresh).
*
* The Anthropic API path has this retry (withRetry.ts, grove.ts) to handle
* memoize-cache staleness and clock drift. Without the same here, a single
* stale token mass-401s every claude.ai connector and sticks them all in the
* 15-min needs-auth cache.
*/
export function createClaudeAiProxyFetch(innerFetch: FetchLike): FetchLike {
return async (url, init) => {
const doRequest = async () => {
await checkAndRefreshOAuthTokenIfNeeded()
const currentTokens = getClaudeAIOAuthTokens()
if (!currentTokens) {
throw new Error('No claude.ai OAuth token available')
}
// eslint-disable-next-line eslint-plugin-n/no-unsupported-features/node-builtins
const headers = new Headers(init?.headers)
headers.set('Authorization', `Bearer ${currentTokens.accessToken}`)
const response = await innerFetch(url, { ...init, headers })
// Return the exact token that was sent. Reading getClaudeAIOAuthTokens()
// again after the request is wrong under concurrent 401s: another
// connector's handleOAuth401Error clears the memoize cache, so we'd read
// the NEW token from keychain, pass it to handleOAuth401Error, which
// finds same-as-keychain → returns false → skips retry. Same pattern as
// bridgeApi.ts withOAuthRetry (token passed as fn param).
return { response, sentToken: currentTokens.accessToken }
}
const { response, sentToken } = await doRequest()
if (response.status !== 401) {
return response
}
// handleOAuth401Error returns true only if the token actually changed
// (keychain had a newer one, or force-refresh succeeded). Gate retry on
// that — otherwise we double round-trip time for every connector whose
// downstream service genuinely needs auth (the common case: 30+ servers
// with "MCP server requires authentication but no OAuth token configured").
const tokenChanged = await handleOAuth401Error(sentToken).catch(() => false)
logEvent('tengu_mcp_claudeai_proxy_401', {
tokenChanged:
tokenChanged as AnalyticsMetadata_I_VERIFIED_THIS_IS_NOT_CODE_OR_FILEPATHS,
})
if (!tokenChanged) {
// ELOCKED contention: another connector may have won the lockfile and refreshed — check if token changed underneath us
const now = getClaudeAIOAuthTokens()?.accessToken
if (!now || now === sentToken) {
return response
}
}
try {
return (await doRequest()).response
} catch {
// Retry itself failed (network error). Return the original 401 so the
// outer handler can classify it.
return response
}
}
}
// Minimal interface for WebSocket instances passed to mcpWebSocketTransport
type WsClientLike = {
readonly readyState: number
close(): void
send(data: string): void
}
/**
* Create a ws.WebSocket client with the MCP protocol.
* Bun's ws shim types lack the 3-arg constructor (url, protocols, options)
* that the real ws package supports, so we cast the constructor here.
*/
async function createNodeWsClient(
url: string,
options: Record<string, unknown>,
): Promise<WsClientLike> {
const wsModule = await import('ws')
const WS = wsModule.default as unknown as new (
url: string,
protocols: string[],
options: Record<string, unknown>,
) => WsClientLike
return new WS(url, ['mcp'], options)
}
const IMAGE_MIME_TYPES = new Set([
'image/jpeg',
'image/png',
'image/gif',
'image/webp',
])
function getConnectionTimeoutMs(): number {
return parseInt(process.env.MCP_TIMEOUT || '', 10) || 30000
}
/**
* Default timeout for individual MCP requests (auth, tool calls, etc.)
*/
const MCP_REQUEST_TIMEOUT_MS = 60000
/**
* MCP Streamable HTTP spec requires clients to advertise acceptance of both
* JSON and SSE on every POST. Servers that enforce this strictly reject
* requests without it (HTTP 406).
* https://modelcontextprotocol.io/specification/2025-03-26/basic/transports#sending-messages-to-the-server
*/
const MCP_STREAMABLE_HTTP_ACCEPT = 'application/json, text/event-stream'
/**
* Wraps a fetch function to apply a fresh timeout signal to each request.
* This avoids the bug where a single AbortSignal.timeout() created at connection
* time becomes stale after 60 seconds, causing all subsequent requests to fail
* immediately with "The operation timed out." Uses a 60-second timeout.
*
* Also ensures the Accept header required by the MCP Streamable HTTP spec is
* present on POSTs. The MCP SDK sets this inside StreamableHTTPClientTransport.send(),
* but it is attached to a Headers instance that passes through an object spread here,
* and some runtimes/agents have been observed dropping it before it reaches the wire.
* See https://github.com/anthropics/claude-agent-sdk-typescript/issues/202.
* Normalizing here (the last wrapper before fetch()) guarantees it is sent.
*
* GET requests are excluded from the timeout since, for MCP transports, they are
* long-lived SSE streams meant to stay open indefinitely. (Auth-related GETs use
* a separate fetch wrapper with its own timeout in auth.ts.)
*
* @param baseFetch - The fetch function to wrap
*/
export function wrapFetchWithTimeout(baseFetch: FetchLike): FetchLike {
return async (url: string | URL, init?: RequestInit) => {
const method = (init?.method ?? 'GET').toUpperCase()
// Skip timeout for GET requests - in MCP transports, these are long-lived SSE streams.
// (OAuth discovery GETs in auth.ts use a separate createAuthFetch() with its own timeout.)
if (method === 'GET') {
return baseFetch(url, init)
}
// Normalize headers and guarantee the Streamable-HTTP Accept value. new Headers()
// accepts HeadersInit | undefined and copies from plain objects, tuple arrays,
// and existing Headers instances — so whatever shape the SDK handed us, the
// Accept value survives the spread below as an own property of a concrete object.
// eslint-disable-next-line eslint-plugin-n/no-unsupported-features/node-builtins
const headers = new Headers(init?.headers)
if (!headers.has('accept')) {
headers.set('accept', MCP_STREAMABLE_HTTP_ACCEPT)
}
// Use setTimeout instead of AbortSignal.timeout() so we can clearTimeout on
// completion. AbortSignal.timeout's internal timer is only released when the
// signal is GC'd, which in Bun is lazy — ~2.4KB of native memory per request
// lingers for the full 60s even when the request completes in milliseconds.
const controller = new AbortController()
const timer = setTimeout(
c =>
c.abort(new DOMException('The operation timed out.', 'TimeoutError')),
MCP_REQUEST_TIMEOUT_MS,
controller,
)
timer.unref?.()
const parentSignal = init?.signal
const abort = () => controller.abort(parentSignal?.reason)
parentSignal?.addEventListener('abort', abort)
if (parentSignal?.aborted) {
controller.abort(parentSignal.reason)
}
const cleanup = () => {
clearTimeout(timer)
parentSignal?.removeEventListener('abort', abort)
}
try {
const response = await baseFetch(url, {
...init,
headers,
signal: controller.signal,
})
cleanup()
return response
} catch (error) {
cleanup()
throw error
}
}
}
export function getMcpServerConnectionBatchSize(): number {
return parseInt(process.env.MCP_SERVER_CONNECTION_BATCH_SIZE || '', 10) || 3
}
function getRemoteMcpServerConnectionBatchSize(): number {
return (
parseInt(process.env.MCP_REMOTE_SERVER_CONNECTION_BATCH_SIZE || '', 10) ||
20
)
}
function isLocalMcpServer(config: ScopedMcpServerConfig): boolean {
return !config.type || config.type === 'stdio' || config.type === 'sdk'
}
// For the IDE MCP servers, we only include specific tools
const ALLOWED_IDE_TOOLS = ['mcp__ide__executeCode', 'mcp__ide__getDiagnostics']
function isIncludedMcpTool(tool: Tool): boolean {
return (
!tool.name.startsWith('mcp__ide__') || ALLOWED_IDE_TOOLS.includes(tool.name)
)
}
/**
* Generates the cache key for a server connection
* @param name Server name
* @param serverRef Server configuration
* @returns Cache key string
*/
export function getServerCacheKey(
name: string,
serverRef: ScopedMcpServerConfig,
): string {
return `${name}-${jsonStringify(serverRef)}`
}
/**
* TODO (ollie): The memoization here increases complexity by a lot, and im not sure it really improves performance
* Attempts to connect to a single MCP server
* @param name Server name
* @param serverRef Scoped server configuration
* @returns A wrapped client (either connected or failed)
*/
export const connectToServer = memoize(
async (
name: string,
serverRef: ScopedMcpServerConfig,
serverStats?: {
totalServers: number
stdioCount: number
sseCount: number
httpCount: number
sseIdeCount: number
wsIdeCount: number
},
): Promise<MCPServerConnection> => {
const connectStartTime = Date.now()
let inProcessServer:
| { connect(t: Transport): Promise<void>; close(): Promise<void> }
| undefined
try {
let transport
// If we have the session ingress JWT, we will connect via the session ingress rather than
// to remote MCP's directly.
const sessionIngressToken = getSessionIngressAuthToken()
if (serverRef.type === 'sse') {
// Create an auth provider for this server
const authProvider = new ClaudeAuthProvider(name, serverRef)
// Get combined headers (static + dynamic)
const combinedHeaders = await getMcpServerHeaders(name, serverRef)
// Use the auth provider with SSEClientTransport
const transportOptions: SSEClientTransportOptions = {
authProvider,
// Use fresh timeout per request to avoid stale AbortSignal bug.
// Step-up detection wraps innermost so the 403 is seen before the
// SDK's handler calls auth() → tokens().
fetch: wrapFetchWithTimeout(
wrapFetchWithStepUpDetection(createFetchWithInit(), authProvider),
),
requestInit: {
headers: {
'User-Agent': getMCPUserAgent(),
...combinedHeaders,
},
},
}
// IMPORTANT: Always set eventSourceInit with a fetch that does NOT use the
// timeout wrapper. The EventSource connection is long-lived (stays open indefinitely
// to receive server-sent events), so applying a 60-second timeout would kill it.
// The timeout is only meant for individual API requests (POST, auth refresh), not
// the persistent SSE stream.
transportOptions.eventSourceInit = {
fetch: async (url: string | URL, init?: RequestInit) => {
// Get auth headers from the auth provider
const authHeaders: Record<string, string> = {}
const tokens = await authProvider.tokens()
if (tokens) {
authHeaders.Authorization = `Bearer ${tokens.access_token}`
}
const proxyOptions = getProxyFetchOptions()
// eslint-disable-next-line eslint-plugin-n/no-unsupported-features/node-builtins
return fetch(url, {
...init,
...proxyOptions,
headers: {
'User-Agent': getMCPUserAgent(),
...authHeaders,
...init?.headers,
...combinedHeaders,
Accept: 'text/event-stream',
},
})
},
}
transport = new SSEClientTransport(
new URL(serverRef.url),
transportOptions,
)
logMCPDebug(name, `SSE transport initialized, awaiting connection`)
} else if (serverRef.type === 'sse-ide') {
logMCPDebug(name, `Setting up SSE-IDE transport to ${serverRef.url}`)
// IDE servers don't need authentication
// TODO: Use the auth token provided in the lockfile
const proxyOptions = getProxyFetchOptions()
const transportOptions: SSEClientTransportOptions =
proxyOptions.dispatcher
? {
eventSourceInit: {
fetch: async (url: string | URL, init?: RequestInit) => {
// eslint-disable-next-line eslint-plugin-n/no-unsupported-features/node-builtins
return fetch(url, {
...init,
...proxyOptions,
headers: {
'User-Agent': getMCPUserAgent(),
...init?.headers,
},
})
},
},
}
: {}
transport = new SSEClientTransport(
new URL(serverRef.url),
Object.keys(transportOptions).length > 0
? transportOptions
: undefined,
)
} else if (serverRef.type === 'ws-ide') {
const tlsOptions = getWebSocketTLSOptions()
const wsHeaders = {
'User-Agent': getMCPUserAgent(),
...(serverRef.authToken && {
'X-Claude-Code-Ide-Authorization': serverRef.authToken,
}),
}
let wsClient: WsClientLike
if (typeof Bun !== 'undefined') {
// Bun's WebSocket supports headers/proxy/tls options but the DOM typings don't
// eslint-disable-next-line eslint-plugin-n/no-unsupported-features/node-builtins
wsClient = new globalThis.WebSocket(serverRef.url, {
protocols: ['mcp'],
headers: wsHeaders,
proxy: getWebSocketProxyUrl(serverRef.url),
tls: tlsOptions || undefined,
} as unknown as string[])
} else {
wsClient = await createNodeWsClient(serverRef.url, {
headers: wsHeaders,
agent: getWebSocketProxyAgent(serverRef.url),
...(tlsOptions || {}),
})
}
transport = new WebSocketTransport(wsClient)
} else if (serverRef.type === 'ws') {
logMCPDebug(
name,
`Initializing WebSocket transport to ${serverRef.url}`,
)
const combinedHeaders = await getMcpServerHeaders(name, serverRef)
const tlsOptions = getWebSocketTLSOptions()
const wsHeaders = {
'User-Agent': getMCPUserAgent(),
...(sessionIngressToken && {
Authorization: `Bearer ${sessionIngressToken}`,
}),
...combinedHeaders,
}
// Redact sensitive headers before logging
const wsHeadersForLogging = mapValues(wsHeaders, (value, key) =>
key.toLowerCase() === 'authorization' ? '[REDACTED]' : value,
)
logMCPDebug(
name,
`WebSocket transport options: ${jsonStringify({
url: serverRef.url,
headers: wsHeadersForLogging,
hasSessionAuth: !!sessionIngressToken,
})}`,
)
let wsClient: WsClientLike
if (typeof Bun !== 'undefined') {
// Bun's WebSocket supports headers/proxy/tls options but the DOM typings don't
// eslint-disable-next-line eslint-plugin-n/no-unsupported-features/node-builtins
wsClient = new globalThis.WebSocket(serverRef.url, {
protocols: ['mcp'],
headers: wsHeaders,
proxy: getWebSocketProxyUrl(serverRef.url),
tls: tlsOptions || undefined,
} as unknown as string[])
} else {
wsClient = await createNodeWsClient(serverRef.url, {
headers: wsHeaders,
agent: getWebSocketProxyAgent(serverRef.url),
...(tlsOptions || {}),
})
}
transport = new WebSocketTransport(wsClient)
} else if (serverRef.type === 'http') {
logMCPDebug(name, `Initializing HTTP transport to ${serverRef.url}`)
logMCPDebug(
name,
`Node version: ${process.version}, Platform: ${process.platform}`,
)
logMCPDebug(
name,
`Environment: ${jsonStringify({
NODE_OPTIONS: process.env.NODE_OPTIONS || 'not set',
UV_THREADPOOL_SIZE: process.env.UV_THREADPOOL_SIZE || 'default',
HTTP_PROXY: process.env.HTTP_PROXY || 'not set',
HTTPS_PROXY: process.env.HTTPS_PROXY || 'not set',
NO_PROXY: process.env.NO_PROXY || 'not set',
})}`,
)
// Create an auth provider for this server
const authProvider = new ClaudeAuthProvider(name, serverRef)
// Get combined headers (static + dynamic)
const combinedHeaders = await getMcpServerHeaders(name, serverRef)
// Check if this server has stored OAuth tokens. If so, the SDK's
// authProvider will set Authorization — don't override with the
// session ingress token (SDK merges requestInit AFTER authProvider).
// CCR proxy URLs (ccr_shttp_mcp) have no stored OAuth, so they still
// get the ingress token. See PR #24454 discussion.
const hasOAuthTokens = !!(await authProvider.tokens())
// Use the auth provider with StreamableHTTPClientTransport
const proxyOptions = getProxyFetchOptions()
logMCPDebug(
name,
`Proxy options: ${proxyOptions.dispatcher ? 'custom dispatcher' : 'default'}`,
)
const transportOptions: StreamableHTTPClientTransportOptions = {
authProvider,
// Use fresh timeout per request to avoid stale AbortSignal bug.
// Step-up detection wraps innermost so the 403 is seen before the
// SDK's handler calls auth() → tokens().
fetch: wrapFetchWithTimeout(
wrapFetchWithStepUpDetection(createFetchWithInit(), authProvider),
),
requestInit: {
...proxyOptions,
headers: {
'User-Agent': getMCPUserAgent(),
...(sessionIngressToken &&
!hasOAuthTokens && {
Authorization: `Bearer ${sessionIngressToken}`,
}),
...combinedHeaders,
},
},
}
// Redact sensitive headers before logging
const headersForLogging = transportOptions.requestInit?.headers
? mapValues(
transportOptions.requestInit.headers as Record<string, string>,
(value, key) =>
key.toLowerCase() === 'authorization' ? '[REDACTED]' : value,
)
: undefined
logMCPDebug(
name,
`HTTP transport options: ${jsonStringify({
url: serverRef.url,
headers: headersForLogging,
hasAuthProvider: !!authProvider,
timeoutMs: MCP_REQUEST_TIMEOUT_MS,
})}`,
)
transport = new StreamableHTTPClientTransport(
new URL(serverRef.url),
transportOptions,
)
logMCPDebug(name, `HTTP transport created successfully`)
} else if (serverRef.type === 'sdk') {
throw new Error('SDK servers should be handled in print.ts')
} else if (serverRef.type === 'claudeai-proxy') {
logMCPDebug(
name,
`Initializing claude.ai proxy transport for server ${serverRef.id}`,
)
const tokens = getClaudeAIOAuthTokens()
if (!tokens) {
throw new Error('No claude.ai OAuth token found')
}
const oauthConfig = getOauthConfig()
const proxyUrl = `${oauthConfig.MCP_PROXY_URL}${oauthConfig.MCP_PROXY_PATH.replace('{server_id}', serverRef.id)}`
logMCPDebug(name, `Using claude.ai proxy at ${proxyUrl}`)
// eslint-disable-next-line eslint-plugin-n/no-unsupported-features/node-builtins
const fetchWithAuth = createClaudeAiProxyFetch(globalThis.fetch)
const proxyOptions = getProxyFetchOptions()
const transportOptions: StreamableHTTPClientTransportOptions = {
// Wrap fetchWithAuth with fresh timeout per request
fetch: wrapFetchWithTimeout(fetchWithAuth),
requestInit: {
...proxyOptions,
headers: {
'User-Agent': getMCPUserAgent(),
'X-Mcp-Client-Session-Id': getSessionId(),
},
},
}
transport = new StreamableHTTPClientTransport(
new URL(proxyUrl),
transportOptions,
)
logMCPDebug(name, `claude.ai proxy transport created successfully`)
} else if (
(serverRef.type === 'stdio' || !serverRef.type) &&
isClaudeInChromeMCPServer(name)
) {
// Run the Chrome MCP server in-process to avoid spawning a ~325 MB subprocess
const { createChromeContext } = await import(
'../../utils/claudeInChrome/mcpServer.js'
)
const { importClaudeForChromePackage } = await import(
'../../utils/claudeInChrome/package.js'
)
const { createClaudeForChromeMcpServer } =
await importClaudeForChromePackage()
const { createLinkedTransportPair } = await import(
'./InProcessTransport.js'
)
const context = createChromeContext(serverRef.env)
inProcessServer = createClaudeForChromeMcpServer(context)
const [clientTransport, serverTransport] = createLinkedTransportPair()
await inProcessServer.connect(serverTransport)
transport = clientTransport
logMCPDebug(name, `In-process Chrome MCP server started`)
} else if (
feature('CHICAGO_MCP') &&
(serverRef.type === 'stdio' || !serverRef.type) &&
isComputerUseMCPServer!(name)
) {
// Run the Computer Use MCP server in-process — same rationale as
// Chrome above. The package's CallTool handler is a stub; real
// dispatch goes through wrapper.tsx's .call() override.
const { createComputerUseMcpServerForCli } = await import(
'../../utils/computerUse/mcpServer.js'
)
const { createLinkedTransportPair } = await import(
'./InProcessTransport.js'
)
inProcessServer = await createComputerUseMcpServerForCli()
const [clientTransport, serverTransport] = createLinkedTransportPair()
await inProcessServer.connect(serverTransport)
transport = clientTransport
logMCPDebug(name, `In-process Computer Use MCP server started`)
} else if (serverRef.type === 'stdio' || !serverRef.type) {
const finalCommand =
process.env.CLAUDE_CODE_SHELL_PREFIX || serverRef.command
const finalArgs = process.env.CLAUDE_CODE_SHELL_PREFIX
? [[serverRef.command, ...serverRef.args].join(' ')]
: serverRef.args
transport = new StdioClientTransport({
command: finalCommand,
args: finalArgs,
env: {
...subprocessEnv(),
...serverRef.env,
} as Record<string, string>,
stderr: 'pipe', // prevents error output from the MCP server from printing to the UI
})
} else {
throw new Error(`Unsupported server type: ${serverRef.type}`)
}
// Set up stderr logging for stdio transport before connecting in case there are any stderr
// outputs emitted during the connection start (this can be useful for debugging failed connections).
// Store handler reference for cleanup to prevent memory leaks
let stderrHandler: ((data: Buffer) => void) | undefined
let stderrOutput = ''
if (serverRef.type === 'stdio' || !serverRef.type) {
const stdioTransport = transport as StdioClientTransport
if (stdioTransport.stderr) {
stderrHandler = (data: Buffer) => {
// Cap stderr accumulation to prevent unbounded memory growth
if (stderrOutput.length < 64 * 1024 * 1024) {
try {
stderrOutput += data.toString()
} catch {
// Ignore errors from exceeding max string length
}
}
}
stdioTransport.stderr.on('data', stderrHandler)
}
}
const client = new Client(
{
name: 'claude-code',
title: 'Claude Code',
version: MACRO.VERSION ?? 'unknown',
description: "Anthropic's agentic coding tool",
websiteUrl: PRODUCT_URL,
},
{
capabilities: {
roots: {},
// Empty object declares the capability. Sending {form:{},url:{}}
// breaks Java MCP SDK servers (Spring AI) whose Elicitation class
// has zero fields and fails on unknown properties.
elicitation: {},
},
},
)
// Add debug logging for client events if available
if (serverRef.type === 'http') {
logMCPDebug(name, `Client created, setting up request handler`)
}
client.setRequestHandler(ListRootsRequestSchema, async () => {
logMCPDebug(name, `Received ListRoots request from server`)
return {
roots: [
{
uri: `file://${getOriginalCwd()}`,
},
],
}
})
// Add a timeout to connection attempts to prevent tests from hanging indefinitely
logMCPDebug(
name,
`Starting connection with timeout of ${getConnectionTimeoutMs()}ms`,
)
// For HTTP transport, try a basic connectivity test first
if (serverRef.type === 'http') {
logMCPDebug(name, `Testing basic HTTP connectivity to ${serverRef.url}`)
try {
const testUrl = new URL(serverRef.url)
logMCPDebug(
name,
`Parsed URL: host=${testUrl.hostname}, port=${testUrl.port || 'default'}, protocol=${testUrl.protocol}`,
)
// Log DNS resolution attempt
if (
testUrl.hostname === '127.0.0.1' ||
testUrl.hostname === 'localhost'
) {
logMCPDebug(name, `Using loopback address: ${testUrl.hostname}`)
}
} catch (urlError) {
logMCPDebug(name, `Failed to parse URL: ${urlError}`)
}
}
const connectPromise = client.connect(transport)
const timeoutPromise = new Promise<never>((_, reject) => {
const timeoutId = setTimeout(() => {
const elapsed = Date.now() - connectStartTime
logMCPDebug(
name,
`Connection timeout triggered after ${elapsed}ms (limit: ${getConnectionTimeoutMs()}ms)`,
)
if (inProcessServer) {
inProcessServer.close().catch(() => {})
}
transport.close().catch(() => {})
reject(
new TelemetrySafeError_I_VERIFIED_THIS_IS_NOT_CODE_OR_FILEPATHS(
`MCP server "${name}" connection timed out after ${getConnectionTimeoutMs()}ms`,
'MCP connection timeout',
),
)
}, getConnectionTimeoutMs())
// Clean up timeout if connect resolves or rejects
connectPromise.then(
() => {
clearTimeout(timeoutId)
},
_error => {
clearTimeout(timeoutId)
},
)
})
try {
await Promise.race([connectPromise, timeoutPromise])
if (stderrOutput) {
logMCPError(name, `Server stderr: ${stderrOutput}`)
stderrOutput = '' // Release accumulated string to prevent memory growth
}
const elapsed = Date.now() - connectStartTime
logMCPDebug(
name,
`Successfully connected (transport: ${serverRef.type || 'stdio'}) in ${elapsed}ms`,
)
} catch (error) {
const elapsed = Date.now() - connectStartTime
// SSE-specific error logging
if (serverRef.type === 'sse' && error instanceof Error) {
logMCPDebug(
name,
`SSE Connection failed after ${elapsed}ms: ${jsonStringify({
url: serverRef.url,
error: error.message,
errorType: error.constructor.name,
stack: error.stack,
})}`,
)
logMCPError(name, error)
if (error instanceof UnauthorizedError) {
return handleRemoteAuthFailure(name, serverRef, 'sse')
}
} else if (serverRef.type === 'http' && error instanceof Error) {
const errorObj = error as Error & {
cause?: unknown
code?: string
errno?: string | number
syscall?: string
}
logMCPDebug(
name,
`HTTP Connection failed after ${elapsed}ms: ${error.message} (code: ${errorObj.code || 'none'}, errno: ${errorObj.errno || 'none'})`,
)
logMCPError(name, error)
if (error instanceof UnauthorizedError) {
return handleRemoteAuthFailure(name, serverRef, 'http')
}
} else if (
serverRef.type === 'claudeai-proxy' &&
error instanceof Error
) {
logMCPDebug(
name,
`claude.ai proxy connection failed after ${elapsed}ms: ${error.message}`,
)
logMCPError(name, error)
// StreamableHTTPError has a `code` property with the HTTP status
const errorCode = (error as Error & { code?: number }).code
if (errorCode === 401) {
return handleRemoteAuthFailure(name, serverRef, 'claudeai-proxy')
}
} else if (
serverRef.type === 'sse-ide' ||
serverRef.type === 'ws-ide'
) {
logEvent('tengu_mcp_ide_server_connection_failed', {
connectionDurationMs: elapsed,
})
}
if (inProcessServer) {
inProcessServer.close().catch(() => {})
}
transport.close().catch(() => {})
if (stderrOutput) {
logMCPError(name, `Server stderr: ${stderrOutput}`)
}
throw error
}
const capabilities = client.getServerCapabilities()
const serverVersion = client.getServerVersion()
const rawInstructions = client.getInstructions()
let instructions = rawInstructions
if (
rawInstructions &&
rawInstructions.length > MAX_MCP_DESCRIPTION_LENGTH
) {
instructions =
rawInstructions.slice(0, MAX_MCP_DESCRIPTION_LENGTH) + '… [truncated]'
logMCPDebug(
name,
`Server instructions truncated from ${rawInstructions.length} to ${MAX_MCP_DESCRIPTION_LENGTH} chars`,
)
}
// Log successful connection details
logMCPDebug(
name,
`Connection established with capabilities: ${jsonStringify({
hasTools: !!capabilities?.tools,
hasPrompts: !!capabilities?.prompts,
hasResources: !!capabilities?.resources,
hasResourceSubscribe: !!capabilities?.resources?.subscribe,
serverVersion: serverVersion || 'unknown',
})}`,
)
logForDebugging(
`[MCP] Server "${name}" connected with subscribe=${!!capabilities?.resources?.subscribe}`,
)
// Register default elicitation handler that returns cancel during the
// window before registerElicitationHandler overwrites it in
// onConnectionAttempt (useManageMCPConnections).
client.setRequestHandler(ElicitRequestSchema, async request => {
logMCPDebug(
name,
`Elicitation request received during initialization: ${jsonStringify(request)}`,
)
return { action: 'cancel' as const }
})
if (serverRef.type === 'sse-ide' || serverRef.type === 'ws-ide') {
const ideConnectionDurationMs = Date.now() - connectStartTime
logEvent('tengu_mcp_ide_server_connection_succeeded', {
connectionDurationMs: ideConnectionDurationMs,
serverVersion:
serverVersion as AnalyticsMetadata_I_VERIFIED_THIS_IS_NOT_CODE_OR_FILEPATHS,
})
try {
void maybeNotifyIDEConnected(client)
} catch (error) {
logMCPError(
name,
`Failed to send ide_connected notification: ${error}`,
)
}
}
// Enhanced connection drop detection and logging for all transport types
const connectionStartTime = Date.now()
let hasErrorOccurred = false
// Store original handlers
const originalOnerror = client.onerror
const originalOnclose = client.onclose
// The SDK's transport calls onerror on connection failures but doesn't call onclose,
// which CC uses to trigger reconnection. We bridge this gap by tracking consecutive
// terminal errors and manually closing after MAX_ERRORS_BEFORE_RECONNECT failures.
let consecutiveConnectionErrors = 0
const MAX_ERRORS_BEFORE_RECONNECT = 3
// Guard against re-entry: close() aborts in-flight streams which may fire
// onerror again before the close chain completes.
let hasTriggeredClose = false
// client.close() → transport.close() → transport.onclose → SDK's _onclose():
// rejects all pending request handlers (so hung callTool() promises fail with
// McpError -32000 "Connection closed") and then invokes our client.onclose
// handler below (which clears the memo cache so the next call reconnects).
// Calling client.onclose?.() directly would only clear the cache — pending
// tool calls would stay hung.
const closeTransportAndRejectPending = (reason: string) => {
if (hasTriggeredClose) return
hasTriggeredClose = true
logMCPDebug(name, `Closing transport (${reason})`)
void client.close().catch(e => {
logMCPDebug(name, `Error during close: ${errorMessage(e)}`)
})
}
const isTerminalConnectionError = (msg: string): boolean => {
return (
msg.includes('ECONNRESET') ||
msg.includes('ETIMEDOUT') ||
msg.includes('EPIPE') ||
msg.includes('EHOSTUNREACH') ||
msg.includes('ECONNREFUSED') ||
msg.includes('Body Timeout Error') ||
msg.includes('terminated') ||
// SDK SSE reconnection intermediate errors — may be wrapped around the
// actual network error, so the substrings above won't match
msg.includes('SSE stream disconnected') ||
msg.includes('Failed to reconnect SSE stream')
)
}
// Enhanced error handler with detailed logging
client.onerror = (error: Error) => {
const uptime = Date.now() - connectionStartTime
hasErrorOccurred = true
const transportType = serverRef.type || 'stdio'
// Log the connection drop with context
logMCPDebug(
name,
`${transportType.toUpperCase()} connection dropped after ${Math.floor(uptime / 1000)}s uptime`,
)
// Log specific error details for debugging
if (error.message) {
if (error.message.includes('ECONNRESET')) {
logMCPDebug(
name,
`Connection reset - server may have crashed or restarted`,
)
} else if (error.message.includes('ETIMEDOUT')) {
logMCPDebug(
name,
`Connection timeout - network issue or server unresponsive`,
)
} else if (error.message.includes('ECONNREFUSED')) {
logMCPDebug(name, `Connection refused - server may be down`)
} else if (error.message.includes('EPIPE')) {
logMCPDebug(
name,
`Broken pipe - server closed connection unexpectedly`,
)
} else if (error.message.includes('EHOSTUNREACH')) {
logMCPDebug(name, `Host unreachable - network connectivity issue`)
} else if (error.message.includes('ESRCH')) {
logMCPDebug(
name,
`Process not found - stdio server process terminated`,
)
} else if (error.message.includes('spawn')) {
logMCPDebug(
name,
`Failed to spawn process - check command and permissions`,
)
} else {
logMCPDebug(name, `Connection error: ${error.message}`)
}
}
// For HTTP transports, detect session expiry (404 + JSON-RPC -32001)
// and close the transport so pending tool calls reject and the next
// call reconnects with a fresh session ID.
if (
(transportType === 'http' || transportType === 'claudeai-proxy') &&
isMcpSessionExpiredError(error)
) {
logMCPDebug(
name,
`MCP session expired (server returned 404 with session-not-found), triggering reconnection`,
)
closeTransportAndRejectPending('session expired')
if (originalOnerror) {
originalOnerror(error)
}
return
}
// For remote transports (SSE/HTTP), track terminal connection errors
// and trigger reconnection via close if we see repeated failures.
if (
transportType === 'sse' ||
transportType === 'http' ||
transportType === 'claudeai-proxy'
) {
// The SDK's StreamableHTTP transport fires this after exhausting its
// own SSE reconnect attempts (default maxRetries: 2) — but it never
// calls onclose, so pending callTool() promises hang indefinitely.
// This is the definitive "transport gave up" signal.
if (error.message.includes('Maximum reconnection attempts')) {
closeTransportAndRejectPending('SSE reconnection exhausted')
if (originalOnerror) {
originalOnerror(error)
}
return
}
if (isTerminalConnectionError(error.message)) {
consecutiveConnectionErrors++
logMCPDebug(
name,
`Terminal connection error ${consecutiveConnectionErrors}/${MAX_ERRORS_BEFORE_RECONNECT}`,
)
if (consecutiveConnectionErrors >= MAX_ERRORS_BEFORE_RECONNECT) {
consecutiveConnectionErrors = 0
closeTransportAndRejectPending('max consecutive terminal errors')
}
} else {
// Non-terminal error (e.g., transient issue), reset counter
consecutiveConnectionErrors = 0
}
}
// Call original handler
if (originalOnerror) {
originalOnerror(error)
}
}
// Enhanced close handler with connection drop context
client.onclose = () => {
const uptime = Date.now() - connectionStartTime
const transportType = serverRef.type ?? 'unknown'
logMCPDebug(
name,
`${transportType.toUpperCase()} connection closed after ${Math.floor(uptime / 1000)}s (${hasErrorOccurred ? 'with errors' : 'cleanly'})`,
)
// Clear the memoization cache so next operation reconnects
const key = getServerCacheKey(name, serverRef)
// Also clear fetch caches (keyed by server name). Reconnection
// creates a new connection object; without clearing, the next
// fetch would return stale tools/resources from the old connection.
fetchToolsForClient.cache.delete(name)
fetchResourcesForClient.cache.delete(name)
fetchCommandsForClient.cache.delete(name)
if (feature('MCP_SKILLS')) {
fetchMcpSkillsForClient!.cache.delete(name)
}
connectToServer.cache.delete(key)
logMCPDebug(name, `Cleared connection cache for reconnection`)
if (originalOnclose) {
originalOnclose()
}
}
const cleanup = async () => {
// In-process servers (e.g. Chrome MCP) don't have child processes or stderr
if (inProcessServer) {
try {
await inProcessServer.close()
} catch (error) {
logMCPDebug(name, `Error closing in-process server: ${error}`)
}
try {
await client.close()
} catch (error) {
logMCPDebug(name, `Error closing client: ${error}`)
}
return
}
// Remove stderr event listener to prevent memory leaks
if (stderrHandler && (serverRef.type === 'stdio' || !serverRef.type)) {
const stdioTransport = transport as StdioClientTransport
stdioTransport.stderr?.off('data', stderrHandler)
}
// For stdio transports, explicitly terminate the child process with proper signals
// NOTE: StdioClientTransport.close() only sends an abort signal, but many MCP servers
// (especially Docker containers) need explicit SIGINT/SIGTERM signals to trigger graceful shutdown
if (serverRef.type === 'stdio') {
try {
const stdioTransport = transport as StdioClientTransport
const childPid = stdioTransport.pid
if (childPid) {
logMCPDebug(name, 'Sending SIGINT to MCP server process')
// First try SIGINT (like Ctrl+C)
try {
process.kill(childPid, 'SIGINT')
} catch (error) {
logMCPDebug(name, `Error sending SIGINT: ${error}`)
return
}
// Wait for graceful shutdown with rapid escalation (total 500ms to keep CLI responsive)
await new Promise<void>(async resolve => {
let resolved = false
// Set up a timer to check if process still exists
const checkInterval = setInterval(() => {
try {
// process.kill(pid, 0) checks if process exists without killing it
process.kill(childPid, 0)
} catch {
// Process no longer exists
if (!resolved) {
resolved = true
clearInterval(checkInterval)
clearTimeout(failsafeTimeout)
logMCPDebug(name, 'MCP server process exited cleanly')
resolve()
}
}
}, 50)
// Absolute failsafe: clear interval after 600ms no matter what
const failsafeTimeout = setTimeout(() => {
if (!resolved) {
resolved = true
clearInterval(checkInterval)
logMCPDebug(
name,
'Cleanup timeout reached, stopping process monitoring',
)
resolve()
}
}, 600)
try {
// Wait 100ms for SIGINT to work (usually much faster)
await sleep(100)
if (!resolved) {
// Check if process still exists
try {
process.kill(childPid, 0)
// Process still exists, SIGINT failed, try SIGTERM
logMCPDebug(
name,
'SIGINT failed, sending SIGTERM to MCP server process',
)
try {
process.kill(childPid, 'SIGTERM')
} catch (termError) {
logMCPDebug(name, `Error sending SIGTERM: ${termError}`)
resolved = true
clearInterval(checkInterval)
clearTimeout(failsafeTimeout)
resolve()
return
}
} catch {
// Process already exited
resolved = true
clearInterval(checkInterval)
clearTimeout(failsafeTimeout)
resolve()
return
}
// Wait 400ms for SIGTERM to work (slower than SIGINT, often used for cleanup)
await sleep(400)
if (!resolved) {
// Check if process still exists
try {
process.kill(childPid, 0)
// Process still exists, SIGTERM failed, force kill with SIGKILL
logMCPDebug(
name,
'SIGTERM failed, sending SIGKILL to MCP server process',
)
try {
process.kill(childPid, 'SIGKILL')
} catch (killError) {
logMCPDebug(
name,
`Error sending SIGKILL: ${killError}`,
)
}
} catch {
// Process already exited
resolved = true
clearInterval(checkInterval)
clearTimeout(failsafeTimeout)
resolve()
}
}
}
// Final timeout - always resolve after 500ms max (total cleanup time)
if (!resolved) {
resolved = true
clearInterval(checkInterval)
clearTimeout(failsafeTimeout)
resolve()
}
} catch {
// Handle any errors in the escalation sequence
if (!resolved) {
resolved = true
clearInterval(checkInterval)
clearTimeout(failsafeTimeout)
resolve()
}
}
})
}
} catch (processError) {
logMCPDebug(name, `Error terminating process: ${processError}`)
}
}
// Close the client connection (which also closes the transport)
try {
await client.close()
} catch (error) {
logMCPDebug(name, `Error closing client: ${error}`)
}
}
// Register cleanup for all transport types - even network transports might need cleanup
// This ensures all MCP servers get properly terminated, not just stdio ones
const cleanupUnregister = registerCleanup(cleanup)
// Create the wrapped cleanup that includes unregistering
const wrappedCleanup = async () => {
cleanupUnregister?.()
await cleanup()
}
const connectionDurationMs = Date.now() - connectStartTime
logEvent('tengu_mcp_server_connection_succeeded', {
connectionDurationMs,
transportType: (serverRef.type ??
'stdio') as AnalyticsMetadata_I_VERIFIED_THIS_IS_NOT_CODE_OR_FILEPATHS,
totalServers: serverStats?.totalServers,
stdioCount: serverStats?.stdioCount,
sseCount: serverStats?.sseCount,
httpCount: serverStats?.httpCount,
sseIdeCount: serverStats?.sseIdeCount,
wsIdeCount: serverStats?.wsIdeCount,
...mcpBaseUrlAnalytics(serverRef),
})
return {
name,
client,
type: 'connected' as const,
capabilities: capabilities ?? {},
serverInfo: serverVersion,
instructions,
config: serverRef,
cleanup: wrappedCleanup,
}
} catch (error) {
const connectionDurationMs = Date.now() - connectStartTime
logEvent('tengu_mcp_server_connection_failed', {
connectionDurationMs,
totalServers: serverStats?.totalServers || 1,
stdioCount:
serverStats?.stdioCount || (serverRef.type === 'stdio' ? 1 : 0),
sseCount: serverStats?.sseCount || (serverRef.type === 'sse' ? 1 : 0),
httpCount:
serverStats?.httpCount || (serverRef.type === 'http' ? 1 : 0),
sseIdeCount:
serverStats?.sseIdeCount || (serverRef.type === 'sse-ide' ? 1 : 0),
wsIdeCount:
serverStats?.wsIdeCount || (serverRef.type === 'ws-ide' ? 1 : 0),
transportType: (serverRef.type ??
'stdio') as AnalyticsMetadata_I_VERIFIED_THIS_IS_NOT_CODE_OR_FILEPATHS,
...mcpBaseUrlAnalytics(serverRef),
})
logMCPDebug(
name,
`Connection failed after ${connectionDurationMs}ms: ${errorMessage(error)}`,
)
logMCPError(name, `Connection failed: ${errorMessage(error)}`)
if (inProcessServer) {
inProcessServer.close().catch(() => {})
}
return {
name,
type: 'failed' as const,
config: serverRef,
error: errorMessage(error),
}
}
},
getServerCacheKey,
)
/**
* Clears the memoize cache for a specific server
* @param name Server name
* @param serverRef Server configuration
*/
export async function clearServerCache(
name: string,
serverRef: ScopedMcpServerConfig,
): Promise<void> {
const key = getServerCacheKey(name, serverRef)
try {
const wrappedClient = await connectToServer(name, serverRef)
if (wrappedClient.type === 'connected') {
await wrappedClient.cleanup()
}
} catch {
// Ignore errors - server might have failed to connect
}
// Clear from cache (both connection and fetch caches so reconnect
// fetches fresh tools/resources/commands instead of stale ones)
connectToServer.cache.delete(key)
fetchToolsForClient.cache.delete(name)
fetchResourcesForClient.cache.delete(name)
fetchCommandsForClient.cache.delete(name)
if (feature('MCP_SKILLS')) {
fetchMcpSkillsForClient!.cache.delete(name)
}
}
/**
* Ensures a valid connected client for an MCP server.
* For most server types, uses the memoization cache if available, or reconnects
* if the cache was cleared (e.g., after onclose). This ensures tool/resource
* calls always use a valid connection.
*
* SDK MCP servers run in-process and are handled separately via setupSdkMcpClients,
* so they are returned as-is without going through connectToServer.
*
* @param client The connected MCP server client
* @returns Connected MCP server client (same or reconnected)
* @throws Error if server cannot be connected
*/
export async function ensureConnectedClient(
client: ConnectedMCPServer,
): Promise<ConnectedMCPServer> {
// SDK MCP servers run in-process and are handled separately via setupSdkMcpClients
if (client.config.type === 'sdk') {
return client
}
const connectedClient = await connectToServer(client.name, client.config)
if (connectedClient.type !== 'connected') {
throw new TelemetrySafeError_I_VERIFIED_THIS_IS_NOT_CODE_OR_FILEPATHS(
`MCP server "${client.name}" is not connected`,
'MCP server not connected',
)
}
return connectedClient
}
/**
* Compares two MCP server configurations to determine if they are equivalent.
* Used to detect when a server needs to be reconnected due to config changes.
*/
export function areMcpConfigsEqual(
a: ScopedMcpServerConfig,
b: ScopedMcpServerConfig,
): boolean {
// Quick type check first
if (a.type !== b.type) return false
// Compare by serializing - this handles all config variations
// We exclude 'scope' from comparison since it's metadata, not connection config
const { scope: _scopeA, ...configA } = a
const { scope: _scopeB, ...configB } = b
return jsonStringify(configA) === jsonStringify(configB)
}
// Max cache size for fetch* caches. Keyed by server name (stable across
// reconnects), bounded to prevent unbounded growth with many MCP servers.
const MCP_FETCH_CACHE_SIZE = 20
/**
* Encode MCP tool input for the auto-mode security classifier.
* Exported so the auto-mode eval scripts can mirror production encoding
* for `mcp__*` tool stubs without duplicating this logic.
*/
export function mcpToolInputToAutoClassifierInput(
input: Record<string, unknown>,
toolName: string,
): string {
const keys = Object.keys(input)
return keys.length > 0
? keys.map(k => `${k}=${String(input[k])}`).join(' ')
: toolName
}
export const fetchToolsForClient = memoizeWithLRU(
async (client: MCPServerConnection): Promise<Tool[]> => {
if (client.type !== 'connected') return []
try {
if (!client.capabilities?.tools) {
return []
}
const result = (await client.client.request(
{ method: 'tools/list' },
ListToolsResultSchema,
)) as ListToolsResult
// Sanitize tool data from MCP server
const toolsToProcess = recursivelySanitizeUnicode(result.tools)
// Check if we should skip the mcp__ prefix for SDK MCP servers
const skipPrefix =
client.config.type === 'sdk' &&
isEnvTruthy(process.env.CLAUDE_AGENT_SDK_MCP_NO_PREFIX)
// Convert MCP tools to our Tool format
return toolsToProcess
.map((tool): Tool => {
const fullyQualifiedName = buildMcpToolName(client.name, tool.name)
return {
...MCPTool,
// In skip-prefix mode, use the original name for model invocation so MCP tools
// can override builtins by name. mcpInfo is used for permission checking.
name: skipPrefix ? tool.name : fullyQualifiedName,
mcpInfo: { serverName: client.name, toolName: tool.name },
isMcp: true,
// Collapse whitespace: _meta is open to external MCP servers, and
// a newline here would inject orphan lines into the deferred-tool
// list (formatDeferredToolLine joins on '\n').
searchHint:
typeof tool._meta?.['anthropic/searchHint'] === 'string'
? tool._meta['anthropic/searchHint']
.replace(/\s+/g, ' ')
.trim() || undefined
: undefined,
alwaysLoad: tool._meta?.['anthropic/alwaysLoad'] === true,
async description() {
return tool.description ?? ''
},
async prompt() {
const desc = tool.description ?? ''
return desc.length > MAX_MCP_DESCRIPTION_LENGTH
? desc.slice(0, MAX_MCP_DESCRIPTION_LENGTH) + '… [truncated]'
: desc
},
isConcurrencySafe() {
return tool.annotations?.readOnlyHint ?? false
},
isReadOnly() {
return tool.annotations?.readOnlyHint ?? false
},
toAutoClassifierInput(input) {
return mcpToolInputToAutoClassifierInput(input, tool.name)
},
isDestructive() {
return tool.annotations?.destructiveHint ?? false
},
isOpenWorld() {
return tool.annotations?.openWorldHint ?? false
},
isSearchOrReadCommand() {
return classifyMcpToolForCollapse(client.name, tool.name)
},
inputJSONSchema: tool.inputSchema as Tool['inputJSONSchema'],
async checkPermissions() {
return {
behavior: 'passthrough' as const,
message: 'MCPTool requires permission.',
suggestions: [
{
type: 'addRules' as const,
rules: [
{
toolName: fullyQualifiedName,
ruleContent: undefined,
},
],
behavior: 'allow' as const,
destination: 'localSettings' as const,
},
],
}
},
async call(
args: Record<string, unknown>,
context,
_canUseTool,
parentMessage,
onProgress?: ToolCallProgress<MCPProgress>,
) {
const toolUseId = extractToolUseId(parentMessage)
const meta = toolUseId
? { 'claudecode/toolUseId': toolUseId }
: {}
// Emit progress when tool starts
if (onProgress && toolUseId) {
onProgress({
toolUseID: toolUseId,
data: {
type: 'mcp_progress',
status: 'started',
serverName: client.name,
toolName: tool.name,
},
})
}
const startTime = Date.now()
const MAX_SESSION_RETRIES = 1
for (let attempt = 0; ; attempt++) {
try {
const connectedClient = await ensureConnectedClient(client)
const mcpResult = await callMCPToolWithUrlElicitationRetry({
client: connectedClient,
clientConnection: client,
tool: tool.name,
args,
meta,
signal: context.abortController.signal,
setAppState: context.setAppState,
onProgress:
onProgress && toolUseId
? progressData => {
onProgress({
toolUseID: toolUseId,
data: progressData,
})
}
: undefined,
handleElicitation: context.handleElicitation,
})
// Emit progress when tool completes successfully
if (onProgress && toolUseId) {
onProgress({
toolUseID: toolUseId,
data: {
type: 'mcp_progress',
status: 'completed',
serverName: client.name,
toolName: tool.name,
elapsedTimeMs: Date.now() - startTime,
},
})
}
return {
data: mcpResult.content,
...((mcpResult._meta || mcpResult.structuredContent) && {
mcpMeta: {
...(mcpResult._meta && {
_meta: mcpResult._meta,
}),
...(mcpResult.structuredContent && {
structuredContent: mcpResult.structuredContent,
}),
},
}),
}
} catch (error) {
// Session expired — the connection cache has been
// cleared, so retry with a fresh client.
if (
error instanceof McpSessionExpiredError &&
attempt < MAX_SESSION_RETRIES
) {
logMCPDebug(
client.name,
`Retrying tool '${tool.name}' after session recovery`,
)
continue
}
// Emit progress when tool fails
if (onProgress && toolUseId) {
onProgress({
toolUseID: toolUseId,
data: {
type: 'mcp_progress',
status: 'failed',
serverName: client.name,
toolName: tool.name,
elapsedTimeMs: Date.now() - startTime,
},
})
}
// Wrap MCP SDK errors so telemetry gets useful context
// instead of just "Error" or "McpError" (the constructor
// name). MCP SDK errors are protocol-level messages and
// don't contain user file paths or code.
if (
error instanceof Error &&
!(
error instanceof
TelemetrySafeError_I_VERIFIED_THIS_IS_NOT_CODE_OR_FILEPATHS
)
) {
const name = error.constructor.name
if (name === 'Error') {
throw new TelemetrySafeError_I_VERIFIED_THIS_IS_NOT_CODE_OR_FILEPATHS(
error.message,
error.message.slice(0, 200),
)
}
// McpError has a numeric `code` with the JSON-RPC error
// code (e.g. -32000 ConnectionClosed, -32001 RequestTimeout)
if (
name === 'McpError' &&
'code' in error &&
typeof error.code === 'number'
) {
throw new TelemetrySafeError_I_VERIFIED_THIS_IS_NOT_CODE_OR_FILEPATHS(
error.message,
`McpError ${error.code}`,
)
}
}
throw error
}
}
},
userFacingName() {
// Prefer title annotation if available, otherwise use tool name
const displayName = tool.annotations?.title || tool.name
return `${client.name} - ${displayName} (MCP)`
},
...(isClaudeInChromeMCPServer(client.name) &&
(client.config.type === 'stdio' || !client.config.type)
? claudeInChromeToolRendering().getClaudeInChromeMCPToolOverrides(
tool.name,
)
: {}),
...(feature('CHICAGO_MCP') &&
(client.config.type === 'stdio' || !client.config.type) &&
isComputerUseMCPServer!(client.name)
? computerUseWrapper!().getComputerUseMCPToolOverrides(tool.name)
: {}),
}
})
.filter(isIncludedMcpTool)
} catch (error) {
logMCPError(client.name, `Failed to fetch tools: ${errorMessage(error)}`)
return []
}
},
(client: MCPServerConnection) => client.name,
MCP_FETCH_CACHE_SIZE,
)
export const fetchResourcesForClient = memoizeWithLRU(
async (client: MCPServerConnection): Promise<ServerResource[]> => {
if (client.type !== 'connected') return []
try {
if (!client.capabilities?.resources) {
return []
}
const result = await client.client.request(
{ method: 'resources/list' },
ListResourcesResultSchema,
)
if (!result.resources) return []
// Add server name to each resource
return result.resources.map(resource => ({
...resource,
server: client.name,
}))
} catch (error) {
logMCPError(
client.name,
`Failed to fetch resources: ${errorMessage(error)}`,
)
return []
}
},
(client: MCPServerConnection) => client.name,
MCP_FETCH_CACHE_SIZE,
)
export const fetchCommandsForClient = memoizeWithLRU(
async (client: MCPServerConnection): Promise<Command[]> => {
if (client.type !== 'connected') return []
try {
if (!client.capabilities?.prompts) {
return []
}
// Request prompts list from client
const result = (await client.client.request(
{ method: 'prompts/list' },
ListPromptsResultSchema,
)) as ListPromptsResult
if (!result.prompts) return []
// Sanitize prompt data from MCP server
const promptsToProcess = recursivelySanitizeUnicode(result.prompts)
// Convert MCP prompts to our Command format
return promptsToProcess.map(prompt => {
const argNames = Object.values(prompt.arguments ?? {}).map(k => k.name)
return {
type: 'prompt' as const,
name: 'mcp__' + normalizeNameForMCP(client.name) + '__' + prompt.name,
description: prompt.description ?? '',
hasUserSpecifiedDescription: !!prompt.description,
contentLength: 0, // Dynamic MCP content
isEnabled: () => true,
isHidden: false,
isMcp: true,
progressMessage: 'running',
userFacingName() {
// Use prompt.name (programmatic identifier) not prompt.title (display name)
// to avoid spaces breaking slash command parsing
return `${client.name}:${prompt.name} (MCP)`
},
argNames,
source: 'mcp',
async getPromptForCommand(args: string) {
const argsArray = args.split(' ')
try {
const connectedClient = await ensureConnectedClient(client)
const result = await connectedClient.client.getPrompt({
name: prompt.name,
arguments: zipObject(argNames, argsArray),
})
const transformed = await Promise.all(
result.messages.map(message =>
transformResultContent(message.content, connectedClient.name),
),
)
return transformed.flat()
} catch (error) {
logMCPError(
client.name,
`Error running command '${prompt.name}': ${errorMessage(error)}`,
)
throw error
}
},
}
})
} catch (error) {
logMCPError(
client.name,
`Failed to fetch commands: ${errorMessage(error)}`,
)
return []
}
},
(client: MCPServerConnection) => client.name,
MCP_FETCH_CACHE_SIZE,
)
/**
* Call an IDE tool directly as an RPC
* @param toolName The name of the tool to call
* @param args The arguments to pass to the tool
* @param client The IDE client to use for the RPC call
* @returns The result of the tool call
*/
export async function callIdeRpc(
toolName: string,
args: Record<string, unknown>,
client: ConnectedMCPServer,
): Promise<string | ContentBlockParam[] | undefined> {
const result = await callMCPTool({
client,
tool: toolName,
args,
signal: createAbortController().signal,
})
return result.content
}
/**
* Note: This should not be called by UI components directly, they should use the reconnectMcpServer
* function from useManageMcpConnections.
* @param name Server name
* @param config Server configuration
* @returns Object containing the client connection and its resources
*/
export async function reconnectMcpServerImpl(
name: string,
config: ScopedMcpServerConfig,
): Promise<{
client: MCPServerConnection
tools: Tool[]
commands: Command[]
resources?: ServerResource[]
}> {
try {
// Invalidate the keychain cache so we read fresh credentials from disk.
// This is necessary when another process (e.g. the VS Code extension host)
// has modified stored tokens (cleared auth, saved new OAuth tokens) and then
// asks the CLI subprocess to reconnect. Without this, the subprocess would
// use stale cached data and never notice the tokens were removed.
clearKeychainCache()
await clearServerCache(name, config)
const client = await connectToServer(name, config)
if (client.type !== 'connected') {
return {
client,
tools: [],
commands: [],
}
}
if (config.type === 'claudeai-proxy') {
markClaudeAiMcpConnected(name)
}
const supportsResources = !!client.capabilities?.resources
const [tools, mcpCommands, mcpSkills, resources] = await Promise.all([
fetchToolsForClient(client),
fetchCommandsForClient(client),
feature('MCP_SKILLS') && supportsResources
? fetchMcpSkillsForClient!(client)
: Promise.resolve([]),
supportsResources ? fetchResourcesForClient(client) : Promise.resolve([]),
])
const commands = [...mcpCommands, ...mcpSkills]
// Check if we need to add resource tools
const resourceTools: Tool[] = []
if (supportsResources) {
// Only add resource tools if no other server has them
const hasResourceTools = [ListMcpResourcesTool, ReadMcpResourceTool].some(
tool => tools.some(t => toolMatchesName(t, tool.name)),
)
if (!hasResourceTools) {
resourceTools.push(ListMcpResourcesTool, ReadMcpResourceTool)
}
}
return {
client,
tools: [...tools, ...resourceTools],
commands,
resources: resources.length > 0 ? resources : undefined,
}
} catch (error) {
// Handle errors gracefully - connection might have closed during fetch
logMCPError(name, `Error during reconnection: ${errorMessage(error)}`)
// Return with failed status
return {
client: { name, type: 'failed' as const, config },
tools: [],
commands: [],
}
}
}
// Replaced 2026-03: previous implementation ran fixed-size sequential batches
// (await batch 1 fully, then start batch 2). That meant one slow server in
// batch N held up ALL servers in batch N+1, even if the other 19 slots were
// idle. pMap frees each slot as soon as its server completes, so a single
// slow server only occupies one slot instead of blocking an entire batch
// boundary. Same concurrency ceiling, same results, better scheduling.
async function processBatched<T>(
items: T[],
concurrency: number,
processor: (item: T) => Promise<void>,
): Promise<void> {
await pMap(items, processor, { concurrency })
}
export async function getMcpToolsCommandsAndResources(
onConnectionAttempt: (params: {
client: MCPServerConnection
tools: Tool[]
commands: Command[]
resources?: ServerResource[]
}) => void,
mcpConfigs?: Record<string, ScopedMcpServerConfig>,
): Promise<void> {
let resourceToolsAdded = false
const allConfigEntries = Object.entries(
mcpConfigs ?? (await getAllMcpConfigs()).servers,
)
// Partition into disabled and active entries — disabled servers should
// never generate HTTP connections or flow through batch processing
const configEntries: typeof allConfigEntries = []
for (const entry of allConfigEntries) {
if (isMcpServerDisabled(entry[0])) {
onConnectionAttempt({
client: { name: entry[0], type: 'disabled', config: entry[1] },
tools: [],
commands: [],
})
} else {
configEntries.push(entry)
}
}
// Calculate transport counts for logging
const totalServers = configEntries.length
const stdioCount = count(configEntries, ([_, c]) => c.type === 'stdio')
const sseCount = count(configEntries, ([_, c]) => c.type === 'sse')
const httpCount = count(configEntries, ([_, c]) => c.type === 'http')
const sseIdeCount = count(configEntries, ([_, c]) => c.type === 'sse-ide')
const wsIdeCount = count(configEntries, ([_, c]) => c.type === 'ws-ide')
// Split servers by type: local (stdio/sdk) need lower concurrency due to
// process spawning, remote servers can connect with higher concurrency
const localServers = configEntries.filter(([_, config]) =>
isLocalMcpServer(config),
)
const remoteServers = configEntries.filter(
([_, config]) => !isLocalMcpServer(config),
)
const serverStats = {
totalServers,
stdioCount,
sseCount,
httpCount,
sseIdeCount,
wsIdeCount,
}
const processServer = async ([name, config]: [
string,
ScopedMcpServerConfig,
]): Promise<void> => {
try {
// Check if server is disabled - if so, just add it to state without connecting
if (isMcpServerDisabled(name)) {
onConnectionAttempt({
client: {
name,
type: 'disabled',
config,
},
tools: [],
commands: [],
})
return
}
// Skip connection for servers that recently returned 401 (15min TTL),
// or that we have probed before but hold no token for. The second
// check closes the gap the TTL leaves open: without it, every 15min
// we re-probe servers that cannot succeed until the user runs /mcp.
// Each probe is a network round-trip for connect-401 plus OAuth
// discovery, and print mode awaits the whole batch (main.tsx:3503).
if (
(config.type === 'claudeai-proxy' ||
config.type === 'http' ||
config.type === 'sse') &&
((await isMcpAuthCached(name)) ||
((config.type === 'http' || config.type === 'sse') &&
hasMcpDiscoveryButNoToken(name, config)))
) {
logMCPDebug(name, `Skipping connection (cached needs-auth)`)
onConnectionAttempt({
client: { name, type: 'needs-auth' as const, config },
tools: [createMcpAuthTool(name, config)],
commands: [],
})
return
}
const client = await connectToServer(name, config, serverStats)
if (client.type !== 'connected') {
onConnectionAttempt({
client,
tools:
client.type === 'needs-auth'
? [createMcpAuthTool(name, config)]
: [],
commands: [],
})
return
}
if (config.type === 'claudeai-proxy') {
markClaudeAiMcpConnected(name)
}
const supportsResources = !!client.capabilities?.resources
const [tools, mcpCommands, mcpSkills, resources] = await Promise.all([
fetchToolsForClient(client),
fetchCommandsForClient(client),
// Discover skills from skill:// resources
feature('MCP_SKILLS') && supportsResources
? fetchMcpSkillsForClient!(client)
: Promise.resolve([]),
// Fetch resources if supported
supportsResources
? fetchResourcesForClient(client)
: Promise.resolve([]),
])
const commands = [...mcpCommands, ...mcpSkills]
// If this server resources and we haven't added resource tools yet,
// include our resource tools with this client's tools
const resourceTools: Tool[] = []
if (supportsResources && !resourceToolsAdded) {
resourceToolsAdded = true
resourceTools.push(ListMcpResourcesTool, ReadMcpResourceTool)
}
onConnectionAttempt({
client,
tools: [...tools, ...resourceTools],
commands,
resources: resources.length > 0 ? resources : undefined,
})
} catch (error) {
// Handle errors gracefully - connection might have closed during fetch
logMCPError(
name,
`Error fetching tools/commands/resources: ${errorMessage(error)}`,
)
// Still update with the client but no tools/commands
onConnectionAttempt({
client: { name, type: 'failed' as const, config },
tools: [],
commands: [],
})
}
}
// Process both groups concurrently, each with their own concurrency limits:
// - Local servers (stdio/sdk): lower concurrency to avoid process spawning resource contention
// - Remote servers: higher concurrency since they're just network connections
await Promise.all([
processBatched(
localServers,
getMcpServerConnectionBatchSize(),
processServer,
),
processBatched(
remoteServers,
getRemoteMcpServerConnectionBatchSize(),
processServer,
),
])
}
// Not memoized: called only 2-3 times at startup/reconfig. The inner work
// (connectToServer, fetch*ForClient) is already cached. Memoizing here by
// mcpConfigs object ref leaked — main.tsx creates fresh config objects each call.
export function prefetchAllMcpResources(
mcpConfigs: Record<string, ScopedMcpServerConfig>,
): Promise<{
clients: MCPServerConnection[]
tools: Tool[]
commands: Command[]
}> {
return new Promise(resolve => {
let pendingCount = 0
let completedCount = 0
pendingCount = Object.keys(mcpConfigs).length
if (pendingCount === 0) {
void resolve({
clients: [],
tools: [],
commands: [],
})
return
}
const clients: MCPServerConnection[] = []
const tools: Tool[] = []
const commands: Command[] = []
getMcpToolsCommandsAndResources(result => {
clients.push(result.client)
tools.push(...result.tools)
commands.push(...result.commands)
completedCount++
if (completedCount >= pendingCount) {
const commandsMetadataLength = commands.reduce((sum, command) => {
const commandMetadataLength =
command.name.length +
(command.description ?? '').length +
(command.argumentHint ?? '').length
return sum + commandMetadataLength
}, 0)
logEvent('tengu_mcp_tools_commands_loaded', {
tools_count: tools.length,
commands_count: commands.length,
commands_metadata_length: commandsMetadataLength,
})
void resolve({
clients,
tools,
commands,
})
}
}, mcpConfigs).catch(error => {
logMCPError(
'prefetchAllMcpResources',
`Failed to get MCP resources: ${errorMessage(error)}`,
)
// Still resolve with empty results
void resolve({
clients: [],
tools: [],
commands: [],
})
})
})
}
/**
* Transform result content from an MCP tool or MCP prompt into message blocks
*/
export async function transformResultContent(
resultContent: PromptMessage['content'],
serverName: string,
): Promise<Array<ContentBlockParam>> {
switch (resultContent.type) {
case 'text':
return [
{
type: 'text',
text: resultContent.text,
},
]
case 'audio': {
const audioData = resultContent as {
type: 'audio'
data: string
mimeType?: string
}
return await persistBlobToTextBlock(
Buffer.from(audioData.data, 'base64'),
audioData.mimeType,
serverName,
`[Audio from ${serverName}] `,
)
}
case 'image': {
// Resize and compress image data, enforcing API dimension limits
const imageBuffer = Buffer.from(String(resultContent.data), 'base64')
const ext = resultContent.mimeType?.split('/')[1] || 'png'
const resized = await maybeResizeAndDownsampleImageBuffer(
imageBuffer,
imageBuffer.length,
ext,
)
return [
{
type: 'image',
source: {
data: resized.buffer.toString('base64'),
media_type:
`image/${resized.mediaType}` as Base64ImageSource['media_type'],
type: 'base64',
},
},
]
}
case 'resource': {
const resource = resultContent.resource
const prefix = `[Resource from ${serverName} at ${resource.uri}] `
if ('text' in resource) {
return [
{
type: 'text',
text: `${prefix}${resource.text}`,
},
]
} else if ('blob' in resource) {
const isImage = IMAGE_MIME_TYPES.has(resource.mimeType ?? '')
if (isImage) {
// Resize and compress image blob, enforcing API dimension limits
const imageBuffer = Buffer.from(resource.blob, 'base64')
const ext = resource.mimeType?.split('/')[1] || 'png'
const resized = await maybeResizeAndDownsampleImageBuffer(
imageBuffer,
imageBuffer.length,
ext,
)
const content: MessageParam['content'] = []
if (prefix) {
content.push({
type: 'text',
text: prefix,
})
}
content.push({
type: 'image',
source: {
data: resized.buffer.toString('base64'),
media_type:
`image/${resized.mediaType}` as Base64ImageSource['media_type'],
type: 'base64',
},
})
return content
} else {
return await persistBlobToTextBlock(
Buffer.from(resource.blob, 'base64'),
resource.mimeType,
serverName,
prefix,
)
}
}
return []
}
case 'resource_link': {
const resourceLink = resultContent as ResourceLink
let text = `[Resource link: ${resourceLink.name}] ${resourceLink.uri}`
if (resourceLink.description) {
text += ` (${resourceLink.description})`
}
return [
{
type: 'text',
text,
},
]
}
default:
return []
}
}
/**
* Decode base64 binary content, write it to disk with the proper extension,
* and return a small text block with the file path. Replaces the old behavior
* of dumping raw base64 into the context.
*/
async function persistBlobToTextBlock(
bytes: Buffer,
mimeType: string | undefined,
serverName: string,
sourceDescription: string,
): Promise<Array<ContentBlockParam>> {
const persistId = `mcp-${normalizeNameForMCP(serverName)}-blob-${Date.now()}-${Math.random().toString(36).slice(2, 8)}`
const result = await persistBinaryContent(bytes, mimeType, persistId)
if ('error' in result) {
return [
{
type: 'text',
text: `${sourceDescription}Binary content (${mimeType || 'unknown type'}, ${bytes.length} bytes) could not be saved to disk: ${result.error}`,
},
]
}
return [
{
type: 'text',
text: getBinaryBlobSavedMessage(
result.filepath,
mimeType,
result.size,
sourceDescription,
),
},
]
}
/**
* Processes MCP tool result into a normalized format.
*/
export type MCPResultType = 'toolResult' | 'structuredContent' | 'contentArray'
export type TransformedMCPResult = {
content: MCPToolResult
type: MCPResultType
schema?: string
}
/**
* Generates a compact, jq-friendly type signature for a value.
* e.g. "{title: string, items: [{id: number, name: string}]}"
*/
export function inferCompactSchema(value: unknown, depth = 2): string {
if (value === null) return 'null'
if (Array.isArray(value)) {
if (value.length === 0) return '[]'
return `[${inferCompactSchema(value[0], depth - 1)}]`
}
if (typeof value === 'object') {
if (depth <= 0) return '{...}'
const entries = Object.entries(value).slice(0, 10)
const props = entries.map(
([k, v]) => `${k}: ${inferCompactSchema(v, depth - 1)}`,
)
const suffix = Object.keys(value).length > 10 ? ', ...' : ''
return `{${props.join(', ')}${suffix}}`
}
return typeof value
}
export async function transformMCPResult(
result: unknown,
tool: string, // Tool name for validation (e.g., "search")
name: string, // Server name for transformation (e.g., "slack")
): Promise<TransformedMCPResult> {
if (result && typeof result === 'object') {
if ('toolResult' in result) {
return {
content: String(result.toolResult),
type: 'toolResult',
}
}
if (
'structuredContent' in result &&
result.structuredContent !== undefined
) {
return {
content: jsonStringify(result.structuredContent),
type: 'structuredContent',
schema: inferCompactSchema(result.structuredContent),
}
}
if ('content' in result && Array.isArray(result.content)) {
const transformedContent = (
await Promise.all(
result.content.map(item => transformResultContent(item, name)),
)
).flat()
return {
content: transformedContent,
type: 'contentArray',
schema: inferCompactSchema(transformedContent),
}
}
}
const errorMessage = `MCP server "${name}" tool "${tool}": unexpected response format`
logMCPError(name, errorMessage)
throw new TelemetrySafeError_I_VERIFIED_THIS_IS_NOT_CODE_OR_FILEPATHS(
errorMessage,
'MCP tool unexpected response format',
)
}
/**
* Check if MCP content contains any image blocks.
* Used to decide whether to persist to file (images should use truncation instead
* to preserve image compression and viewability).
*/
function contentContainsImages(content: MCPToolResult): boolean {
if (!content || typeof content === 'string') {
return false
}
return content.some(block => block.type === 'image')
}
export async function processMCPResult(
result: unknown,
tool: string, // Tool name for validation (e.g., "search")
name: string, // Server name for IDE check and transformation (e.g., "slack")
): Promise<MCPToolResult> {
const { content, type, schema } = await transformMCPResult(result, tool, name)
// IDE tools are not going to the model directly, so we don't need to
// handle large output.
if (name === 'ide') {
return content
}
// Check if content needs truncation (i.e., is too large)
if (!(await mcpContentNeedsTruncation(content))) {
return content
}
const sizeEstimateTokens = getContentSizeEstimate(content)
// If large output files feature is disabled, fall back to old truncation behavior
if (isEnvDefinedFalsy(process.env.ENABLE_MCP_LARGE_OUTPUT_FILES)) {
logEvent('tengu_mcp_large_result_handled', {
outcome: 'truncated',
reason: 'env_disabled',
sizeEstimateTokens,
} as AnalyticsMetadata_I_VERIFIED_THIS_IS_NOT_CODE_OR_FILEPATHS)
return await truncateMcpContentIfNeeded(content)
}
// Save large output to file and return instructions for reading it
// Content is guaranteed to exist at this point (we checked mcpContentNeedsTruncation)
if (!content) {
return content
}
// If content contains images, fall back to truncation - persisting images as JSON
// defeats the image compression logic and makes them non-viewable
if (contentContainsImages(content)) {
logEvent('tengu_mcp_large_result_handled', {
outcome: 'truncated',
reason: 'contains_images',
sizeEstimateTokens,
} as AnalyticsMetadata_I_VERIFIED_THIS_IS_NOT_CODE_OR_FILEPATHS)
return await truncateMcpContentIfNeeded(content)
}
// Generate a unique ID for the persisted file (server__tool-timestamp)
const timestamp = Date.now()
const persistId = `mcp-${normalizeNameForMCP(name)}-${normalizeNameForMCP(tool)}-${timestamp}`
// Convert to string for persistence (persistToolResult expects string or specific block types)
const contentStr =
typeof content === 'string' ? content : jsonStringify(content, null, 2)
const persistResult = await persistToolResult(contentStr, persistId)
if (isPersistError(persistResult)) {
// If file save failed, fall back to returning truncated content info
const contentLength = contentStr.length
logEvent('tengu_mcp_large_result_handled', {
outcome: 'truncated',
reason: 'persist_failed',
sizeEstimateTokens,
} as AnalyticsMetadata_I_VERIFIED_THIS_IS_NOT_CODE_OR_FILEPATHS)
return `Error: result (${contentLength.toLocaleString()} characters) exceeds maximum allowed tokens. Failed to save output to file: ${persistResult.error}. If this MCP server provides pagination or filtering tools, use them to retrieve specific portions of the data.`
}
logEvent('tengu_mcp_large_result_handled', {
outcome: 'persisted',
reason: 'file_saved',
sizeEstimateTokens,
persistedSizeChars: persistResult.originalSize,
} as AnalyticsMetadata_I_VERIFIED_THIS_IS_NOT_CODE_OR_FILEPATHS)
const formatDescription = getFormatDescription(type, schema)
return getLargeOutputInstructions(
persistResult.filepath,
persistResult.originalSize,
formatDescription,
)
}
/**
* Call an MCP tool, handling UrlElicitationRequiredError (-32042) by
* displaying the URL elicitation to the user, waiting for the completion
* notification, and retrying the tool call.
*/
type MCPToolCallResult = {
content: MCPToolResult
_meta?: Record<string, unknown>
structuredContent?: Record<string, unknown>
}
/** @internal Exported for testing. */
export async function callMCPToolWithUrlElicitationRetry({
client: connectedClient,
clientConnection,
tool,
args,
meta,
signal,
setAppState,
onProgress,
callToolFn = callMCPTool,
handleElicitation,
}: {
client: ConnectedMCPServer
clientConnection: MCPServerConnection
tool: string
args: Record<string, unknown>
meta?: Record<string, unknown>
signal: AbortSignal
setAppState: (f: (prev: AppState) => AppState) => void
onProgress?: (data: MCPProgress) => void
/** Injectable for testing. Defaults to callMCPTool. */
callToolFn?: (opts: {
client: ConnectedMCPServer
tool: string
args: Record<string, unknown>
meta?: Record<string, unknown>
signal: AbortSignal
onProgress?: (data: MCPProgress) => void
}) => Promise<MCPToolCallResult>
/** Handler for URL elicitations when no hook handles them.
* In print/SDK mode, delegates to structuredIO. In REPL, falls back to queue. */
handleElicitation?: (
serverName: string,
params: ElicitRequestURLParams,
signal: AbortSignal,
) => Promise<ElicitResult>
}): Promise<MCPToolCallResult> {
const MAX_URL_ELICITATION_RETRIES = 3
for (let attempt = 0; ; attempt++) {
try {
return await callToolFn({
client: connectedClient,
tool,
args,
meta,
signal,
onProgress,
})
} catch (error) {
// The MCP SDK's Protocol creates plain McpError (not UrlElicitationRequiredError)
// for error responses, so we check the error code instead of instanceof.
if (
!(error instanceof McpError) ||
error.code !== ErrorCode.UrlElicitationRequired
) {
throw error
}
// Limit the number of URL elicitation retries
if (attempt >= MAX_URL_ELICITATION_RETRIES) {
throw error
}
const errorData = error.data
const rawElicitations =
errorData != null &&
typeof errorData === 'object' &&
'elicitations' in errorData &&
Array.isArray(errorData.elicitations)
? (errorData.elicitations as unknown[])
: []
// Validate each element has the required fields for ElicitRequestURLParams
const elicitations = rawElicitations.filter(
(e): e is ElicitRequestURLParams => {
if (e == null || typeof e !== 'object') return false
const obj = e as Record<string, unknown>
return (
obj.mode === 'url' &&
typeof obj.url === 'string' &&
typeof obj.elicitationId === 'string' &&
typeof obj.message === 'string'
)
},
)
const serverName =
clientConnection.type === 'connected'
? clientConnection.name
: 'unknown'
if (elicitations.length === 0) {
logMCPDebug(
serverName,
`Tool '${tool}' returned -32042 but no valid elicitations in error data`,
)
throw error
}
logMCPDebug(
serverName,
`Tool '${tool}' requires URL elicitation (error -32042, attempt ${attempt + 1}), processing ${elicitations.length} elicitation(s)`,
)
// Process each URL elicitation from the error.
// The completion notification handler (in registerElicitationHandler) sets
// `completed: true` on the matching queue event; the dialog reacts to this flag.
for (const elicitation of elicitations) {
const { elicitationId } = elicitation
// Run elicitation hooks — they can resolve URL elicitations programmatically
const hookResponse = await runElicitationHooks(
serverName,
elicitation,
signal,
)
if (hookResponse) {
logMCPDebug(
serverName,
`URL elicitation ${elicitationId} resolved by hook: ${jsonStringify(hookResponse)}`,
)
if (hookResponse.action !== 'accept') {
return {
content: `URL elicitation was ${hookResponse.action === 'decline' ? 'declined' : hookResponse.action + 'ed'} by a hook. The tool "${tool}" could not complete because it requires the user to open a URL.`,
}
}
// Hook accepted — skip the UI and proceed to retry
continue
}
// Resolve the URL elicitation via callback (print/SDK mode) or queue (REPL mode).
let userResult: ElicitResult
if (handleElicitation) {
// Print/SDK mode: delegate to structuredIO which sends a control request
userResult = await handleElicitation(serverName, elicitation, signal)
} else {
// REPL mode: queue for ElicitationDialog with two-phase consent/waiting flow
const waitingState: ElicitationWaitingState = {
actionLabel: 'Retry now',
showCancel: true,
}
userResult = await new Promise<ElicitResult>(resolve => {
const onAbort = () => {
void resolve({ action: 'cancel' })
}
if (signal.aborted) {
onAbort()
return
}
signal.addEventListener('abort', onAbort, { once: true })
setAppState(prev => ({
...prev,
elicitation: {
queue: [
...prev.elicitation.queue,
{
serverName,
requestId: `error-elicit-${elicitationId}`,
params: elicitation,
signal,
waitingState,
respond: result => {
// Phase 1 consent: accept is a no-op (doesn't resolve retry Promise)
if (result.action === 'accept') {
return
}
// Decline or cancel: resolve the retry Promise
signal.removeEventListener('abort', onAbort)
void resolve(result)
},
onWaitingDismiss: action => {
signal.removeEventListener('abort', onAbort)
if (action === 'retry') {
void resolve({ action: 'accept' })
} else {
void resolve({ action: 'cancel' })
}
},
},
],
},
}))
})
}
// Run ElicitationResult hooks — they can modify or block the response
const finalResult = await runElicitationResultHooks(
serverName,
userResult,
signal,
'url',
elicitationId,
)
if (finalResult.action !== 'accept') {
logMCPDebug(
serverName,
`User ${finalResult.action === 'decline' ? 'declined' : finalResult.action + 'ed'} URL elicitation ${elicitationId}`,
)
return {
content: `URL elicitation was ${finalResult.action === 'decline' ? 'declined' : finalResult.action + 'ed'} by the user. The tool "${tool}" could not complete because it requires the user to open a URL.`,
}
}
logMCPDebug(
serverName,
`Elicitation ${elicitationId} completed, retrying tool call`,
)
}
// Loop back to retry the tool call
}
}
}
async function callMCPTool({
client: { client, name, config },
tool,
args,
meta,
signal,
onProgress,
}: {
client: ConnectedMCPServer
tool: string
args: Record<string, unknown>
meta?: Record<string, unknown>
signal: AbortSignal
onProgress?: (data: MCPProgress) => void
}): Promise<{
content: MCPToolResult
_meta?: Record<string, unknown>
structuredContent?: Record<string, unknown>
}> {
const toolStartTime = Date.now()
let progressInterval: NodeJS.Timeout | undefined
try {
logMCPDebug(name, `Calling MCP tool: ${tool}`)
// Set up progress logging for long-running tools (every 30 seconds)
progressInterval = setInterval(
(startTime, name, tool) => {
const elapsed = Date.now() - startTime
const elapsedSeconds = Math.floor(elapsed / 1000)
const duration = `${elapsedSeconds}s`
logMCPDebug(name, `Tool '${tool}' still running (${duration} elapsed)`)
},
30000, // Log every 30 seconds
toolStartTime,
name,
tool,
)
// Use Promise.race with our own timeout to handle cases where SDK's
// internal timeout doesn't work (e.g., SSE stream breaks mid-request)
const timeoutMs = getMcpToolTimeoutMs()
let timeoutId: NodeJS.Timeout | undefined
const timeoutPromise = new Promise<never>((_, reject) => {
timeoutId = setTimeout(
(reject, name, tool, timeoutMs) => {
reject(
new TelemetrySafeError_I_VERIFIED_THIS_IS_NOT_CODE_OR_FILEPATHS(
`MCP server "${name}" tool "${tool}" timed out after ${Math.floor(timeoutMs / 1000)}s`,
'MCP tool timeout',
),
)
},
timeoutMs,
reject,
name,
tool,
timeoutMs,
)
})
const result = await Promise.race([
client.callTool(
{
name: tool,
arguments: args,
_meta: meta,
},
CallToolResultSchema,
{
signal,
timeout: timeoutMs,
onprogress: onProgress
? sdkProgress => {
onProgress({
type: 'mcp_progress',
status: 'progress',
serverName: name,
toolName: tool,
progress: sdkProgress.progress,
total: sdkProgress.total,
progressMessage: sdkProgress.message,
})
}
: undefined,
},
),
timeoutPromise,
]).finally(() => {
if (timeoutId) {
clearTimeout(timeoutId)
}
})
if ('isError' in result && result.isError) {
let errorDetails = 'Unknown error'
if (
'content' in result &&
Array.isArray(result.content) &&
result.content.length > 0
) {
const firstContent = result.content[0]
if (
firstContent &&
typeof firstContent === 'object' &&
'text' in firstContent
) {
errorDetails = firstContent.text
}
} else if ('error' in result) {
// Fallback for legacy error format
errorDetails = String(result.error)
}
logMCPError(name, errorDetails)
throw new McpToolCallError_I_VERIFIED_THIS_IS_NOT_CODE_OR_FILEPATHS(
errorDetails,
'MCP tool returned error',
'_meta' in result && result._meta ? { _meta: result._meta } : undefined,
)
}
const elapsed = Date.now() - toolStartTime
const duration =
elapsed < 1000
? `${elapsed}ms`
: elapsed < 60000
? `${Math.floor(elapsed / 1000)}s`
: `${Math.floor(elapsed / 60000)}m ${Math.floor((elapsed % 60000) / 1000)}s`
logMCPDebug(name, `Tool '${tool}' completed successfully in ${duration}`)
// Log code indexing tool usage
const codeIndexingTool = detectCodeIndexingFromMcpServerName(name)
if (codeIndexingTool) {
logEvent('tengu_code_indexing_tool_used', {
tool: codeIndexingTool as AnalyticsMetadata_I_VERIFIED_THIS_IS_NOT_CODE_OR_FILEPATHS,
source:
'mcp' as AnalyticsMetadata_I_VERIFIED_THIS_IS_NOT_CODE_OR_FILEPATHS,
success: true,
})
}
const content = await processMCPResult(result, tool, name)
return {
content,
_meta: result._meta as Record<string, unknown> | undefined,
structuredContent: result.structuredContent as
| Record<string, unknown>
| undefined,
}
} catch (e) {
// Clear intervals on error
if (progressInterval !== undefined) {
clearInterval(progressInterval)
}
const elapsed = Date.now() - toolStartTime
if (e instanceof Error && e.name !== 'AbortError') {
logMCPDebug(
name,
`Tool '${tool}' failed after ${Math.floor(elapsed / 1000)}s: ${e.message}`,
)
}
// Check for 401 errors indicating expired/invalid OAuth tokens
// The MCP SDK's StreamableHTTPError has a `code` property with the HTTP status
if (e instanceof Error) {
const errorCode = 'code' in e ? (e.code as number | undefined) : undefined
if (errorCode === 401 || e instanceof UnauthorizedError) {
logMCPDebug(
name,
`Tool call returned 401 Unauthorized - token may have expired`,
)
logEvent('tengu_mcp_tool_call_auth_error', {})
throw new McpAuthError(
name,
`MCP server "${name}" requires re-authorization (token expired)`,
)
}
// Check for session expiry — two error shapes can surface here:
// 1. Direct 404 + JSON-RPC -32001 from the server (StreamableHTTPError)
// 2. -32000 "Connection closed" (McpError) — the SDK closes the transport
// after the onerror handler fires, so the pending callTool() rejects
// with this derived error instead of the original 404.
// In both cases, clear the connection cache so the next tool call
// creates a fresh session.
const isSessionExpired = isMcpSessionExpiredError(e)
const isConnectionClosedOnHttp =
'code' in e &&
(e as Error & { code?: number }).code === -32000 &&
e.message.includes('Connection closed') &&
(config.type === 'http' || config.type === 'claudeai-proxy')
if (isSessionExpired || isConnectionClosedOnHttp) {
logMCPDebug(
name,
`MCP session expired during tool call (${isSessionExpired ? '404/-32001' : 'connection closed'}), clearing connection cache for re-initialization`,
)
logEvent('tengu_mcp_session_expired', {})
await clearServerCache(name, config)
throw new McpSessionExpiredError(name)
}
}
// When the users hits esc, avoid logspew
if (!(e instanceof Error) || e.name !== 'AbortError') {
throw e
}
return { content: undefined }
} finally {
// Always clear intervals
if (progressInterval !== undefined) {
clearInterval(progressInterval)
}
}
}
function extractToolUseId(message: AssistantMessage): string | undefined {
if (message.message.content[0]?.type !== 'tool_use') {
return undefined
}
return message.message.content[0].id
}
/**
* Sets up SDK MCP clients by creating transports and connecting them.
* This is used for SDK MCP servers that run in the same process as the SDK.
*
* @param sdkMcpConfigs - The SDK MCP server configurations
* @param sendMcpMessage - Callback to send MCP messages through the control channel
* @returns Connected clients, their tools, and transport map for message routing
*/
export async function setupSdkMcpClients(
sdkMcpConfigs: Record<string, McpSdkServerConfig>,
sendMcpMessage: (
serverName: string,
message: JSONRPCMessage,
) => Promise<JSONRPCMessage>,
): Promise<{
clients: MCPServerConnection[]
tools: Tool[]
}> {
const clients: MCPServerConnection[] = []
const tools: Tool[] = []
// Connect to all servers in parallel
const results = await Promise.allSettled(
Object.entries(sdkMcpConfigs).map(async ([name, config]) => {
const transport = new SdkControlClientTransport(name, sendMcpMessage)
const client = new Client(
{
name: 'claude-code',
title: 'Claude Code',
version: MACRO.VERSION ?? 'unknown',
description: "Anthropic's agentic coding tool",
websiteUrl: PRODUCT_URL,
},
{
capabilities: {},
},
)
try {
// Connect the client
await client.connect(transport)
// Get capabilities from the server
const capabilities = client.getServerCapabilities()
// Create the connected client object
const connectedClient: MCPServerConnection = {
type: 'connected',
name,
capabilities: capabilities || {},
client,
config: { ...config, scope: 'dynamic' as const },
cleanup: async () => {
await client.close()
},
}
// Fetch tools if the server has them
const serverTools: Tool[] = []
if (capabilities?.tools) {
const sdkTools = await fetchToolsForClient(connectedClient)
serverTools.push(...sdkTools)
}
return {
client: connectedClient,
tools: serverTools,
}
} catch (error) {
// If connection fails, return failed server
logMCPError(name, `Failed to connect SDK MCP server: ${error}`)
return {
client: {
type: 'failed' as const,
name,
config: { ...config, scope: 'user' as const },
},
tools: [],
}
}
}),
)
// Process results and collect clients and tools
for (const result of results) {
if (result.status === 'fulfilled') {
clients.push(result.value.client)
tools.push(...result.value.tools)
}
// If rejected (unexpected), the error was already logged inside the promise
}
return { clients, tools }
}
|