@starascendin/lifeos-mcp 0.4.1 → 0.4.2

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.
@@ -1,2 +1,2 @@
1
- export declare const VERSION = "0.4.1";
2
- export declare const BUILD_TIME = "2026-02-03T17:44:02.201Z";
1
+ export declare const VERSION = "0.4.2";
2
+ export declare const BUILD_TIME = "2026-02-08T16:24:44.068Z";
@@ -1,3 +1,3 @@
1
1
  // AUTO-GENERATED — do not edit. Regenerated on every build.
2
- export const VERSION = "0.4.1";
3
- export const BUILD_TIME = "2026-02-03T17:44:02.201Z";
2
+ export const VERSION = "0.4.2";
3
+ export const BUILD_TIME = "2026-02-08T16:24:44.068Z";
package/dist/index.js CHANGED
@@ -1566,6 +1566,109 @@ const TOOLS = [
1566
1566
  required: ["threadId"],
1567
1567
  },
1568
1568
  },
1569
+ // CRM / Business Contact Tools
1570
+ {
1571
+ name: "get_business_contacts",
1572
+ description: "Get all business contacts (Beeper threads marked as business) with linked person/client info and meeting counts.",
1573
+ inputSchema: {
1574
+ type: "object",
1575
+ properties: {
1576
+ userId: {
1577
+ type: "string",
1578
+ description: "Override the default user ID (optional)",
1579
+ },
1580
+ },
1581
+ },
1582
+ },
1583
+ {
1584
+ name: "get_merge_suggestions",
1585
+ description: "Get pending contact merge suggestions. Returns pairs of contacts that may be duplicates based on matching email, phone, or name similarity.",
1586
+ inputSchema: {
1587
+ type: "object",
1588
+ properties: {
1589
+ userId: {
1590
+ type: "string",
1591
+ description: "Override the default user ID (optional)",
1592
+ },
1593
+ },
1594
+ },
1595
+ },
1596
+ {
1597
+ name: "accept_merge_suggestion",
1598
+ description: "Accept a merge suggestion and merge the source contact into the target contact. Re-links all memos, Beeper threads, and meetings from source to target, then archives the source contact.",
1599
+ inputSchema: {
1600
+ type: "object",
1601
+ properties: {
1602
+ userId: {
1603
+ type: "string",
1604
+ description: "Override the default user ID (optional)",
1605
+ },
1606
+ suggestionId: {
1607
+ type: "string",
1608
+ description: "The merge suggestion ID (required)",
1609
+ },
1610
+ },
1611
+ required: ["suggestionId"],
1612
+ },
1613
+ },
1614
+ {
1615
+ name: "reject_merge_suggestion",
1616
+ description: "Reject a merge suggestion. The suggestion will be marked as rejected and won't appear again.",
1617
+ inputSchema: {
1618
+ type: "object",
1619
+ properties: {
1620
+ userId: {
1621
+ type: "string",
1622
+ description: "Override the default user ID (optional)",
1623
+ },
1624
+ suggestionId: {
1625
+ type: "string",
1626
+ description: "The merge suggestion ID (required)",
1627
+ },
1628
+ },
1629
+ required: ["suggestionId"],
1630
+ },
1631
+ },
1632
+ {
1633
+ name: "dismiss_all_merge_suggestions",
1634
+ description: "Dismiss all pending merge suggestions at once.",
1635
+ inputSchema: {
1636
+ type: "object",
1637
+ properties: {
1638
+ userId: {
1639
+ type: "string",
1640
+ description: "Override the default user ID (optional)",
1641
+ },
1642
+ },
1643
+ },
1644
+ },
1645
+ {
1646
+ name: "unlink_meeting_from_business_contact",
1647
+ description: "Remove the link between a meeting (Granola or Fathom) and a business contact. Deletes the thread link, person link, and unified meeting link records.",
1648
+ inputSchema: {
1649
+ type: "object",
1650
+ properties: {
1651
+ userId: {
1652
+ type: "string",
1653
+ description: "Override the default user ID (optional)",
1654
+ },
1655
+ threadConvexId: {
1656
+ type: "string",
1657
+ description: "The Convex ID of the Beeper thread (required)",
1658
+ },
1659
+ meetingSource: {
1660
+ type: "string",
1661
+ enum: ["granola", "fathom"],
1662
+ description: "The meeting source: 'granola' or 'fathom' (required)",
1663
+ },
1664
+ meetingId: {
1665
+ type: "string",
1666
+ description: "The meeting ID (required)",
1667
+ },
1668
+ },
1669
+ required: ["threadConvexId", "meetingSource", "meetingId"],
1670
+ },
1671
+ },
1569
1672
  // MCP Server Info
1570
1673
  {
1571
1674
  name: "get_version",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@starascendin/lifeos-mcp",
3
- "version": "0.4.1",
3
+ "version": "0.4.2",
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",