@smartytalent/mcp-tools 0.1.33-dev.70 → 0.1.33-dev.72

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 +84 -2
  2. package/package.json +1 -1
package/dist/tools.json CHANGED
@@ -11241,7 +11241,20 @@
11241
11241
  },
11242
11242
  "systemPrompt": {
11243
11243
  "type": "string",
11244
- "description": "Operator-editable agent instructions used as the OpenAI Realtime session's system prompt at fire time. Mirror of email body in the operator review window: edit before fire, the dialed call uses the latest version."
11244
+ "description": "Operator-editable agent instructions used as the OpenAI Realtime session's system prompt at fire time. Mirror of email body in the operator review window: edit before fire, the dialed call uses the latest version. Wins over `boeRole`/`boeContext` when both are set."
11245
+ },
11246
+ "boeRole": {
11247
+ "type": "string",
11248
+ "enum": [
11249
+ "sales",
11250
+ "interviewer"
11251
+ ],
11252
+ "description": "Prompt template selector. Picks `service/call/container/outbound/prompt/<role>.md` and renders it with `boeContext` placeholders at dial time. `systemPrompt` overrides if also set. Mutually exclusive with `systemPrompt` in effect."
11253
+ },
11254
+ "boeContext": {
11255
+ "type": "object",
11256
+ "additionalProperties": true,
11257
+ "description": "Placeholder map for the `boeRole` prompt template. Keys depend on the role: for `interviewer` typically `candidateName`, `roleName`, `language`, `applicationUnits`, `employmentOptions`, `nextStepDescription`; for `sales` typically `prospectName`, `prospectCompany`, `language`, `leadSource`. Missing keys render as `not provided`."
11245
11258
  },
11246
11259
  "recording": {
11247
11260
  "type": "object",
@@ -11760,7 +11773,20 @@
11760
11773
  },
11761
11774
  "systemPrompt": {
11762
11775
  "type": "string",
11763
- "description": "Operator-editable agent instructions used as the OpenAI Realtime session's system prompt at fire time. Mirror of email body in the operator review window: edit before fire, the dialed call uses the latest version."
11776
+ "description": "Operator-editable agent instructions used as the OpenAI Realtime session's system prompt at fire time. Mirror of email body in the operator review window: edit before fire, the dialed call uses the latest version. Wins over `boeRole`/`boeContext` when both are set."
11777
+ },
11778
+ "boeRole": {
11779
+ "type": "string",
11780
+ "enum": [
11781
+ "sales",
11782
+ "interviewer"
11783
+ ],
11784
+ "description": "Prompt template selector. Picks `service/call/container/outbound/prompt/<role>.md` and renders it with `boeContext` placeholders at dial time. `systemPrompt` overrides if also set. Mutually exclusive with `systemPrompt` in effect."
11785
+ },
11786
+ "boeContext": {
11787
+ "type": "object",
11788
+ "additionalProperties": true,
11789
+ "description": "Placeholder map for the `boeRole` prompt template. Keys depend on the role: for `interviewer` typically `candidateName`, `roleName`, `language`, `applicationUnits`, `employmentOptions`, `nextStepDescription`; for `sales` typically `prospectName`, `prospectCompany`, `language`, `leadSource`. Missing keys render as `not provided`."
11764
11790
  },
11765
11791
  "recording": {
11766
11792
  "type": "object",
@@ -11948,6 +11974,32 @@
11948
11974
  "operationId": "callOptions"
11949
11975
  }
11950
11976
  },
11977
+ {
11978
+ "name": "dial_call",
11979
+ "description": "Dial Call",
11980
+ "inputSchema": {
11981
+ "type": "object",
11982
+ "properties": {}
11983
+ },
11984
+ "_meta": {
11985
+ "method": "POST",
11986
+ "path": "/v1/calls/{callId}/dial",
11987
+ "operationId": "dialCall"
11988
+ }
11989
+ },
11990
+ {
11991
+ "name": "dial_call_options",
11992
+ "description": "Dial Call Options",
11993
+ "inputSchema": {
11994
+ "type": "object",
11995
+ "properties": {}
11996
+ },
11997
+ "_meta": {
11998
+ "method": "OPTIONS",
11999
+ "path": "/v1/calls/{callId}/dial",
12000
+ "operationId": "dialCallOptions"
12001
+ }
12002
+ },
11951
12003
  {
11952
12004
  "name": "list_comments",
11953
12005
  "description": "List Comments",
@@ -14460,6 +14512,21 @@
14460
14512
  ],
14461
14513
  "description": "Where the meeting actually runs. Drives URL parsing and bot dispatch capability."
14462
14514
  },
14515
+ "purpose": {
14516
+ "type": "string",
14517
+ "enum": [
14518
+ "interview",
14519
+ "brief",
14520
+ "sales",
14521
+ "1on1",
14522
+ "kickoff",
14523
+ "client_demo",
14524
+ "internal_sync",
14525
+ "training",
14526
+ "other"
14527
+ ],
14528
+ "description": "Host-declared purpose of the meeting. Set at create time\n(FE chip / template picker). Drives Boe's opener tone and\nthe post-meeting review-page filter.\n\nDistinct from `topicsDiscussed` which is AI-inferred\nmulti-value ground truth from the transcript - the two can\ndisagree (intent vs reality).\n\nValues:\n - `interview` - any candidate-facing screening or interview\n - `brief` - recruiter briefing client on a role\n - `sales` - sales / commercial conversation\n - `1on1` - manager <-> report sync\n - `kickoff` - project / engagement kickoff\n - `client_demo` - product demo to external party\n - `internal_sync` - status update / planning / retro\n - `training` - onboarding / knowledge transfer\n - `other` - everything else"
14529
+ },
14463
14530
  "joinUrl": {
14464
14531
  "type": "string",
14465
14532
  "description": "Third-party meeting URL (Zoom/Meet/Teams/Webex). Null on chime meetings."
@@ -15036,6 +15103,21 @@
15036
15103
  ],
15037
15104
  "description": "Where the meeting actually runs. Drives URL parsing and bot dispatch capability."
15038
15105
  },
15106
+ "purpose": {
15107
+ "type": "string",
15108
+ "enum": [
15109
+ "interview",
15110
+ "brief",
15111
+ "sales",
15112
+ "1on1",
15113
+ "kickoff",
15114
+ "client_demo",
15115
+ "internal_sync",
15116
+ "training",
15117
+ "other"
15118
+ ],
15119
+ "description": "Host-declared purpose of the meeting. Set at create time\n(FE chip / template picker). Drives Boe's opener tone and\nthe post-meeting review-page filter.\n\nDistinct from `topicsDiscussed` which is AI-inferred\nmulti-value ground truth from the transcript - the two can\ndisagree (intent vs reality).\n\nValues:\n - `interview` - any candidate-facing screening or interview\n - `brief` - recruiter briefing client on a role\n - `sales` - sales / commercial conversation\n - `1on1` - manager <-> report sync\n - `kickoff` - project / engagement kickoff\n - `client_demo` - product demo to external party\n - `internal_sync` - status update / planning / retro\n - `training` - onboarding / knowledge transfer\n - `other` - everything else"
15120
+ },
15039
15121
  "joinUrl": {
15040
15122
  "type": "string",
15041
15123
  "description": "Third-party meeting URL (Zoom/Meet/Teams/Webex). Null on chime meetings."
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@smartytalent/mcp-tools",
3
- "version": "0.1.33-dev.70",
3
+ "version": "0.1.33-dev.72",
4
4
  "description": "MCP tool definitions for SmartyTalent API",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",