@smartytalent/mcp-tools 0.1.30 → 0.1.31

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.
Files changed (2) hide show
  1. package/dist/tools.json +42 -3
  2. package/package.json +1 -1
package/dist/tools.json CHANGED
@@ -289,7 +289,19 @@
289
289
  "description": "Show Tenant",
290
290
  "inputSchema": {
291
291
  "type": "object",
292
- "properties": {}
292
+ "properties": {
293
+ "tenantId": {
294
+ "type": "string",
295
+ "description": "The tenant's identifier"
296
+ },
297
+ "include": {
298
+ "type": "string",
299
+ "description": "JSON:API compound document request — comma-separated list of relationship paths to include in the response (e.g. `feedbacks`, `feedbacks,boeUser`). Currently advisory: the service always returns all declared relationships with empty defaults."
300
+ }
301
+ },
302
+ "required": [
303
+ "tenantId"
304
+ ]
293
305
  },
294
306
  "_meta": {
295
307
  "method": "GET",
@@ -312,8 +324,7 @@
312
324
  "type": "object",
313
325
  "required": [
314
326
  "type",
315
- "id",
316
- "attributes"
327
+ "id"
317
328
  ],
318
329
  "properties": {
319
330
  "type": {
@@ -472,6 +483,34 @@
472
483
  "description": "Tenant-wide default form used for guest submissions when no job-specific form is configured. Set to null to clear."
473
484
  }
474
485
  }
486
+ },
487
+ "relationships": {
488
+ "title": "TenantRelationshipsSchema",
489
+ "type": "object",
490
+ "properties": {
491
+ "feedbacks": {
492
+ "title": "TenantRelationshipsFeedbacksSchema",
493
+ "type": "object",
494
+ "description": "Tenant-wide default feedback configurations. Up to one per stage (screening, assessment). Used when the job has no stage-specific feedback override.",
495
+ "properties": {
496
+ "data": {
497
+ "type": "array",
498
+ "items": {
499
+ "title": "TenantRelationshipsFeedbacksDataSchema",
500
+ "type": "object",
501
+ "properties": {
502
+ "type": {
503
+ "type": "string"
504
+ },
505
+ "id": {
506
+ "type": "string"
507
+ }
508
+ }
509
+ }
510
+ }
511
+ }
512
+ }
513
+ }
475
514
  }
476
515
  }
477
516
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@smartytalent/mcp-tools",
3
- "version": "0.1.30",
3
+ "version": "0.1.31",
4
4
  "description": "MCP tool definitions for SmartyTalent API",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",