@smartytalent/mcp-tools 0.1.6 → 0.1.7
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 +131 -0
- package/package.json +1 -1
package/dist/tools.json
CHANGED
|
@@ -7586,6 +7586,10 @@
|
|
|
7586
7586
|
"archived"
|
|
7587
7587
|
]
|
|
7588
7588
|
},
|
|
7589
|
+
"filterSenderNumber": {
|
|
7590
|
+
"type": "string",
|
|
7591
|
+
"description": "Filter chats by sender phone number (e.g. +48535517222)."
|
|
7592
|
+
},
|
|
7589
7593
|
"filterCreatedFrom": {
|
|
7590
7594
|
"type": "string",
|
|
7591
7595
|
"description": "Filters results to include only those created from the specified date and time. The value must be in ISO 8601 format."
|
|
@@ -11991,5 +11995,132 @@
|
|
|
11991
11995
|
"path": "/v1/notifications/{notificationId}",
|
|
11992
11996
|
"operationId": "notificationOptions"
|
|
11993
11997
|
}
|
|
11998
|
+
},
|
|
11999
|
+
{
|
|
12000
|
+
"name": "list_timelines",
|
|
12001
|
+
"description": "List Timelines",
|
|
12002
|
+
"inputSchema": {
|
|
12003
|
+
"type": "object",
|
|
12004
|
+
"properties": {
|
|
12005
|
+
"filterEntityKey": {
|
|
12006
|
+
"type": "string",
|
|
12007
|
+
"description": "Filter timeline entries by entity key prefix (e.g., \"jobs#entityId\")"
|
|
12008
|
+
},
|
|
12009
|
+
"filterUserKey": {
|
|
12010
|
+
"type": "string",
|
|
12011
|
+
"description": "Filter timeline entries by user key prefix (e.g., \"userId\")"
|
|
12012
|
+
},
|
|
12013
|
+
"filterCreatedFrom": {
|
|
12014
|
+
"type": "string",
|
|
12015
|
+
"description": "Filters results to include only those created from the specified date and time. The value must be in ISO 8601 format."
|
|
12016
|
+
},
|
|
12017
|
+
"filterCreatedTo": {
|
|
12018
|
+
"type": "string",
|
|
12019
|
+
"description": "Filters results to include only those created up to the specified date and time. The value must be in ISO 8601 format."
|
|
12020
|
+
},
|
|
12021
|
+
"pageSize": {
|
|
12022
|
+
"type": "integer",
|
|
12023
|
+
"description": "Specifies the number of items to retrieve per page. The maximum value is 100."
|
|
12024
|
+
},
|
|
12025
|
+
"pageNumber": {
|
|
12026
|
+
"type": "integer",
|
|
12027
|
+
"description": "Specifies the page number to retrieve. Used for traditional pagination."
|
|
12028
|
+
},
|
|
12029
|
+
"pageAfter": {
|
|
12030
|
+
"type": "string",
|
|
12031
|
+
"description": "Returns the data encoded in Base64 format, used for cursor-based pagination"
|
|
12032
|
+
},
|
|
12033
|
+
"pageBefore": {
|
|
12034
|
+
"type": "string",
|
|
12035
|
+
"description": "Returns the data encoded in Base64 format, used for cursor-based pagination"
|
|
12036
|
+
}
|
|
12037
|
+
}
|
|
12038
|
+
},
|
|
12039
|
+
"_meta": {
|
|
12040
|
+
"method": "GET",
|
|
12041
|
+
"path": "/v1/timelines",
|
|
12042
|
+
"operationId": "listTimelines"
|
|
12043
|
+
}
|
|
12044
|
+
},
|
|
12045
|
+
{
|
|
12046
|
+
"name": "cors_timelines",
|
|
12047
|
+
"description": "CORS support for Timelines",
|
|
12048
|
+
"inputSchema": {
|
|
12049
|
+
"type": "object",
|
|
12050
|
+
"properties": {}
|
|
12051
|
+
},
|
|
12052
|
+
"_meta": {
|
|
12053
|
+
"method": "OPTIONS",
|
|
12054
|
+
"path": "/v1/timelines",
|
|
12055
|
+
"operationId": "corsTimelines"
|
|
12056
|
+
}
|
|
12057
|
+
},
|
|
12058
|
+
{
|
|
12059
|
+
"name": "show_timeline",
|
|
12060
|
+
"description": "Show Timeline Entry",
|
|
12061
|
+
"inputSchema": {
|
|
12062
|
+
"type": "object",
|
|
12063
|
+
"properties": {
|
|
12064
|
+
"timelineId": {
|
|
12065
|
+
"type": "string",
|
|
12066
|
+
"description": "The timeline entry ID"
|
|
12067
|
+
}
|
|
12068
|
+
},
|
|
12069
|
+
"required": [
|
|
12070
|
+
"timelineId"
|
|
12071
|
+
]
|
|
12072
|
+
},
|
|
12073
|
+
"_meta": {
|
|
12074
|
+
"method": "GET",
|
|
12075
|
+
"path": "/v1/timelines/{timelineId}",
|
|
12076
|
+
"operationId": "showTimeline"
|
|
12077
|
+
}
|
|
12078
|
+
},
|
|
12079
|
+
{
|
|
12080
|
+
"name": "cors_timeline_entry",
|
|
12081
|
+
"description": "CORS support for Timeline Entry",
|
|
12082
|
+
"inputSchema": {
|
|
12083
|
+
"type": "object",
|
|
12084
|
+
"properties": {}
|
|
12085
|
+
},
|
|
12086
|
+
"_meta": {
|
|
12087
|
+
"method": "OPTIONS",
|
|
12088
|
+
"path": "/v1/timelines/{timelineId}",
|
|
12089
|
+
"operationId": "corsTimelineEntry"
|
|
12090
|
+
}
|
|
12091
|
+
},
|
|
12092
|
+
{
|
|
12093
|
+
"name": "rollback_timeline",
|
|
12094
|
+
"description": "Rollback Timeline Entry",
|
|
12095
|
+
"inputSchema": {
|
|
12096
|
+
"type": "object",
|
|
12097
|
+
"properties": {
|
|
12098
|
+
"timelineId": {
|
|
12099
|
+
"type": "string",
|
|
12100
|
+
"description": "The timeline entry ID to rollback to"
|
|
12101
|
+
}
|
|
12102
|
+
},
|
|
12103
|
+
"required": [
|
|
12104
|
+
"timelineId"
|
|
12105
|
+
]
|
|
12106
|
+
},
|
|
12107
|
+
"_meta": {
|
|
12108
|
+
"method": "POST",
|
|
12109
|
+
"path": "/v1/timelines/{timelineId}/rollback",
|
|
12110
|
+
"operationId": "rollbackTimeline"
|
|
12111
|
+
}
|
|
12112
|
+
},
|
|
12113
|
+
{
|
|
12114
|
+
"name": "cors_timeline_rollback",
|
|
12115
|
+
"description": "CORS support for Timeline Rollback",
|
|
12116
|
+
"inputSchema": {
|
|
12117
|
+
"type": "object",
|
|
12118
|
+
"properties": {}
|
|
12119
|
+
},
|
|
12120
|
+
"_meta": {
|
|
12121
|
+
"method": "OPTIONS",
|
|
12122
|
+
"path": "/v1/timelines/{timelineId}/rollback",
|
|
12123
|
+
"operationId": "corsTimelineRollback"
|
|
12124
|
+
}
|
|
11994
12125
|
}
|
|
11995
12126
|
]
|