@smartytalent/mcp-tools 0.9.0 → 0.9.2

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 +46 -0
  2. package/package.json +1 -1
package/dist/tools.json CHANGED
@@ -5103,6 +5103,48 @@
5103
5103
  }
5104
5104
  }
5105
5105
  }
5106
+ },
5107
+ "meta": {
5108
+ "title": "JobRelationshipsCandidatesMetaSchema",
5109
+ "type": "object",
5110
+ "description": "Live candidate counters maintained on the job row by the candidate\nlifecycle events (created/stage-changed/deleted), clamped to >= 0.\nPresent on both list and show responses. Server-maintained: any\nvalue sent in a request body is ignored. The scalable companion to\n`GET /v1/candidates?filterJobId=` - render badges from here, rows\nfrom the list.",
5111
+ "properties": {
5112
+ "total": {
5113
+ "type": "integer",
5114
+ "description": "Number of candidates on this job."
5115
+ },
5116
+ "byStage": {
5117
+ "title": "JobRelationshipsCandidatesMetaByStageSchema",
5118
+ "type": "object",
5119
+ "description": "Candidate count per v2 pipeline stage, in funnel order.\nDeprecated v1 stage values still stored on older candidate\nrows are folded into their v2 bucket by the counter\n(screened -> screening, interviewed -> interview, ...), so\nthese eight keys are the complete vocabulary. A missing key\nmeans zero. The values are designed to sum to `total`; a\npersistent mismatch means counter drift and is worth\nsurfacing, not hiding.",
5120
+ "properties": {
5121
+ "sourcing": {
5122
+ "type": "integer"
5123
+ },
5124
+ "screening": {
5125
+ "type": "integer"
5126
+ },
5127
+ "assessment": {
5128
+ "type": "integer"
5129
+ },
5130
+ "interview": {
5131
+ "type": "integer"
5132
+ },
5133
+ "offer": {
5134
+ "type": "integer"
5135
+ },
5136
+ "hired": {
5137
+ "type": "integer"
5138
+ },
5139
+ "onboarding": {
5140
+ "type": "integer"
5141
+ },
5142
+ "evaluation": {
5143
+ "type": "integer"
5144
+ }
5145
+ }
5146
+ }
5147
+ }
5106
5148
  }
5107
5149
  }
5108
5150
  },
@@ -21060,6 +21102,10 @@
21060
21102
  "archived"
21061
21103
  ]
21062
21104
  },
21105
+ "filterJobId": {
21106
+ "type": "string",
21107
+ "description": "Returns the ads generated for the given job (JobIndex lookup)."
21108
+ },
21063
21109
  "filterCreatedFrom": {
21064
21110
  "type": "string",
21065
21111
  "description": "Filters results to include only those created from the specified date and time. The value must be in ISO 8601 format."
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@smartytalent/mcp-tools",
3
- "version": "0.9.0",
3
+ "version": "0.9.2",
4
4
  "description": "MCP tool definitions for SmartyTalent API",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",