@anyproto/anytype-mcp 1.1.0 → 1.1.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.
package/package.json CHANGED
@@ -7,7 +7,7 @@
7
7
  "mcp",
8
8
  "server"
9
9
  ],
10
- "version": "1.1.0",
10
+ "version": "1.1.1",
11
11
  "license": "MIT",
12
12
  "type": "module",
13
13
  "scripts": {
@@ -25,7 +25,7 @@
25
25
  "anytype-mcp": "bin/cli.mjs"
26
26
  },
27
27
  "dependencies": {
28
- "@modelcontextprotocol/sdk": "1.25.1",
28
+ "@modelcontextprotocol/sdk": "1.25.2",
29
29
  "axios": "1.13.2",
30
30
  "form-data": "4.0.5",
31
31
  "mustache": "4.2.0",
@@ -551,7 +551,25 @@
551
551
  },
552
552
  "FilterCondition": {
553
553
  "description": "The filter condition",
554
- "enum": ["empty", "nempty"],
554
+ "enum": [
555
+ "equal",
556
+ "not_equal",
557
+ "greater",
558
+ "less",
559
+ "greater_or_equal",
560
+ "less_or _equal",
561
+ "like",
562
+ "not_like",
563
+ "in",
564
+ "not_in",
565
+ "empty",
566
+ "not_empty",
567
+ "all_in",
568
+ "not_all_in",
569
+ "exact_in",
570
+ "not_exact_in",
571
+ "exists"
572
+ ],
555
573
  "example": "empty",
556
574
  "type": "string",
557
575
  "x-enum-comments": {
@@ -854,8 +854,23 @@
854
854
  "type": "string",
855
855
  "description": "The filter condition",
856
856
  "enum": [
857
+ "equal",
858
+ "not_equal",
859
+ "greater",
860
+ "less",
861
+ "greater_or_equal",
862
+ "less_or _equal",
863
+ "like",
864
+ "not_like",
865
+ "in",
866
+ "not_in",
857
867
  "empty",
858
- "nempty"
868
+ "not_empty",
869
+ "all_in",
870
+ "not_all_in",
871
+ "exact_in",
872
+ "not_exact_in",
873
+ "exists"
859
874
  ]
860
875
  },
861
876
  "format": {