@intangle/mcp-server 2.6.0 → 2.6.1

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.
@@ -616,8 +616,7 @@ const TOOL_DEFINITIONS = [
616
616
  }
617
617
  }
618
618
  },
619
- required: ["space_id"],
620
- anyOf: [{ required: ["add"] }, { required: ["update"] }, { required: ["delete"] }]
619
+ required: ["space_id"]
621
620
  }
622
621
  },
623
622
  {
@@ -713,14 +712,7 @@ const TOOL_DEFINITIONS = [
713
712
  items: { type: "string" }
714
713
  }
715
714
  },
716
- required: ["space_id"],
717
- anyOf: [
718
- { required: ["list"] },
719
- { required: ["create"] },
720
- { required: ["rename"] },
721
- { required: ["move_items"] },
722
- { required: ["delete"] }
723
- ]
715
+ required: ["space_id"]
724
716
  }
725
717
  },
726
718
  {
@@ -746,6 +738,10 @@ const TOOL_DEFINITIONS = [
746
738
  type: "string",
747
739
  description: "Optional existing conversation/chat summary ID to resume a specific conversation. If omitted, Intangle uses/creates the active conversation for this space."
748
740
  },
741
+ new_conversation: {
742
+ type: "boolean",
743
+ description: "Optional. When true, force a fresh conversation instead of reusing the current active thread."
744
+ },
749
745
  session_id: {
750
746
  type: "string",
751
747
  description: "Optional runtime session ID to reuse across calls. Reuse the returned session_id for best continuity and lower warm-up overhead."
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@intangle/mcp-server",
3
- "version": "2.6.0",
3
+ "version": "2.6.1",
4
4
  "description": "Model Context Protocol server for Intangle - AI context that persists across conversations",
5
5
  "main": "dist/index.js",
6
6
  "type": "module",
@@ -693,8 +693,7 @@ const TOOL_DEFINITIONS = [
693
693
  }
694
694
  }
695
695
  },
696
- required: ["space_id"],
697
- anyOf: [{ required: ["add"] }, { required: ["update"] }, { required: ["delete"] }]
696
+ required: ["space_id"]
698
697
  }
699
698
  },
700
699
  {
@@ -794,14 +793,7 @@ const TOOL_DEFINITIONS = [
794
793
  items: { type: "string" }
795
794
  }
796
795
  },
797
- required: ["space_id"],
798
- anyOf: [
799
- { required: ["list"] },
800
- { required: ["create"] },
801
- { required: ["rename"] },
802
- { required: ["move_items"] },
803
- { required: ["delete"] }
804
- ]
796
+ required: ["space_id"]
805
797
  }
806
798
  },
807
799
  {
@@ -830,6 +822,11 @@ const TOOL_DEFINITIONS = [
830
822
  description:
831
823
  "Optional existing conversation/chat summary ID to resume a specific conversation. If omitted, Intangle uses/creates the active conversation for this space."
832
824
  },
825
+ new_conversation: {
826
+ type: "boolean",
827
+ description:
828
+ "Optional. When true, force a fresh conversation instead of reusing the current active thread."
829
+ },
833
830
  session_id: {
834
831
  type: "string",
835
832
  description: