@snokam/mcp-api 0.167.0 → 0.169.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.167.0",
3
+ "version": "0.169.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": {
@@ -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": {
@@ -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": {