@smartytalent/mcp-tools 0.1.33-dev.59 → 0.1.33-dev.60

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 +12 -0
  2. package/package.json +1 -1
package/dist/tools.json CHANGED
@@ -15514,6 +15514,18 @@
15514
15514
  "persona": {
15515
15515
  "type": "string",
15516
15516
  "description": "Optional persona text appended to the base system prompt"
15517
+ },
15518
+ "role": {
15519
+ "type": "string",
15520
+ "enum": [
15521
+ "interviewer"
15522
+ ],
15523
+ "description": "Picks a system prompt template from the bot container's\nprompt/<role>.md library. 'interviewer' drives a structured\nscreening conversation. Omit (or pass empty) for the generic\nsilent-listening assistant prompt - back-compat default.\nMore roles (notetaker, sales) will be added as the library\ngrows."
15524
+ },
15525
+ "context": {
15526
+ "type": "object",
15527
+ "additionalProperties": true,
15528
+ "description": "Per-meeting context values used to fill {placeholder} tokens\nin the chosen role's prompt template. Required keys depend\non the role - the prompt itself documents what it expects.\nMissing or empty values are substituted with the literal\nstring \"not provided\"; the prompt is written to handle that\ngracefully (\"do NOT make up missing fields\"). Example for\nrole=interviewer: { companyName, roleName, language,\nduration, mustHaves, competencies, ... }."
15517
15529
  }
15518
15530
  }
15519
15531
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@smartytalent/mcp-tools",
3
- "version": "0.1.33-dev.59",
3
+ "version": "0.1.33-dev.60",
4
4
  "description": "MCP tool definitions for SmartyTalent API",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",