@smartytalent/mcp-tools 0.1.8 → 0.1.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 +144 -0
- package/package.json +1 -1
package/dist/tools.json
CHANGED
|
@@ -13,6 +13,10 @@
|
|
|
13
13
|
"archived"
|
|
14
14
|
]
|
|
15
15
|
},
|
|
16
|
+
"filterEmail": {
|
|
17
|
+
"type": "string",
|
|
18
|
+
"description": "Returns tenants matching the given email address."
|
|
19
|
+
},
|
|
16
20
|
"filterCreatedFrom": {
|
|
17
21
|
"type": "string",
|
|
18
22
|
"description": "Filters results to include only those created from the specified date and time. The value must be in ISO 8601 format."
|
|
@@ -6866,6 +6870,146 @@
|
|
|
6866
6870
|
"operationId": "formOptions"
|
|
6867
6871
|
}
|
|
6868
6872
|
},
|
|
6873
|
+
{
|
|
6874
|
+
"name": "upload_form_file",
|
|
6875
|
+
"description": "Upload Form File",
|
|
6876
|
+
"inputSchema": {
|
|
6877
|
+
"type": "object",
|
|
6878
|
+
"properties": {
|
|
6879
|
+
"formId": {
|
|
6880
|
+
"type": "string",
|
|
6881
|
+
"description": "formId parameter"
|
|
6882
|
+
},
|
|
6883
|
+
"requestBody": {
|
|
6884
|
+
"type": "object",
|
|
6885
|
+
"required": [
|
|
6886
|
+
"fileName",
|
|
6887
|
+
"contentType",
|
|
6888
|
+
"tenantId"
|
|
6889
|
+
],
|
|
6890
|
+
"properties": {
|
|
6891
|
+
"fileName": {
|
|
6892
|
+
"type": "string"
|
|
6893
|
+
},
|
|
6894
|
+
"contentType": {
|
|
6895
|
+
"type": "string"
|
|
6896
|
+
},
|
|
6897
|
+
"tenantId": {
|
|
6898
|
+
"type": "string"
|
|
6899
|
+
}
|
|
6900
|
+
}
|
|
6901
|
+
}
|
|
6902
|
+
},
|
|
6903
|
+
"required": [
|
|
6904
|
+
"formId",
|
|
6905
|
+
"requestBody"
|
|
6906
|
+
]
|
|
6907
|
+
},
|
|
6908
|
+
"_meta": {
|
|
6909
|
+
"method": "POST",
|
|
6910
|
+
"path": "/v1/forms/{formId}/uploads",
|
|
6911
|
+
"operationId": "uploadFormFile"
|
|
6912
|
+
}
|
|
6913
|
+
},
|
|
6914
|
+
{
|
|
6915
|
+
"name": "form_uploads_options",
|
|
6916
|
+
"description": "Form Uploads Options",
|
|
6917
|
+
"inputSchema": {
|
|
6918
|
+
"type": "object",
|
|
6919
|
+
"properties": {}
|
|
6920
|
+
},
|
|
6921
|
+
"_meta": {
|
|
6922
|
+
"method": "OPTIONS",
|
|
6923
|
+
"path": "/v1/forms/{formId}/uploads",
|
|
6924
|
+
"operationId": "formUploadsOptions"
|
|
6925
|
+
}
|
|
6926
|
+
},
|
|
6927
|
+
{
|
|
6928
|
+
"name": "submit_form",
|
|
6929
|
+
"description": "Submit Form",
|
|
6930
|
+
"inputSchema": {
|
|
6931
|
+
"type": "object",
|
|
6932
|
+
"properties": {
|
|
6933
|
+
"formId": {
|
|
6934
|
+
"type": "string",
|
|
6935
|
+
"description": "formId parameter"
|
|
6936
|
+
},
|
|
6937
|
+
"requestBody": {
|
|
6938
|
+
"type": "object",
|
|
6939
|
+
"required": [
|
|
6940
|
+
"name",
|
|
6941
|
+
"email",
|
|
6942
|
+
"tenantId"
|
|
6943
|
+
],
|
|
6944
|
+
"properties": {
|
|
6945
|
+
"tenantId": {
|
|
6946
|
+
"type": "string"
|
|
6947
|
+
},
|
|
6948
|
+
"name": {
|
|
6949
|
+
"type": "string"
|
|
6950
|
+
},
|
|
6951
|
+
"email": {
|
|
6952
|
+
"type": "string"
|
|
6953
|
+
},
|
|
6954
|
+
"phone": {
|
|
6955
|
+
"type": "string"
|
|
6956
|
+
},
|
|
6957
|
+
"files": {
|
|
6958
|
+
"type": "array",
|
|
6959
|
+
"items": {
|
|
6960
|
+
"type": "object",
|
|
6961
|
+
"properties": {
|
|
6962
|
+
"fileKey": {
|
|
6963
|
+
"type": "string"
|
|
6964
|
+
},
|
|
6965
|
+
"originalFilename": {
|
|
6966
|
+
"type": "string"
|
|
6967
|
+
}
|
|
6968
|
+
}
|
|
6969
|
+
}
|
|
6970
|
+
},
|
|
6971
|
+
"language": {
|
|
6972
|
+
"type": "string"
|
|
6973
|
+
},
|
|
6974
|
+
"sourceJobShortCode": {
|
|
6975
|
+
"type": "string"
|
|
6976
|
+
},
|
|
6977
|
+
"jobId": {
|
|
6978
|
+
"type": "string"
|
|
6979
|
+
},
|
|
6980
|
+
"consentCurrent": {
|
|
6981
|
+
"type": "boolean"
|
|
6982
|
+
},
|
|
6983
|
+
"consentFuture": {
|
|
6984
|
+
"type": "boolean"
|
|
6985
|
+
}
|
|
6986
|
+
}
|
|
6987
|
+
}
|
|
6988
|
+
},
|
|
6989
|
+
"required": [
|
|
6990
|
+
"formId",
|
|
6991
|
+
"requestBody"
|
|
6992
|
+
]
|
|
6993
|
+
},
|
|
6994
|
+
"_meta": {
|
|
6995
|
+
"method": "POST",
|
|
6996
|
+
"path": "/v1/forms/{formId}/submissions",
|
|
6997
|
+
"operationId": "submitForm"
|
|
6998
|
+
}
|
|
6999
|
+
},
|
|
7000
|
+
{
|
|
7001
|
+
"name": "form_submissions_options",
|
|
7002
|
+
"description": "Form Submissions Options",
|
|
7003
|
+
"inputSchema": {
|
|
7004
|
+
"type": "object",
|
|
7005
|
+
"properties": {}
|
|
7006
|
+
},
|
|
7007
|
+
"_meta": {
|
|
7008
|
+
"method": "OPTIONS",
|
|
7009
|
+
"path": "/v1/forms/{formId}/submissions",
|
|
7010
|
+
"operationId": "formSubmissionsOptions"
|
|
7011
|
+
}
|
|
7012
|
+
},
|
|
6869
7013
|
{
|
|
6870
7014
|
"name": "list_browsers",
|
|
6871
7015
|
"description": "List Browsers",
|