@smartytalent/mcp-tools 0.9.6 → 0.9.8

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 +98 -1
  2. package/package.json +1 -1
package/dist/tools.json CHANGED
@@ -359,6 +359,46 @@
359
359
  }
360
360
  }
361
361
  }
362
+ },
363
+ "limits": {
364
+ "type": "object",
365
+ "description": "Anti-abuse limits for the inbound-call channel (inbound-call arc). Declared ahead of enforcement so generated clients carry the key (the typed settings schema is a whitelist - undeclared keys are silently dropped by the SDK). Sysowner-only on PATCH (cost-protection config, the boeMetering precedent); values are inert until the P4 limiter ships.",
366
+ "properties": {
367
+ "callsPerCliHour": {
368
+ "type": "integer",
369
+ "minimum": 1,
370
+ "description": "Max inbound calls per caller number per hour"
371
+ },
372
+ "callsPerCliDay": {
373
+ "type": "integer",
374
+ "minimum": 1,
375
+ "description": "Max inbound calls per caller number per day"
376
+ },
377
+ "callMinutesDailyBudget": {
378
+ "type": "integer",
379
+ "minimum": 1,
380
+ "description": "Daily inbound AI-call minutes budget for the tenant"
381
+ },
382
+ "maxConcurrentInboundCalls": {
383
+ "type": "integer",
384
+ "minimum": 1
385
+ },
386
+ "maxCallDurationMinutes": {
387
+ "type": "integer",
388
+ "minimum": 1,
389
+ "description": "Hard cap on one intake conversation"
390
+ },
391
+ "smsPerNumberDay": {
392
+ "type": "integer",
393
+ "minimum": 1,
394
+ "description": "Max outbound SMS to one number per day (phase-2 rails)"
395
+ },
396
+ "smsDailyBudget": {
397
+ "type": "integer",
398
+ "minimum": 1,
399
+ "description": "Daily outbound-SMS budget for the tenant across the inbound-call channel (2b rails; container default applies when unset)"
400
+ }
401
+ }
362
402
  }
363
403
  }
364
404
  },
@@ -844,6 +884,46 @@
844
884
  }
845
885
  }
846
886
  }
887
+ },
888
+ "limits": {
889
+ "type": "object",
890
+ "description": "Anti-abuse limits for the inbound-call channel (inbound-call arc). Declared ahead of enforcement so generated clients carry the key (the typed settings schema is a whitelist - undeclared keys are silently dropped by the SDK). Sysowner-only on PATCH (cost-protection config, the boeMetering precedent); values are inert until the P4 limiter ships.",
891
+ "properties": {
892
+ "callsPerCliHour": {
893
+ "type": "integer",
894
+ "minimum": 1,
895
+ "description": "Max inbound calls per caller number per hour"
896
+ },
897
+ "callsPerCliDay": {
898
+ "type": "integer",
899
+ "minimum": 1,
900
+ "description": "Max inbound calls per caller number per day"
901
+ },
902
+ "callMinutesDailyBudget": {
903
+ "type": "integer",
904
+ "minimum": 1,
905
+ "description": "Daily inbound AI-call minutes budget for the tenant"
906
+ },
907
+ "maxConcurrentInboundCalls": {
908
+ "type": "integer",
909
+ "minimum": 1
910
+ },
911
+ "maxCallDurationMinutes": {
912
+ "type": "integer",
913
+ "minimum": 1,
914
+ "description": "Hard cap on one intake conversation"
915
+ },
916
+ "smsPerNumberDay": {
917
+ "type": "integer",
918
+ "minimum": 1,
919
+ "description": "Max outbound SMS to one number per day (phase-2 rails)"
920
+ },
921
+ "smsDailyBudget": {
922
+ "type": "integer",
923
+ "minimum": 1,
924
+ "description": "Daily outbound-SMS budget for the tenant across the inbound-call channel (2b rails; container default applies when unset)"
925
+ }
926
+ }
847
927
  }
848
928
  }
849
929
  },
@@ -4513,7 +4593,20 @@
4513
4593
  "description": "List Talent Candidates",
4514
4594
  "inputSchema": {
4515
4595
  "type": "object",
4516
- "properties": {}
4596
+ "properties": {
4597
+ "pageSize": {
4598
+ "type": "integer",
4599
+ "description": "Specifies the number of items to retrieve per page. The maximum value is 100."
4600
+ },
4601
+ "pageAfter": {
4602
+ "type": "string",
4603
+ "description": "Opaque base64-encoded cursor returned by a previous list response, used for forward cursor-based pagination. Pass the value verbatim; do not decode or mutate it."
4604
+ },
4605
+ "pageBefore": {
4606
+ "type": "string",
4607
+ "description": "Returns the data encoded in Base64 format, used for cursor-based pagination"
4608
+ }
4609
+ }
4517
4610
  },
4518
4611
  "_meta": {
4519
4612
  "method": "GET",
@@ -6055,6 +6148,10 @@
6055
6148
  "type": "string",
6056
6149
  "description": "Returns candidates applied to the given job (JobIndex lookup). The scalable way to list a job's pipeline."
6057
6150
  },
6151
+ "filterTalentId": {
6152
+ "type": "string",
6153
+ "description": "Returns candidates belonging to the given talent (TalentIndex lookup). The scalable way to list one person's applications across jobs; combine with nothing (one filter per request)."
6154
+ },
6058
6155
  "filterEmail": {
6059
6156
  "type": "string",
6060
6157
  "description": "Specifies the email address to filter the results."
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@smartytalent/mcp-tools",
3
- "version": "0.9.6",
3
+ "version": "0.9.8",
4
4
  "description": "MCP tool definitions for SmartyTalent API",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",