@smartytalent/mcp-tools 0.4.2 → 0.4.4
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.
- package/dist/tools.json +55 -0
- package/package.json +1 -1
package/dist/tools.json
CHANGED
|
@@ -11167,6 +11167,10 @@
|
|
|
11167
11167
|
"description": "Filter by AI intent classifier output (inbound calls only). Post-filtered after pagination - acceptable while intent classification is small-scale.",
|
|
11168
11168
|
"enum": [
|
|
11169
11169
|
"brief_request",
|
|
11170
|
+
"job_application",
|
|
11171
|
+
"talent_pool",
|
|
11172
|
+
"status_inquiry",
|
|
11173
|
+
"wrong_number",
|
|
11170
11174
|
"sales_chat",
|
|
11171
11175
|
"faq",
|
|
11172
11176
|
"other"
|
|
@@ -11801,6 +11805,57 @@
|
|
|
11801
11805
|
}
|
|
11802
11806
|
}
|
|
11803
11807
|
}
|
|
11808
|
+
},
|
|
11809
|
+
"meta": {
|
|
11810
|
+
"title": "CallMetaSchema",
|
|
11811
|
+
"type": "object",
|
|
11812
|
+
"description": "Resource-level meta for call rows. Provider-specific identifiers\nlive here (Twilio CallSid is also surfaced top-level for the\nProviderCallSidIndex GSI; this is the canonical record). Forward-\ncompatible (additionalProperties: true) so transport adapters can\nstash protocol-specific fields without schema churn.",
|
|
11813
|
+
"properties": {
|
|
11814
|
+
"providerCallSid": {
|
|
11815
|
+
"type": "string",
|
|
11816
|
+
"description": "Provider-side call id (Twilio CallSid for phone)."
|
|
11817
|
+
},
|
|
11818
|
+
"providerStreamSid": {
|
|
11819
|
+
"type": "string",
|
|
11820
|
+
"description": "Provider-side media stream id (Twilio Media Stream SID)."
|
|
11821
|
+
},
|
|
11822
|
+
"providerStatus": {
|
|
11823
|
+
"type": "string",
|
|
11824
|
+
"description": "Granular provider status, preserved separately from the\nrow's bucket `status`. Drives retry / analytics decisions\n(e.g. `busy` retries faster than `no-answer`; `failed`\ndoesn't retry). Twilio CallStatus values: queued, initiated,\nringing, in-progress, completed, busy, no-answer, failed,\ncanceled."
|
|
11825
|
+
},
|
|
11826
|
+
"reasonCode": {
|
|
11827
|
+
"type": "string",
|
|
11828
|
+
"enum": [
|
|
11829
|
+
"call_already_active",
|
|
11830
|
+
"lockout_window",
|
|
11831
|
+
"not_in_review_window"
|
|
11832
|
+
],
|
|
11833
|
+
"description": "Set on 409 responses for non-actionable transitions. call_already_active=DELETE on active rows; lockout_window=DELETE within 30s of scheduledFireAt; not_in_review_window=PATCH systemPrompt/plannedTopics/scheduledFireAt outside draft|scheduled."
|
|
11834
|
+
},
|
|
11835
|
+
"intent": {
|
|
11836
|
+
"type": "string",
|
|
11837
|
+
"enum": [
|
|
11838
|
+
"brief_request",
|
|
11839
|
+
"job_application",
|
|
11840
|
+
"talent_pool",
|
|
11841
|
+
"status_inquiry",
|
|
11842
|
+
"wrong_number",
|
|
11843
|
+
"sales_chat",
|
|
11844
|
+
"faq",
|
|
11845
|
+
"other"
|
|
11846
|
+
],
|
|
11847
|
+
"description": "AI classifier output, inbound calls only - the fast hangup verdict; the accurate pass reruns on the analyzed transcript (Discover Intent From Call on service:call:analyzed). intent=brief_request opens the phone-brief conversation. Not present on outbound rows."
|
|
11848
|
+
},
|
|
11849
|
+
"intentReasoning": {
|
|
11850
|
+
"type": "string",
|
|
11851
|
+
"description": "One-sentence explanation of the intent classifier's choice. Inbound calls only."
|
|
11852
|
+
},
|
|
11853
|
+
"isReply": {
|
|
11854
|
+
"type": "boolean",
|
|
11855
|
+
"description": "True when this call is a workflow-driven follow-up (e.g. boe calling back to clarify a brief)."
|
|
11856
|
+
}
|
|
11857
|
+
},
|
|
11858
|
+
"additionalProperties": true
|
|
11804
11859
|
}
|
|
11805
11860
|
}
|
|
11806
11861
|
}
|