@snokam/mcp-api 0.166.0 → 0.168.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": "0.166.0",
3
+ "version": "0.168.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": {
@@ -4459,6 +4459,9 @@
4459
4459
  "$ref": "#/components/schemas/sanityEmployeeEquipmentInner"
4460
4460
  }
4461
4461
  },
4462
+ "externalId": {
4463
+ "type": "string"
4464
+ },
4462
4465
  "github": {
4463
4466
  "type": "string"
4464
4467
  },
@@ -1863,6 +1863,9 @@
1863
1863
  "$ref": "#/components/schemas/pageEquipmentInner"
1864
1864
  }
1865
1865
  },
1866
+ "externalId": {
1867
+ "type": "string"
1868
+ },
1866
1869
  "github": {
1867
1870
  "type": "string"
1868
1871
  },
@@ -2089,6 +2092,9 @@
2089
2092
  "$ref": "#/components/schemas/sanityEmployeeEquipmentInner"
2090
2093
  }
2091
2094
  },
2095
+ "externalId": {
2096
+ "type": "string"
2097
+ },
2092
2098
  "github": {
2093
2099
  "type": "string"
2094
2100
  },
@@ -34,6 +34,48 @@
34
34
  }
35
35
  }
36
36
  },
37
+ "/v1.0/protected/health/{provider}": {
38
+ "get": {
39
+ "tags": [
40
+ "Health"
41
+ ],
42
+ "summary": "Checks an integration's connectivity",
43
+ "operationId": "RecruitmentIntegrationHealth",
44
+ "parameters": [
45
+ {
46
+ "name": "provider",
47
+ "in": "path",
48
+ "required": true,
49
+ "schema": {
50
+ "type": "string"
51
+ }
52
+ }
53
+ ],
54
+ "responses": {
55
+ "200": {
56
+ "description": "Payload of IntegrationHealthResult",
57
+ "content": {
58
+ "application/json": {
59
+ "schema": {
60
+ "$ref": "#/components/schemas/integrationHealthResult"
61
+ }
62
+ }
63
+ },
64
+ "x-ms-summary": "Health result"
65
+ }
66
+ },
67
+ "security": [
68
+ {
69
+ "Implicit": [
70
+ "api://bb21a8d0-366b-4a95-aa59-dbbf708322d1/.default"
71
+ ]
72
+ },
73
+ {
74
+ "ApiKey": []
75
+ }
76
+ ]
77
+ }
78
+ },
37
79
  "/v1.0/protected/candidates": {
38
80
  "get": {
39
81
  "tags": [
@@ -2313,6 +2355,20 @@
2313
2355
  }
2314
2356
  }
2315
2357
  },
2358
+ "integrationHealthResult": {
2359
+ "type": "object",
2360
+ "properties": {
2361
+ "key": {
2362
+ "type": "string"
2363
+ },
2364
+ "status": {
2365
+ "type": "string"
2366
+ },
2367
+ "message": {
2368
+ "type": "string"
2369
+ }
2370
+ }
2371
+ },
2316
2372
  "interviewBookingBody": {
2317
2373
  "type": "object",
2318
2374
  "properties": {
@@ -32693,6 +32693,9 @@
32693
32693
  "These are not the genders you are looking for"
32694
32694
  ]
32695
32695
  },
32696
+ "externalId": {
32697
+ "type": "string"
32698
+ },
32696
32699
  "slug": {
32697
32700
  "$ref": "#/components/schemas/Slug"
32698
32701
  },
@@ -33080,6 +33083,9 @@
33080
33083
  "These are not the genders you are looking for"
33081
33084
  ]
33082
33085
  },
33086
+ "externalId": {
33087
+ "type": "string"
33088
+ },
33083
33089
  "isExternal": {
33084
33090
  "type": "boolean"
33085
33091
  },
@@ -33410,6 +33416,10 @@
33410
33416
  "type": "boolean",
33411
33417
  "nullable": true
33412
33418
  },
