@snokam/mcp-api 2.13.0 → 2.15.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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@snokam/mcp-api",
3
- "version": "2.13.0",
3
+ "version": "2.15.0",
4
4
  "description": "MCP server exposing Snokam backend APIs as tools for Claude Code and other MCP clients",
5
5
  "type": "module",
6
6
  "bin": {
@@ -1042,6 +1042,10 @@
1042
1042
  "type": "boolean",
1043
1043
  "nullable": true
1044
1044
  },
1045
+ "isSeekingProject": {
1046
+ "type": "boolean",
1047
+ "nullable": true
1048
+ },
1045
1049
  "manager": {
1046
1050
  "$ref": "#/components/schemas/employeeReference"
1047
1051
  },
@@ -1065,6 +1069,9 @@
1065
1069
  "format": "double",
1066
1070
  "nullable": true
1067
1071
  },
1072
+ "personalProjectRequirements": {
1073
+ "type": "string"
1074
+ },
1068
1075
  "position": {
1069
1076
  "type": "string"
1070
1077
  },
@@ -1201,6 +1208,9 @@
1201
1208
  "isBot": {
1202
1209
  "type": "boolean"
1203
1210
  },
1211
+ "isSeekingProject": {
1212
+ "type": "boolean"
1213
+ },
1204
1214
  "manager": {
1205
1215
  "$ref": "#/components/schemas/sanityEmployeeManager"
1206
1216
  },
@@ -1223,6 +1233,9 @@
1223
1233
  "type": "number",
1224
1234
  "format": "double"
1225
1235
  },
1236
+ "personalProjectRequirements": {
1237
+ "type": "string"
1238
+ },
1226
1239
  "position": {
1227
1240
  "type": "string"
1228
1241
  },
@@ -27243,6 +27243,9 @@
27243
27243
  },
