@scitrera/memorylayer-mcp-server 0.0.5 → 0.1.22

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -921,6 +921,635 @@ export declare const CONTEXT_ENVIRONMENT_TOOLS: ({
921
921
  required?: undefined;
922
922
  };
923
923
  })[];
924
+ /**
925
+ * Chat history tools for storing and managing conversation threads.
926
+ */
927
+ export declare const CHAT_TOOLS: ({
928
+ name: string;
929
+ description: string;
930
+ inputSchema: {
931
+ type: string;
932
+ properties: {
933
+ thread_id: {
934
+ type: string;
935
+ description: string;
936
+ };
937
+ user_id: {
938
+ type: string;
939
+ description: string;
940
+ };
941
+ observer_id: {
942
+ type: string;
943
+ description: string;
944
+ };
945
+ subject_id: {
946
+ type: string;
947
+ description: string;
948
+ };
949
+ title: {
950
+ type: string;
951
+ description: string;
952
+ };
953
+ metadata: {
954
+ type: string;
955
+ description: string;
956
+ };
957
+ messages?: undefined;
958
+ limit?: undefined;
959
+ offset?: undefined;
960
+ order?: undefined;
961
+ };
962
+ required?: undefined;
963
+ };
964
+ } | {
965
+ name: string;
966
+ description: string;
967
+ inputSchema: {
968
+ type: string;
969
+ properties: {
970
+ thread_id: {
971
+ type: string;
972
+ description: string;
973
+ };
974
+ messages: {
975
+ type: string;
976
+ items: {
977
+ type: string;
978
+ properties: {
979
+ role: {
980
+ type: string;
981
+ description: string;
982
+ };
983
+ content: {
984
+ description: string;
985
+ };
986
+ metadata: {
987
+ type: string;
988
+ description: string;
989
+ };
990
+ };
991
+ required: string[];
992
+ };
993
+ description: string;
994
+ };
995
+ user_id?: undefined;
996
+ observer_id?: undefined;
997
+ subject_id?: undefined;
998
+ title?: undefined;
999
+ metadata?: undefined;
1000
+ limit?: undefined;
1001
+ offset?: undefined;
1002
+ order?: undefined;
1003
+ };
1004
+ required: string[];
1005
+ };
1006
+ } | {
1007
+ name: string;
1008
+ description: string;
1009
+ inputSchema: {
1010
+ type: string;
1011
+ properties: {
1012
+ thread_id: {
1013
+ type: string;
1014
+ description: string;
1015
+ };
1016
+ limit: {
1017
+ type: string;
1018
+ default: number;
1019
+ description: string;
1020
+ };
1021
+ offset: {
1022
+ type: string;
1023
+ default: number;
1024
+ description: string;
1025
+ };
1026
+ order: {
1027
+ type: string;
1028
+ enum: string[];
1029
+ default: string;
1030
+ description: string;
1031
+ };
1032
+ user_id?: undefined;
1033
+ observer_id?: undefined;
1034
+ subject_id?: undefined;
1035
+ title?: undefined;
1036
+ metadata?: undefined;
1037
+ messages?: undefined;
1038
+ };
1039
+ required: string[];
1040
+ };
1041
+ } | {
1042
+ name: string;
1043
+ description: string;
1044
+ inputSchema: {
1045
+ type: string;
1046
+ properties: {
1047
+ user_id: {
1048
+ type: string;
1049
+ description: string;
1050
+ };
1051
+ limit: {
1052
+ type: string;
1053
+ default: number;
1054
+ description: string;
1055
+ };
1056
+ offset: {
1057
+ type: string;
1058
+ default: number;
1059
+ description: string;
1060
+ };
1061
+ thread_id?: undefined;
1062
+ observer_id?: undefined;
1063
+ subject_id?: undefined;
1064
+ title?: undefined;
1065
+ metadata?: undefined;
1066
+ messages?: undefined;
1067
+ order?: undefined;
1068
+ };
1069
+ required?: undefined;
1070
+ };
1071
+ } | {
1072
+ name: string;
1073
+ description: string;
1074
+ inputSchema: {
1075
+ type: string;
1076
+ properties: {
1077
+ thread_id: {
1078
+ type: string;
1079
+ description: string;
1080
+ };
1081
+ user_id?: undefined;
1082
+ observer_id?: undefined;
1083
+ subject_id?: undefined;
1084
+ title?: undefined;
1085
+ metadata?: undefined;
1086
+ messages?: undefined;
1087
+ limit?: undefined;
1088
+ offset?: undefined;
1089
+ order?: undefined;
1090
+ };
1091
+ required: string[];
1092
+ };
1093
+ })[];
1094
+ /**
1095
+ * MCP tools for MCP server registry management.
1096
+ *
1097
+ * - mcp_servers_list = list registered MCP servers
1098
+ * - mcp_servers_get = fetch a single server by ID or name
1099
+ * - mcp_servers_save = create or update a server (upsert by name)
1100
+ * - mcp_servers_delete = delete a server by ID
1101
+ * - mcp_servers_import = bulk import from mcpServers JSON object
1102
+ */
1103
+ export declare const MCP_SERVERS_TOOLS: ({
1104
+ name: string;
1105
+ description: string;
1106
+ inputSchema: {
1107
+ type: string;
1108
+ properties: {
1109
+ transport: {
1110
+ type: string;
1111
+ enum: string[];
1112
+ description: string;
1113
+ };
1114
+ enabled: {
1115
+ type: string;
1116
+ description: string;
1117
+ default?: undefined;
1118
+ };
1119
+ name: {
1120
+ type: string;
1121
+ description: string;
1122
+ };
1123
+ limit: {
1124
+ type: string;
1125
+ minimum: number;
1126
+ maximum: number;
1127
+ default: number;
1128
+ description: string;
1129
+ };
1130
+ offset: {
1131
+ type: string;
1132
+ minimum: number;
1133
+ default: number;
1134
+ description: string;
1135
+ };
1136
+ server_id?: undefined;
1137
+ command?: undefined;
1138
+ args?: undefined;
1139
+ env?: undefined;
1140
+ url?: undefined;
1141
+ headers?: undefined;
1142
+ description?: undefined;
1143
+ metadata?: undefined;
1144
+ mcpServers?: undefined;
1145
+ };
1146
+ required: never[];
1147
+ };
1148
+ } | {
1149
+ name: string;
1150
+ description: string;
1151
+ inputSchema: {
1152
+ type: string;
1153
+ properties: {
1154
+ server_id: {
1155
+ type: string;
1156
+ description: string;
1157
+ };
1158
+ name: {
1159
+ type: string;
1160
+ description: string;
1161
+ };
1162
+ transport?: undefined;
1163
+ enabled?: undefined;
1164
+ limit?: undefined;
1165
+ offset?: undefined;
1166
+ command?: undefined;
1167
+ args?: undefined;
1168
+ env?: undefined;
1169
+ url?: undefined;
1170
+ headers?: undefined;
1171
+ description?: undefined;
1172
+ metadata?: undefined;
1173
+ mcpServers?: undefined;
1174
+ };
1175
+ required: never[];
1176
+ };
1177
+ } | {
1178
+ name: string;
1179
+ description: string;
1180
+ inputSchema: {
1181
+ type: string;
1182
+ properties: {
1183
+ name: {
1184
+ type: string;
1185
+ description: string;
1186
+ };
1187
+ transport: {
1188
+ type: string;
1189
+ enum: string[];
1190
+ description: string;
1191
+ };
1192
+ command: {
1193
+ type: string;
1194
+ description: string;
1195
+ };
1196
+ args: {
1197
+ type: string;
1198
+ items: {
1199
+ type: string;
1200
+ };
1201
+ description: string;
1202
+ };
1203
+ env: {
1204
+ type: string;
1205
+ additionalProperties: {
1206
+ type: string;
1207
+ };
1208
+ description: string;
1209
+ };
1210
+ url: {
1211
+ type: string;
1212
+ description: string;
1213
+ };
1214
+ headers: {
1215
+ type: string;
1216
+ additionalProperties: {
1217
+ type: string;
1218
+ };
1219
+ description: string;
1220
+ };
1221
+ description: {
1222
+ type: string;
1223
+ description: string;
1224
+ };
1225
+ enabled: {
1226
+ type: string;
1227
+ default: boolean;
1228
+ description: string;
1229
+ };
1230
+ metadata: {
1231
+ type: string;
1232
+ description: string;
1233
+ };
1234
+ limit?: undefined;
1235
+ offset?: undefined;
1236
+ server_id?: undefined;
1237
+ mcpServers?: undefined;
1238
+ };
1239
+ required: string[];
1240
+ };
1241
+ } | {
1242
+ name: string;
1243
+ description: string;
1244
+ inputSchema: {
1245
+ type: string;
1246
+ properties: {
1247
+ server_id: {
1248
+ type: string;
1249
+ description: string;
1250
+ };
1251
+ transport?: undefined;
1252
+ enabled?: undefined;
1253
+ name?: undefined;
1254
+ limit?: undefined;
1255
+ offset?: undefined;
1256
+ command?: undefined;
1257
+ args?: undefined;
1258
+ env?: undefined;
1259
+ url?: undefined;
1260
+ headers?: undefined;
1261
+ description?: undefined;
1262
+ metadata?: undefined;
1263
+ mcpServers?: undefined;
1264
+ };
1265
+ required: string[];
1266
+ };
1267
+ } | {
1268
+ name: string;
1269
+ description: string;
1270
+ inputSchema: {
1271
+ type: string;
1272
+ properties: {
1273
+ mcpServers: {
1274
+ type: string;
1275
+ description: string;
1276
+ additionalProperties: {
1277
+ type: string;
1278
+ properties: {
1279
+ command: {
1280
+ type: string;
1281
+ };
1282
+ args: {
1283
+ type: string;
1284
+ items: {
1285
+ type: string;
1286
+ };
1287
+ };
1288
+ env: {
1289
+ type: string;
1290
+ additionalProperties: {
1291
+ type: string;
1292
+ };
1293
+ };
1294
+ url: {
1295
+ type: string;
1296
+ };
1297
+ type: {
1298
+ type: string;
1299
+ };
1300
+ };
1301
+ };
1302
+ };
1303
+ transport?: undefined;
1304
+ enabled?: undefined;
1305
+ name?: undefined;
1306
+ limit?: undefined;
1307
+ offset?: undefined;
1308
+ server_id?: undefined;
1309
+ command?: undefined;
1310
+ args?: undefined;
1311
+ env?: undefined;
1312
+ url?: undefined;
1313
+ headers?: undefined;
1314
+ description?: undefined;
1315
+ metadata?: undefined;
1316
+ };
1317
+ required: string[];
1318
+ };
1319
+ })[];
1320
+ /**
1321
+ * MCP tools for Agent Skills management.
1322
+ *
1323
+ * Implements the spec's progressive disclosure tiers:
1324
+ * - skills_list = metadata tier (~100 tokens per skill)
1325
+ * - skills_get = instructions tier (full SKILL.md, ≤5k tokens recommended)
1326
+ * - skills_get_file = resources tier (on-demand file content)
1327
+ * - skills_search = vector recall against skill memory mirror
1328
+ * - skills_save = upsert a skill (full profile only)
1329
+ */
1330
+ export declare const SKILLS_TOOLS: ({
1331
+ name: string;
1332
+ description: string;
1333
+ inputSchema: {
1334
+ type: string;
1335
+ properties: {
1336
+ name: {
1337
+ type: string;
1338
+ description: string;
1339
+ };
1340
+ enabled: {
1341
+ type: string;
1342
+ description: string;
1343
+ };
1344
+ include_shadowed: {
1345
+ type: string;
1346
+ description: string;
1347
+ };
1348
+ limit: {
1349
+ type: string;
1350
+ minimum: number;
1351
+ maximum: number;
1352
+ default: number;
1353
+ description: string;
1354
+ };
1355
+ offset: {
1356
+ type: string;
1357
+ minimum: number;
1358
+ default: number;
1359
+ description: string;
1360
+ };
1361
+ skill_id?: undefined;
1362
+ path?: undefined;
1363
+ query?: undefined;
1364
+ description?: undefined;
1365
+ body?: undefined;
1366
+ version?: undefined;
1367
+ license?: undefined;
1368
+ compatibility?: undefined;
1369
+ allowed_tools?: undefined;
1370
+ source_mode?: undefined;
1371
+ metadata?: undefined;
1372
+ files?: undefined;
1373
+ };
1374
+ required: never[];
1375
+ };
1376
+ } | {
1377
+ name: string;
1378
+ description: string;
1379
+ inputSchema: {
1380
+ type: string;
1381
+ properties: {
1382
+ skill_id: {
1383
+ type: string;
1384
+ description: string;
1385
+ };
1386
+ name: {
1387
+ type: string;
1388
+ description: string;
1389
+ };
1390
+ enabled?: undefined;
1391
+ include_shadowed?: undefined;
1392
+ limit?: undefined;
1393
+ offset?: undefined;
1394
+ path?: undefined;
1395
+ query?: undefined;
1396
+ description?: undefined;
1397
+ body?: undefined;
1398
+ version?: undefined;
1399
+ license?: undefined;
1400
+ compatibility?: undefined;
1401
+ allowed_tools?: undefined;
1402
+ source_mode?: undefined;
1403
+ metadata?: undefined;
1404
+ files?: undefined;
1405
+ };
1406
+ required: never[];
1407
+ };
1408
+ } | {
1409
+ name: string;
1410
+ description: string;
1411
+ inputSchema: {
1412
+ type: string;
1413
+ properties: {
1414
+ skill_id: {
1415
+ type: string;
1416
+ description: string;
1417
+ };
1418
+ path: {
1419
+ type: string;
1420
+ description: string;
1421
+ };
1422
+ name?: undefined;
1423
+ enabled?: undefined;
1424
+ include_shadowed?: undefined;
1425
+ limit?: undefined;
1426
+ offset?: undefined;
1427
+ query?: undefined;
1428
+ description?: undefined;
1429
+ body?: undefined;
1430
+ version?: undefined;
1431
+ license?: undefined;
1432
+ compatibility?: undefined;
1433
+ allowed_tools?: undefined;
1434
+ source_mode?: undefined;
1435
+ metadata?: undefined;
1436
+ files?: undefined;
1437
+ };
1438
+ required: string[];
1439
+ };
1440
+ } | {
1441
+ name: string;
1442
+ description: string;
1443
+ inputSchema: {
1444
+ type: string;
1445
+ properties: {
1446
+ query: {
1447
+ type: string;
1448
+ description: string;
1449
+ };
1450
+ limit: {
1451
+ type: string;
1452
+ minimum: number;
1453
+ maximum: number;
1454
+ default: number;
1455
+ description: string;
1456
+ };
1457
+ name?: undefined;
1458
+ enabled?: undefined;
1459
+ include_shadowed?: undefined;
1460
+ offset?: undefined;
1461
+ skill_id?: undefined;
1462
+ path?: undefined;
1463
+ description?: undefined;
1464
+ body?: undefined;
1465
+ version?: undefined;
1466
+ license?: undefined;
1467
+ compatibility?: undefined;
1468
+ allowed_tools?: undefined;
1469
+ source_mode?: undefined;
1470
+ metadata?: undefined;
1471
+ files?: undefined;
1472
+ };
1473
+ required: string[];
1474
+ };
1475
+ } | {
1476
+ name: string;
1477
+ description: string;
1478
+ inputSchema: {
1479
+ type: string;
1480
+ properties: {
1481
+ name: {
1482
+ type: string;
1483
+ description: string;
1484
+ };
1485
+ description: {
1486
+ type: string;
1487
+ description: string;
1488
+ };
1489
+ body: {
1490
+ type: string;
1491
+ description: string;
1492
+ };
1493
+ version: {
1494
+ type: string;
1495
+ default: string;
1496
+ description: string;
1497
+ };
1498
+ license: {
1499
+ type: string;
1500
+ description: string;
1501
+ };
1502
+ compatibility: {
1503
+ type: string;
1504
+ description: string;
1505
+ };
1506
+ allowed_tools: {
1507
+ type: string;
1508
+ description: string;
1509
+ };
1510
+ source_mode: {
1511
+ type: string;
1512
+ enum: string[];
1513
+ default: string;
1514
+ description: string;
1515
+ };
1516
+ metadata: {
1517
+ type: string;
1518
+ description: string;
1519
+ };
1520
+ files: {
1521
+ type: string;
1522
+ items: {
1523
+ type: string;
1524
+ properties: {
1525
+ path: {
1526
+ type: string;
1527
+ description: string;
1528
+ };
1529
+ content_b64: {
1530
+ type: string;
1531
+ description: string;
1532
+ };
1533
+ mime_type: {
1534
+ type: string;
1535
+ description: string;
1536
+ };
1537
+ };
1538
+ required: string[];
1539
+ };
1540
+ description: string;
1541
+ };
1542
+ enabled?: undefined;
1543
+ include_shadowed?: undefined;
1544
+ limit?: undefined;
1545
+ offset?: undefined;
1546
+ skill_id?: undefined;
1547
+ path?: undefined;
1548
+ query?: undefined;
1549
+ };
1550
+ required: string[];
1551
+ };
1552
+ })[];
924
1553
  /**
925
1554
  * Tool profiles for different use cases.
926
1555
  *
@@ -950,11 +1579,27 @@ export declare const TOOL_NAMES: {
950
1579
  readonly contextRlm: "memory_context_rlm";
951
1580
  readonly contextStatus: "memory_context_status";
952
1581
  readonly contextCheckpoint: "memory_context_checkpoint";
1582
+ readonly chatThreadCreate: "chat_thread_create";
1583
+ readonly chatThreadAppend: "chat_thread_append";
1584
+ readonly chatThreadGet: "chat_thread_get";
1585
+ readonly chatThreadList: "chat_thread_list";
1586
+ readonly chatThreadDecompose: "chat_thread_decompose";
1587
+ readonly chatThreadDelete: "chat_thread_delete";
1588
+ readonly skillsList: "skills_list";
1589
+ readonly skillsGet: "skills_get";
1590
+ readonly skillsGetFile: "skills_get_file";
1591
+ readonly skillsSearch: "skills_search";
1592
+ readonly skillsSave: "skills_save";
1593
+ readonly mcpServersList: "mcp_servers_list";
1594
+ readonly mcpServersGet: "mcp_servers_get";
1595
+ readonly mcpServersSave: "mcp_servers_save";
1596
+ readonly mcpServersDelete: "mcp_servers_delete";
1597
+ readonly mcpServersImport: "mcp_servers_import";
953
1598
  };
954
1599
  /**
955
1600
  * Tool profile definitions.
956
1601
  *
957
- * - "cc": Claude Code profile (default) - 9 essential tools for agent memory
1602
+ * - "cc": Claude Code profile (default) - core + session + context + chat tools for agent memory
958
1603
  * - "full": All tools enabled - for power users and advanced use cases
959
1604
  * - "minimal": Just remember/recall - absolute minimum
960
1605
  */
@@ -1 +1 @@
1
- {"version":3,"file":"tools.d.ts","sourceRoot":"","sources":["../../src/tools.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"tools.d.ts","sourceRoot":"","sources":["../../src/tools.ts"],"names":[],"mappings":"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"}