@smartytalent/mcp-tools 0.9.6 → 0.9.7

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 +88 -1
  2. package/package.json +1 -1
package/dist/tools.json CHANGED
@@ -359,6 +359,41 @@
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
+ }
362
397
  }
363
398
  }
364
399
  },
@@ -844,6 +879,41 @@
844
879
  }
845
880
  }
846
881
  }
882
+ },
883
+ "limits": {
884
+ "type": "object",
885
+ "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.",
886
+ "properties": {
887
+ "callsPerCliHour": {
888
+ "type": "integer",
889
+ "minimum": 1,
890
+ "description": "Max inbound calls per caller number per hour"
891
+ },
892
+ "callsPerCliDay": {
893
+ "type": "integer",
894
+ "minimum": 1,
895
+ "description": "Max inbound calls per caller number per day"
896
+ },
897
+ "callMinutesDailyBudget": {
898
+ "type": "integer",
899
+ "minimum": 1,
900
+ "description": "Daily inbound AI-call minutes budget for the tenant"
901
+ },
902
+ "maxConcurrentInboundCalls": {
903
+ "type": "integer",
904
+ "minimum": 1
905
+ },
906
+ "maxCallDurationMinutes": {
907
+ "type": "integer",
908
+ "minimum": 1,
909
+ "description": "Hard cap on one intake conversation"
910
+ },
911
+ "smsPerNumberDay": {
912
+ "type": "integer",
913
+ "minimum": 1,
914
+ "description": "Max outbound SMS to one number per day (phase-2 rails)"
915
+ }
916
+ }
847
917
  }
848
918
  }
849
919
  },
@@ -4513,7 +4583,20 @@
4513
4583
  "description": "List Talent Candidates",
4514
4584
  "inputSchema": {
4515
4585
  "type": "object",
4516
- "properties": {}
4586
+ "properties": {
4587
+ "pageSize": {
4588
+ "type": "integer",
4589
+ "description": "Specifies the number of items to retrieve per page. The maximum value is 100."
4590
+ },
4591
+ "pageAfter": {
4592
+ "type": "string",
4593
+ "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."
4594
+ },
4595
+ "pageBefore": {
4596
+ "type": "string",
4597
+ "description": "Returns the data encoded in Base64 format, used for cursor-based pagination"
4598
+ }
4599
+ }
4517
4600
  },
4518
4601
  "_meta": {
4519
4602
  "method": "GET",
@@ -6055,6 +6138,10 @@
6055
6138
  "type": "string",
6056
6139
  "description": "Returns candidates applied to the given job (JobIndex lookup). The scalable way to list a job's pipeline."
6057
6140
  },
6141
+ "filterTalentId": {
6142
+ "type": "string",
6143
+ "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)."
6144
+ },
6058
6145
  "filterEmail": {
6059
6146
  "type": "string",
6060
6147
  "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.7",
4
4
  "description": "MCP tool definitions for SmartyTalent API",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",