27244
27244
  "SanityEmployee": {
27245
27245
  "properties": {
27246
+ "isBot": {
27247
+ "type": "boolean"
27248
+ },
27246
27249
  "commissionTier": {
27247
27250
  "properties": {
27248
27251
  "commission": {
@@ -28298,6 +28301,12 @@
28298
28301
  "name": {
28299
28302
  "type": "string"
28300
28303
  },
28304
+ "personalProjectRequirements": {
28305
+ "type": "string"
28306
+ },
28307
+ "isSeekingProject": {
28308
+ "type": "boolean"
28309
+ },
28301
28310
  "active": {
28302
28311
  "type": "boolean"
28303
28312
  },
@@ -28319,9 +28328,6 @@
28319
28328
  },
28320
28329
  "sanityId": {
28321
28330
  "type": "string"
28322
- },
28323
- "isBot": {
28324
- "type": "boolean"
28325
28331
  }
28326
28332
  },
28327
28333
  "required": [
@@ -28632,6 +28638,12 @@
28632
28638
  "These are not the genders you are looking for"
28633
28639
  ]
28634
28640
  },
28641
+ "personalProjectRequirements": {
28642
+ "type": "string"
28643
+ },
28644
+ "isSeekingProject": {
28645
+ "type": "boolean"
28646
+ },
28635
28647
  "active": {
28636
28648
  "type": "boolean"
28637
28649
  },
@@ -28902,6 +28914,14 @@
28902
28914
  "type": "boolean",
28903
28915
  "nullable": true
28904
28916
  },
28917
+ "isSeekingProject": {
28918
+ "type": "boolean",
28919
+ "nullable": true
28920
+ },
28921
+ "personalProjectRequirements": {
28922
+ "type": "string",
28923
+ "nullable": true
28924
+ },
28905
28925
  "gender": {
28906
28926
  "type": "string",
28907
28927
  "enum": [
@@ -30820,6 +30840,9 @@
30820
30840
  "preview": {
30821
30841
  "type": "string"
30822
30842
  },
30843
+ "subscribersNotified": {
30844
+ "type": "boolean"
30845
+ },
30823
30846
  "articleSeries": {
30824
30847
  "properties": {
30825
30848
  "slug": {
@@ -31675,6 +31698,9 @@
31675
31698
  "preview": {
31676
31699
  "type": "string"
31677
31700
  },
31701
+ "subscribersNotified": {
31702
+ "type": "boolean"
31703
+ },
31678
31704
  "articleSeries": {
31679
31705
  "properties": {
31680
31706
  "slug": {
@@ -33267,6 +33293,9 @@
33267
33293
  "preview": {
33268
33294
  "type": "string"
33269
33295
  },
33296
+ "subscribersNotified": {
33297
+ "type": "boolean"
33298
+ },
33270
33299
  "articleSeries": {
33271
33300
  "properties": {
33272
33301
  "slug": {
@@ -34246,6 +34275,10 @@
34246
34275
  ],
34247
34276
  "nullable": true
34248
34277
  },
34278
+ "subscribersNotified": {
34279
+ "type": "boolean",
34280
+ "nullable": true
34281
+ },
34249
34282
  "preview": {
34250
34283
  "type": "string",
34251
34284
  "nullable": true
@@ -1042,6 +1042,10 @@
1042
1042
  "type": "boolean",
1043
1043
  "nullable": true
1044
1044
  },
1045
+ "isSeekingProject": {
1046
+ "type": "boolean",
1047
+ "nullable": true
1048
+ },
1045
1049
  "manager": {
1046
1050
  "$ref": "#/components/schemas/employeeReference"
1047
1051
  },
@@ -1065,6 +1069,9 @@
1065
1069
  "format": "double",
1066
1070
  "nullable": true
1067
1071
  },
1072
+ "personalProjectRequirements": {
1073
+ "type": "string"
1074
+ },
1068
1075
  "position": {
1069
1076
  "type": "string"
1070
1077
  },
@@ -1201,6 +1208,9 @@
1201
1208
  "isBot": {
1202
1209
  "type": "boolean"
1203
1210
  },
1211
+ "isSeekingProject": {
1212
+ "type": "boolean"
1213
+ },
1204
1214
  "manager": {
1205
1215
  "$ref": "#/components/schemas/sanityEmployeeManager"
1206
1216
  },
@@ -1223,6 +1233,9 @@
1223
1233
  "type": "number",
1224
1234
  "format": "double"
1225
1235
  },
1236
+ "personalProjectRequirements": {
1237
+ "type": "string"
1238
+ },
1226
1239
  "position": {
1227
1240
  "type": "string"
1228
1241
  },
@@ -27243,6 +27243,9 @@
27243
27243
  },
27244
27244
  "SanityEmployee": {
27245
27245
  "properties": {
27246
+ "isBot": {
27247
+ "type": "boolean"
27248
+ },
27246
27249
  "commissionTier": {
27247
27250
  "properties": {
27248
27251
  "commission": {
@@ -28298,6 +28301,12 @@
28298
28301
  "name": {
28299
28302
  "type": "string"
28300
28303
  },
28304
+ "personalProjectRequirements": {
28305
+ "type": "string"
28306
+ },
28307
+ "isSeekingProject": {
28308
+ "type": "boolean"
28309
+ },
28301
28310
  "active": {
28302
28311
  "type": "boolean"
28303
28312
  },
@@ -28319,9 +28328,6 @@
28319
28328
  },
28320
28329
  "sanityId": {
28321
28330
  "type": "string"
28322
- },
28323
- "isBot": {
28324
- "type": "boolean"
28325
28331
  }
28326
28332
  },
28327
28333
  "required": [
@@ -28632,6 +28638,12 @@
28632
28638
  "These are not the genders you are looking for"
28633
28639
  ]
28634
28640
  },
28641
+ "personalProjectRequirements": {
28642
+ "type": "string"
28643
+ },
28644
+ "isSeekingProject": {
28645
+ "type": "boolean"
28646
+ },
28635
28647
  "active": {
28636
28648
  "type": "boolean"
28637
28649
  },
@@ -28902,6 +28914,14 @@
28902
28914
  "type": "boolean",
28903
28915
  "nullable": true
28904
28916
  },
28917
+ "isSeekingProject": {
28918
+ "type": "boolean",
28919
+ "nullable": true
28920
+ },
28921
+ "personalProjectRequirements": {
28922
+ "type": "string",
28923
+ "nullable": true
28924
+ },
28905
28925
  "gender": {
28906
28926
  "type": "string",
28907
28927
  "enum": [
@@ -30820,6 +30840,9 @@
30820
30840
  "preview": {
30821
30841
  "type": "string"
30822
30842
  },
30843
+ "subscribersNotified": {
30844
+ "type": "boolean"
30845
+ },
30823
30846
  "articleSeries": {
30824
30847
  "properties": {
30825
30848
  "slug": {
@@ -31675,6 +31698,9 @@
31675
31698
  "preview": {
31676
31699
  "type": "string"
31677
31700
  },
31701
+ "subscribersNotified": {
31702
+ "type": "boolean"
31703
+ },
31678
31704
  "articleSeries": {
31679
31705
  "properties": {
31680
31706
  "slug": {
@@ -33267,6 +33293,9 @@
33267
33293
  "preview": {
33268
33294
  "type": "string"
33269
33295
  },
33296
+ "subscribersNotified": {
33297
+ "type": "boolean"
33298
+ },
33270
33299
  "articleSeries": {
33271
33300
  "properties": {
33272
33301
  "slug": {
@@ -34246,6 +34275,10 @@
34246
34275
  ],
34247
34276
  "nullable": true
34248
34277
  },
34278
+ "subscribersNotified": {
34279
+ "type": "boolean",
34280
+ "nullable": true
34281
+ },
34249
34282
  "preview": {
34250
34283
  "type": "string",
34251
34284
  "nullable": true