33419
+ "externalId": {
33420
+ "type": "string",
33421
+ "nullable": true
33422
+ },
33413
33423
  "gender": {
33414
33424
  "type": "string",
33415
33425
  "enum": [
@@ -4459,6 +4459,9 @@
4459
4459
  "$ref": "#/components/schemas/sanityEmployeeEquipmentInner"
4460
4460
  }
4461
4461
  },
4462
+ "externalId": {
4463
+ "type": "string"
4464
+ },
4462
4465
  "github": {
4463
4466
  "type": "string"
4464
4467
  },
@@ -1863,6 +1863,9 @@
1863
1863
  "$ref": "#/components/schemas/pageEquipmentInner"
1864
1864
  }
1865
1865
  },
1866
+ "externalId": {
1867
+ "type": "string"
1868
+ },
1866
1869
  "github": {
1867
1870
  "type": "string"
1868
1871
  },
@@ -2089,6 +2092,9 @@
2089
2092
  "$ref": "#/components/schemas/sanityEmployeeEquipmentInner"
2090
2093
  }
2091
2094
  },
2095
+ "externalId": {
2096
+ "type": "string"
2097
+ },
2092
2098
  "github": {
2093
2099
  "type": "string"
2094
2100
  },
@@ -34,6 +34,48 @@
34
34
  }
35
35
  }
36
36
  },
37
+ "/v1.0/protected/health/{provider}": {
38
+ "get": {
39
+ "tags": [
40
+ "Health"
41
+ ],
42
+ "summary": "Checks an integration's connectivity",
43
+ "operationId": "RecruitmentIntegrationHealth",
44
+ "parameters": [
45
+ {
46
+ "name": "provider",
47
+ "in": "path",
48
+ "required": true,
49
+ "schema": {
50
+ "type": "string"
51
+ }
52
+ }
53
+ ],
54
+ "responses": {
55
+ "200": {
56
+ "description": "Payload of IntegrationHealthResult",
57
+ "content": {
58
+ "application/json": {
59
+ "schema": {
60
+ "$ref": "#/components/schemas/integrationHealthResult"
61
+ }
62
+ }
63
+ },
64
+ "x-ms-summary": "Health result"
65
+ }
66
+ },
67
+ "security": [
68
+ {
69
+ "Implicit": [
70
+ "api://b2c47b20-df4a-49b5-a7ee-87f3647ab227/.default"
71
+ ]
72
+ },
73
+ {
74
+ "ApiKey": []
75
+ }
76
+ ]
77
+ }
78
+ },
37
79
  "/v1.0/protected/candidates": {
38
80
  "get": {
39
81
  "tags": [
@@ -2313,6 +2355,20 @@
2313
2355
  }
2314
2356
  }
2315
2357
  },
2358
+ "integrationHealthResult": {
2359
+ "type": "object",
2360
+ "properties": {
2361
+ "key": {
2362
+ "type": "string"
2363
+ },
2364
+ "status": {
2365
+ "type": "string"
2366
+ },
2367
+ "message": {
2368
+ "type": "string"
2369
+ }
2370
+ }
2371
+ },
2316
2372
  "interviewBookingBody": {
2317
2373
  "type": "object",
2318
2374
  "properties": {
@@ -32693,6 +32693,9 @@
32693
32693
  "These are not the genders you are looking for"
32694
32694
  ]
32695
32695
  },
32696
+ "externalId": {
32697
+ "type": "string"
32698
+ },
32696
32699
  "slug": {
32697
32700
  "$ref": "#/components/schemas/Slug"
32698
32701
  },
@@ -33080,6 +33083,9 @@
33080
33083
  "These are not the genders you are looking for"
33081
33084
  ]
33082
33085
  },
33086
+ "externalId": {
33087
+ "type": "string"
33088
+ },
33083
33089
  "isExternal": {
33084
33090
  "type": "boolean"
33085
33091
  },
@@ -33410,6 +33416,10 @@
33410
33416
  "type": "boolean",
33411
33417
  "nullable": true
33412
33418
  },
33419
+ "externalId": {
33420
+ "type": "string",
33421
+ "nullable": true
33422
+ },
33413
33423
  "gender": {
33414
33424
  "type": "string",
33415
33425
  "enum": [