@starascendin/lifeos-mcp 0.2.0 → 0.3.0

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.
Files changed (2) hide show
  1. package/dist/index.js +229 -0
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -1248,6 +1248,235 @@ const TOOLS = [
1248
1248
  required: ["issueIdOrIdentifier"],
1249
1249
  },
1250
1250
  },
1251
+ // Beeper Business Contacts Tools
1252
+ {
1253
+ name: "get_beeper_threads",
1254
+ description: "List all business-marked Beeper threads (WhatsApp contacts synced via Beeper).",
1255
+ inputSchema: {
1256
+ type: "object",
1257
+ properties: {
1258
+ userId: {
1259
+ type: "string",
1260
+ description: "Override the default user ID (optional)",
1261
+ },
1262
+ limit: {
1263
+ type: "number",
1264
+ description: "Max results (default 50)",
1265
+ },
1266
+ },
1267
+ },
1268
+ },
1269
+ {
1270
+ name: "get_beeper_thread",
1271
+ description: "Get a single Beeper thread by its Beeper thread ID.",
1272
+ inputSchema: {
1273
+ type: "object",
1274
+ properties: {
1275
+ userId: {
1276
+ type: "string",
1277
+ description: "Override the default user ID (optional)",
1278
+ },
1279
+ threadId: {
1280
+ type: "string",
1281
+ description: "The Beeper thread ID string (required)",
1282
+ },
1283
+ },
1284
+ required: ["threadId"],
1285
+ },
1286
+ },
1287
+ {
1288
+ name: "get_beeper_thread_messages",
1289
+ description: "Get messages for a Beeper thread.",
1290
+ inputSchema: {
1291
+ type: "object",
1292
+ properties: {
1293
+ userId: {
1294
+ type: "string",
1295
+ description: "Override the default user ID (optional)",
1296
+ },
1297
+ threadId: {
1298
+ type: "string",
1299
+ description: "The Beeper thread ID string (required)",
1300
+ },
1301
+ limit: {
1302
+ type: "number",
1303
+ description: "Max results (default 100)",
1304
+ },
1305
+ },
1306
+ required: ["threadId"],
1307
+ },
1308
+ },
1309
+ {
1310
+ name: "search_beeper_messages",
1311
+ description: "Full-text search across all synced Beeper messages.",
1312
+ inputSchema: {
1313
+ type: "object",
1314
+ properties: {
1315
+ userId: {
1316
+ type: "string",
1317
+ description: "Override the default user ID (optional)",
1318
+ },
1319
+ query: {
1320
+ type: "string",
1321
+ description: "Search terms to find in messages (required)",
1322
+ },
1323
+ limit: {
1324
+ type: "number",
1325
+ description: "Max results (default 50)",
1326
+ },
1327
+ },
1328
+ required: ["query"],
1329
+ },
1330
+ },
1331
+ {
1332
+ name: "get_beeper_threads_for_person",
1333
+ description: "Get Beeper threads linked to a FRM person/contact.",
1334
+ inputSchema: {
1335
+ type: "object",
1336
+ properties: {
1337
+ userId: {
1338
+ type: "string",
1339
+ description: "Override the default user ID (optional)",
1340
+ },
1341
+ personId: {
1342
+ type: "string",
1343
+ description: "The person's ID (required)",
1344
+ },
1345
+ },
1346
+ required: ["personId"],
1347
+ },
1348
+ },
1349
+ {
1350
+ name: "get_beeper_threads_for_client",
1351
+ description: "Get Beeper threads linked to a PM client.",
1352
+ inputSchema: {
1353
+ type: "object",
1354
+ properties: {
1355
+ userId: {
1356
+ type: "string",
1357
+ description: "Override the default user ID (optional)",
1358
+ },
1359
+ clientId: {
1360
+ type: "string",
1361
+ description: "The client's ID (required)",
1362
+ },
1363
+ },
1364
+ required: ["clientId"],
1365
+ },
1366
+ },
1367
+ // Granola Meeting Tools
1368
+ {
1369
+ name: "get_granola_meetings",
1370
+ description: "List all synced Granola meeting notes.",
1371
+ inputSchema: {
1372
+ type: "object",
1373
+ properties: {
1374
+ userId: {
1375
+ type: "string",
1376
+ description: "Override the default user ID (optional)",
1377
+ },
1378
+ limit: {
1379
+ type: "number",
1380
+ description: "Max results (default 50)",
1381
+ },
1382
+ },
1383
+ },
1384
+ },
1385
+ {
1386
+ name: "get_granola_meeting",
1387
+ description: "Get a single Granola meeting by its Granola document ID. Includes full AI-generated notes.",
1388
+ inputSchema: {
1389
+ type: "object",
1390
+ properties: {
1391
+ userId: {
1392
+ type: "string",
1393
+ description: "Override the default user ID (optional)",
1394
+ },
1395
+ granolaDocId: {
1396
+ type: "string",
1397
+ description: "The Granola document ID (required)",
1398
+ },
1399
+ },
1400
+ required: ["granolaDocId"],
1401
+ },
1402
+ },
1403
+ {
1404
+ name: "get_granola_transcript",
1405
+ description: "Get the full transcript for a Granola meeting.",
1406
+ inputSchema: {
1407
+ type: "object",
1408
+ properties: {
1409
+ userId: {
1410
+ type: "string",
1411
+ description: "Override the default user ID (optional)",
1412
+ },
1413
+ meetingId: {
1414
+ type: "string",
1415
+ description: "The Convex meeting ID (required)",
1416
+ },
1417
+ },
1418
+ required: ["meetingId"],
1419
+ },
1420
+ },
1421
+ {
1422
+ name: "search_granola_meetings",
1423
+ description: "Search Granola meetings by title or content.",
1424
+ inputSchema: {
1425
+ type: "object",
1426
+ properties: {
1427
+ userId: {
1428
+ type: "string",
1429
+ description: "Override the default user ID (optional)",
1430
+ },
1431
+ query: {
1432
+ type: "string",
1433
+ description: "Search terms to find in meeting titles and notes (required)",
1434
+ },
1435
+ limit: {
1436
+ type: "number",
1437
+ description: "Max results (default 20)",
1438
+ },
1439
+ },
1440
+ required: ["query"],
1441
+ },
1442
+ },
1443
+ // Cross-Entity Linking Tools
1444
+ {
1445
+ name: "get_granola_meetings_for_person",
1446
+ description: "Get Granola meetings linked to a FRM person/contact.",
1447
+ inputSchema: {
1448
+ type: "object",
1449
+ properties: {
1450
+ userId: {
1451
+ type: "string",
1452
+ description: "Override the default user ID (optional)",
1453
+ },
1454
+ personId: {
1455
+ type: "string",
1456
+ description: "The person's ID (required)",
1457
+ },
1458
+ },
1459
+ required: ["personId"],
1460
+ },
1461
+ },
1462
+ {
1463
+ name: "get_granola_meetings_for_thread",
1464
+ description: "Get Granola meetings linked to a Beeper thread.",
1465
+ inputSchema: {
1466
+ type: "object",
1467
+ properties: {
1468
+ userId: {
1469
+ type: "string",
1470
+ description: "Override the default user ID (optional)",
1471
+ },
1472
+ beeperThreadId: {
1473
+ type: "string",
1474
+ description: "The Beeper thread Convex ID (required)",
1475
+ },
1476
+ },
1477
+ required: ["beeperThreadId"],
1478
+ },
1479
+ },
1251
1480
  ];
1252
1481
  // Configuration: CLI flags take precedence over env vars
1253
1482
  // NOTE: HTTP routes are served from .convex.site, NOT .convex.cloud
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@starascendin/lifeos-mcp",
3
- "version": "0.2.0",
3
+ "version": "0.3.0",
4
4
  "description": "MCP server for LifeOS Project Management - manage projects, tasks, notes, and contacts via AI assistants",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",