@smartytalent/mcp-tools 0.1.23 → 0.1.24

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 +16 -3
  2. package/package.json +1 -1
package/dist/tools.json CHANGED
@@ -7726,9 +7726,15 @@
7726
7726
  "language": {
7727
7727
  "type": "string"
7728
7728
  },
7729
+ "qualityScore": {
7730
+ "type": "integer",
7731
+ "minimum": 1,
7732
+ "maximum": 5,
7733
+ "description": "Aggregate quality score (1-5 stars) based on answer relevance, clarity, and completeness. AI-generated, recruiter-overridable."
7734
+ },
7729
7735
  "fields": {
7730
7736
  "type": "object",
7731
- "description": "Custom form field answers keyed by field identifier"
7737
+ "description": "Form fields keyed by field identifier. Each field contains localized content grouped by language code. Structure: {fieldKey: {langCode: {label, description, value, type, relevance, clarity, completeness, confidence, reasoning}}}."
7732
7738
  },
7733
7739
  "files": {
7734
7740
  "type": "array",
@@ -8005,7 +8011,8 @@
8005
8011
  }
8006
8012
  },
8007
8013
  "fields": {
8008
- "type": "object"
8014
+ "type": "object",
8015
+ "description": "Form fields keyed by identifier. Each field: {label: string, description: string, value: string, type: 'text'|'number'|'date'|'select'|'checkbox'}."
8009
8016
  },
8010
8017
  "language": {
8011
8018
  "type": "string"
@@ -8212,9 +8219,15 @@
8212
8219
  "language": {
8213
8220
  "type": "string"
8214
8221
  },
8222
+ "qualityScore": {
8223
+ "type": "integer",
8224
+ "minimum": 1,
8225
+ "maximum": 5,
8226
+ "description": "Aggregate quality score (1-5 stars) based on answer relevance, clarity, and completeness. AI-generated, recruiter-overridable."
8227
+ },
8215
8228
  "fields": {
8216
8229
  "type": "object",
8217
- "description": "Custom form field answers keyed by field identifier"
8230
+ "description": "Form fields keyed by field identifier. Each field contains localized content grouped by language code. Structure: {fieldKey: {langCode: {label, description, value, type, relevance, clarity, completeness, confidence, reasoning}}}."
8218
8231
  },
8219
8232
  "files": {
8220
8233
  "type": "array",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@smartytalent/mcp-tools",
3
- "version": "0.1.23",
3
+ "version": "0.1.24",
4
4
  "description": "MCP tool definitions for SmartyTalent API",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",