@smartytalent/mcp-tools 0.4.7 → 0.4.9
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 +51 -1
- package/package.json +1 -1
package/dist/tools.json
CHANGED
|
@@ -850,6 +850,30 @@
|
|
|
850
850
|
],
|
|
851
851
|
"default": "twilio",
|
|
852
852
|
"description": "Where the number is hosted"
|
|
853
|
+
},
|
|
854
|
+
"capabilities": {
|
|
855
|
+
"type": "object",
|
|
856
|
+
"description": "Channel capabilities of the number. Only honored for provider external (twilio/telnyx read them from the provider); undeclared fields default to false.",
|
|
857
|
+
"properties": {
|
|
858
|
+
"voice": {
|
|
859
|
+
"type": "boolean"
|
|
860
|
+
},
|
|
861
|
+
"sms": {
|
|
862
|
+
"type": "boolean"
|
|
863
|
+
},
|
|
864
|
+
"mms": {
|
|
865
|
+
"type": "boolean"
|
|
866
|
+
}
|
|
867
|
+
}
|
|
868
|
+
},
|
|
869
|
+
"slot": {
|
|
870
|
+
"type": "string",
|
|
871
|
+
"enum": [
|
|
872
|
+
"calling",
|
|
873
|
+
"messaging"
|
|
874
|
+
],
|
|
875
|
+
"default": "calling",
|
|
876
|
+
"description": "Channel slot: calling = voice identity number (default), messaging = dedicated SMS number (requires SMS capability)"
|
|
853
877
|
}
|
|
854
878
|
},
|
|
855
879
|
"required": [
|
|
@@ -884,7 +908,33 @@
|
|
|
884
908
|
"description": "Unassign Phone Number",
|
|
885
909
|
"inputSchema": {
|
|
886
910
|
"type": "object",
|
|
887
|
-
"properties": {
|
|
911
|
+
"properties": {
|
|
912
|
+
"data": {
|
|
913
|
+
"type": "object",
|
|
914
|
+
"properties": {
|
|
915
|
+
"type": {
|
|
916
|
+
"type": "string",
|
|
917
|
+
"enum": [
|
|
918
|
+
"tenant-phone-numbers"
|
|
919
|
+
]
|
|
920
|
+
},
|
|
921
|
+
"attributes": {
|
|
922
|
+
"type": "object",
|
|
923
|
+
"properties": {
|
|
924
|
+
"slot": {
|
|
925
|
+
"type": "string",
|
|
926
|
+
"enum": [
|
|
927
|
+
"calling",
|
|
928
|
+
"messaging"
|
|
929
|
+
],
|
|
930
|
+
"default": "calling",
|
|
931
|
+
"description": "Which slot to detach"
|
|
932
|
+
}
|
|
933
|
+
}
|
|
934
|
+
}
|
|
935
|
+
}
|
|
936
|
+
}
|
|
937
|
+
}
|
|
888
938
|
},
|
|
889
939
|
"_meta": {
|
|
890
940
|
"method": "POST",
|