@reasonlayer/sdk 0.0.1-rc.3
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/LICENSE +201 -0
- package/README.md +35 -0
- package/bin/rl.mjs +75 -0
- package/dist/builder.d.ts +38 -0
- package/dist/builder.js +41 -0
- package/dist/bundler/index.d.ts +32 -0
- package/dist/bundler/index.js +143 -0
- package/dist/bundler/node.d.ts +10 -0
- package/dist/bundler/node.js +55 -0
- package/dist/cli/args.d.ts +9 -0
- package/dist/cli/args.js +71 -0
- package/dist/cli/config.d.ts +38 -0
- package/dist/cli/config.js +94 -0
- package/dist/cli/convex.d.ts +9 -0
- package/dist/cli/convex.js +25 -0
- package/dist/cli/format.d.ts +11 -0
- package/dist/cli/format.js +140 -0
- package/dist/cli/index.d.ts +1 -0
- package/dist/cli/index.js +721 -0
- package/dist/cli/keychain.d.ts +21 -0
- package/dist/cli/keychain.js +100 -0
- package/dist/cli/operations.d.ts +106 -0
- package/dist/cli/operations.js +623 -0
- package/dist/cli/sdk-package.d.ts +18 -0
- package/dist/cli/sdk-package.js +45 -0
- package/dist/cli/storage-upload.d.ts +9 -0
- package/dist/cli/storage-upload.js +21 -0
- package/dist/cli/watcher-compile.d.ts +1 -0
- package/dist/cli/watcher-compile.js +20 -0
- package/dist/cli/watcher-process.d.ts +1 -0
- package/dist/cli/watcher-process.js +312 -0
- package/dist/cli/workspace-files.d.ts +12 -0
- package/dist/cli/workspace-files.js +91 -0
- package/dist/cli/workspace-local.d.ts +27 -0
- package/dist/cli/workspace-local.js +310 -0
- package/dist/cli/workspace-session.d.ts +13 -0
- package/dist/cli/workspace-session.js +12 -0
- package/dist/compile.d.ts +27 -0
- package/dist/compile.js +834 -0
- package/dist/index.d.ts +10 -0
- package/dist/index.js +5 -0
- package/dist/schedule-validation.d.ts +1 -0
- package/dist/schedule-validation.js +16 -0
- package/dist/selector-schema.d.ts +26 -0
- package/dist/selector-schema.js +780 -0
- package/dist/selectors.d.ts +25 -0
- package/dist/selectors.js +99 -0
- package/dist/testkit.d.ts +32 -0
- package/dist/testkit.js +161 -0
- package/dist/types.d.ts +184 -0
- package/dist/types.js +110 -0
- package/node_modules/@reasonlayer/integrations/dist/catalog.d.ts +4937 -0
- package/node_modules/@reasonlayer/integrations/dist/catalog.js +20 -0
- package/node_modules/@reasonlayer/integrations/dist/generated/slack.d.ts +3014 -0
- package/node_modules/@reasonlayer/integrations/dist/generated/slack.js +3101 -0
- package/node_modules/@reasonlayer/integrations/dist/index.d.ts +2 -0
- package/node_modules/@reasonlayer/integrations/dist/index.js +1 -0
- package/node_modules/@reasonlayer/integrations/dist/internal/definitions.d.ts +44 -0
- package/node_modules/@reasonlayer/integrations/dist/internal/definitions.js +52 -0
- package/node_modules/@reasonlayer/integrations/dist/internal/transport.d.ts +7 -0
- package/node_modules/@reasonlayer/integrations/dist/internal/transport.js +48 -0
- package/node_modules/@reasonlayer/integrations/dist/testkit.d.ts +1 -0
- package/node_modules/@reasonlayer/integrations/dist/testkit.js +1 -0
- package/node_modules/@reasonlayer/integrations/package.json +26 -0
- package/node_modules/@reasonlayer/protocol/dist/environments.d.ts +7 -0
- package/node_modules/@reasonlayer/protocol/dist/environments.js +7 -0
- package/node_modules/@reasonlayer/protocol/dist/events.d.ts +313 -0
- package/node_modules/@reasonlayer/protocol/dist/events.js +20 -0
- package/node_modules/@reasonlayer/protocol/dist/index.d.ts +18 -0
- package/node_modules/@reasonlayer/protocol/dist/index.js +9 -0
- package/node_modules/@reasonlayer/protocol/dist/ir.d.ts +252 -0
- package/node_modules/@reasonlayer/protocol/dist/ir.js +116 -0
- package/node_modules/@reasonlayer/protocol/dist/permissions.d.ts +5 -0
- package/node_modules/@reasonlayer/protocol/dist/permissions.js +30 -0
- package/node_modules/@reasonlayer/protocol/dist/readmodels.d.ts +617 -0
- package/node_modules/@reasonlayer/protocol/dist/readmodels.js +36 -0
- package/node_modules/@reasonlayer/protocol/dist/runtime.d.ts +67 -0
- package/node_modules/@reasonlayer/protocol/dist/runtime.js +66 -0
- package/node_modules/@reasonlayer/protocol/dist/scheduling.d.ts +69 -0
- package/node_modules/@reasonlayer/protocol/dist/scheduling.js +126 -0
- package/node_modules/@reasonlayer/protocol/dist/selector.d.ts +23 -0
- package/node_modules/@reasonlayer/protocol/dist/selector.js +77 -0
- package/node_modules/@reasonlayer/protocol/dist/tasks.d.ts +69 -0
- package/node_modules/@reasonlayer/protocol/dist/tasks.js +6 -0
- package/node_modules/@reasonlayer/protocol/dist/validate.d.ts +6 -0
- package/node_modules/@reasonlayer/protocol/dist/validate.js +18 -0
- package/node_modules/@reasonlayer/protocol/package.json +21 -0
- package/node_modules/@reasonlayer/runner/dist/environment-materializer.d.ts +13 -0
- package/node_modules/@reasonlayer/runner/dist/environment-materializer.js +92 -0
- package/node_modules/@reasonlayer/runner/dist/flue-transcript.d.ts +17 -0
- package/node_modules/@reasonlayer/runner/dist/flue-transcript.js +182 -0
- package/node_modules/@reasonlayer/runner/dist/index.d.ts +184 -0
- package/node_modules/@reasonlayer/runner/dist/index.js +884 -0
- package/node_modules/@reasonlayer/runner/dist/mcp-supervisor.d.ts +15 -0
- package/node_modules/@reasonlayer/runner/dist/mcp-supervisor.js +142 -0
- package/node_modules/@reasonlayer/runner/dist/sandbox-env.d.ts +36 -0
- package/node_modules/@reasonlayer/runner/dist/sandbox-env.js +171 -0
- package/node_modules/@reasonlayer/runner/dist/task-child.d.ts +1 -0
- package/node_modules/@reasonlayer/runner/dist/task-child.js +72 -0
- package/node_modules/@reasonlayer/runner/package.json +21 -0
- package/package.json +65 -0
|
@@ -0,0 +1,3014 @@
|
|
|
1
|
+
import * as v from "valibot";
|
|
2
|
+
export declare const slackApp: import("../internal/definitions.js").DefinedApp<"slack", {
|
|
3
|
+
readonly addCallParticipants: {
|
|
4
|
+
readonly id: "SLACK_ADD_CALL_PARTICIPANTS";
|
|
5
|
+
readonly label: "Add call participants";
|
|
6
|
+
readonly description: "Registers new participants added to a Slack call.";
|
|
7
|
+
readonly version: "20260721_00";
|
|
8
|
+
readonly input: v.ObjectSchema<{
|
|
9
|
+
readonly id: v.StringSchema<undefined>;
|
|
10
|
+
readonly users: v.StringSchema<undefined>;
|
|
11
|
+
}, undefined>;
|
|
12
|
+
readonly output: v.LooseObjectSchema<{
|
|
13
|
+
readonly error: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
14
|
+
readonly needed: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
15
|
+
readonly ok: v.BooleanSchema<undefined>;
|
|
16
|
+
readonly provided: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
17
|
+
}, undefined>;
|
|
18
|
+
};
|
|
19
|
+
readonly addEmoji: {
|
|
20
|
+
readonly id: "SLACK_ADD_EMOJI";
|
|
21
|
+
readonly label: "Add emoji";
|
|
22
|
+
readonly description: "Adds a custom emoji to a Slack workspace given a unique name and an image URL; subject to workspace emoji limits.";
|
|
23
|
+
readonly version: "20260721_00";
|
|
24
|
+
readonly input: v.ObjectSchema<{
|
|
25
|
+
readonly name: v.StringSchema<undefined>;
|
|
26
|
+
readonly url: v.StringSchema<undefined>;
|
|
27
|
+
}, undefined>;
|
|
28
|
+
readonly output: v.LooseObjectSchema<{
|
|
29
|
+
readonly error: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
30
|
+
readonly needed: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
31
|
+
readonly ok: v.BooleanSchema<undefined>;
|
|
32
|
+
readonly provided: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
33
|
+
readonly response_metadata: v.OptionalSchema<v.UnknownSchema, undefined>;
|
|
34
|
+
readonly warning: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
35
|
+
}, undefined>;
|
|
36
|
+
};
|
|
37
|
+
readonly addEmojiAlias: {
|
|
38
|
+
readonly id: "SLACK_ADD_EMOJI_ALIAS";
|
|
39
|
+
readonly label: "Add an emoji alias";
|
|
40
|
+
readonly description: "Adds an alias for an existing custom emoji in a Slack Enterprise Grid organization.";
|
|
41
|
+
readonly version: "20260721_00";
|
|
42
|
+
readonly input: v.ObjectSchema<{
|
|
43
|
+
readonly alias_for: v.StringSchema<undefined>;
|
|
44
|
+
readonly name: v.StringSchema<undefined>;
|
|
45
|
+
}, undefined>;
|
|
46
|
+
readonly output: v.LooseObjectSchema<{
|
|
47
|
+
readonly error: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
48
|
+
readonly needed: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
49
|
+
readonly ok: v.BooleanSchema<undefined>;
|
|
50
|
+
readonly provided: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
51
|
+
readonly response_metadata: v.OptionalSchema<v.UnknownSchema, undefined>;
|
|
52
|
+
readonly warning: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
53
|
+
}, undefined>;
|
|
54
|
+
};
|
|
55
|
+
readonly addEnterpriseUserToWorkspace: {
|
|
56
|
+
readonly id: "SLACK_ADD_ENTERPRISE_USER_TO_WORKSPACE";
|
|
57
|
+
readonly label: "Add Enterprise user to workspace";
|
|
58
|
+
readonly description: "Adds an Enterprise user to a workspace. Use when you need to assign an existing Enterprise Grid user to a specific workspace with optional guest restrictions.";
|
|
59
|
+
readonly version: "20260721_00";
|
|
60
|
+
readonly input: v.ObjectSchema<{
|
|
61
|
+
readonly channel_ids: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
62
|
+
readonly is_restricted: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
63
|
+
readonly is_ultra_restricted: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
64
|
+
readonly team_id: v.StringSchema<undefined>;
|
|
65
|
+
readonly user_id: v.StringSchema<undefined>;
|
|
66
|
+
}, undefined>;
|
|
67
|
+
readonly output: v.LooseObjectSchema<{
|
|
68
|
+
readonly error: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
69
|
+
readonly needed: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
70
|
+
readonly ok: v.BooleanSchema<undefined>;
|
|
71
|
+
readonly provided: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
72
|
+
readonly warning: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
73
|
+
}, undefined>;
|
|
74
|
+
};
|
|
75
|
+
readonly addReactionToAnItem: {
|
|
76
|
+
readonly id: "SLACK_ADD_REACTION_TO_AN_ITEM";
|
|
77
|
+
readonly label: "Add reaction to message";
|
|
78
|
+
readonly description: "Adds a specified emoji reaction to an existing message in a Slack channel, identified by its timestamp; does not remove or retrieve reactions.";
|
|
79
|
+
readonly version: "20260721_00";
|
|
80
|
+
readonly input: v.ObjectSchema<{
|
|
81
|
+
readonly channel: v.StringSchema<undefined>;
|
|
82
|
+
readonly name: v.StringSchema<undefined>;
|
|
83
|
+
readonly timestamp: v.StringSchema<undefined>;
|
|
84
|
+
}, undefined>;
|
|
85
|
+
readonly output: v.LooseObjectSchema<{
|
|
86
|
+
readonly error: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
87
|
+
readonly needed: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
88
|
+
readonly ok: v.BooleanSchema<undefined>;
|
|
89
|
+
readonly provided: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
90
|
+
readonly response_metadata: v.OptionalSchema<v.UnknownSchema, undefined>;
|
|
91
|
+
readonly warning: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
92
|
+
}, undefined>;
|
|
93
|
+
};
|
|
94
|
+
readonly addRemoteFile: {
|
|
95
|
+
readonly id: "SLACK_ADD_REMOTE_FILE";
|
|
96
|
+
readonly label: "Add a remote file";
|
|
97
|
+
readonly description: "Adds a reference to an external file (e.g., Google Drive, Dropbox) to Slack for discovery and sharing, requiring a unique `external_id` and an `external_url` accessible by Slack.";
|
|
98
|
+
readonly version: "20260721_00";
|
|
99
|
+
readonly input: v.ObjectSchema<{
|
|
100
|
+
readonly external_id: v.StringSchema<undefined>;
|
|
101
|
+
readonly external_url: v.StringSchema<undefined>;
|
|
102
|
+
readonly filetype: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
103
|
+
readonly indexable_file_contents: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
104
|
+
readonly preview_image: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
105
|
+
readonly title: v.StringSchema<undefined>;
|
|
106
|
+
}, undefined>;
|
|
107
|
+
readonly output: v.LooseObjectSchema<{
|
|
108
|
+
readonly error: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
109
|
+
readonly file: v.OptionalSchema<v.UnknownSchema, undefined>;
|
|
110
|
+
readonly needed: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
111
|
+
readonly ok: v.BooleanSchema<undefined>;
|
|
112
|
+
readonly provided: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
113
|
+
readonly response_metadata: v.OptionalSchema<v.UnknownSchema, undefined>;
|
|
114
|
+
readonly warning: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
115
|
+
}, undefined>;
|
|
116
|
+
};
|
|
117
|
+
readonly addStar: {
|
|
118
|
+
readonly id: "SLACK_ADD_STAR";
|
|
119
|
+
readonly label: "Add a star to an item";
|
|
120
|
+
readonly description: "Stars a channel, file, file comment, or a specific message in Slack.";
|
|
121
|
+
readonly version: "20260721_00";
|
|
122
|
+
readonly input: v.ObjectSchema<{
|
|
123
|
+
readonly channel: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
124
|
+
readonly file: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
125
|
+
readonly file_comment: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
126
|
+
readonly timestamp: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
127
|
+
}, undefined>;
|
|
128
|
+
readonly output: v.LooseObjectSchema<{
|
|
129
|
+
readonly error: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
130
|
+
readonly needed: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
131
|
+
readonly ok: v.BooleanSchema<undefined>;
|
|
132
|
+
readonly provided: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
133
|
+
readonly response_metadata: v.OptionalSchema<v.UnknownSchema, undefined>;
|
|
134
|
+
readonly warning: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
135
|
+
readonly warnings: v.OptionalSchema<v.ArraySchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
136
|
+
}, undefined>;
|
|
137
|
+
};
|
|
138
|
+
readonly adminConversationsSearch: {
|
|
139
|
+
readonly id: "SLACK_ADMIN_CONVERSATIONS_SEARCH";
|
|
140
|
+
readonly label: "Search for channels in Enterprise organization";
|
|
141
|
+
readonly description: "Tool to search for public or private channels in an Enterprise organization. Use when you need to find channels by name, type, or other criteria within an Enterprise Grid workspace.";
|
|
142
|
+
readonly version: "20260721_00";
|
|
143
|
+
readonly input: v.ObjectSchema<{
|
|
144
|
+
readonly connected_team_ids: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
145
|
+
readonly cursor: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
146
|
+
readonly limit: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>]>, undefined>;
|
|
147
|
+
readonly query: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
148
|
+
readonly search_channel_types: v.OptionalSchema<v.UnionSchema<[v.LiteralSchema<"public", undefined>, v.LiteralSchema<"private", undefined>, v.LiteralSchema<"private_exclude", undefined>, v.LiteralSchema<"im", undefined>, v.LiteralSchema<"mpim", undefined>, v.LiteralSchema<"ext_shared", undefined>, v.LiteralSchema<"org_shared", undefined>, v.LiteralSchema<"archived", undefined>, v.LiteralSchema<"exclude_archived", undefined>, v.LiteralSchema<"multi_workspace", undefined>, v.LiteralSchema<"org_wide", undefined>, v.LiteralSchema<"external_shared", undefined>], undefined>, undefined>;
|
|
149
|
+
readonly sort: v.OptionalSchema<v.UnionSchema<[v.LiteralSchema<"relevant", undefined>, v.LiteralSchema<"name", undefined>, v.LiteralSchema<"member_count", undefined>, v.LiteralSchema<"created", undefined>], undefined>, undefined>;
|
|
150
|
+
readonly sort_dir: v.OptionalSchema<v.UnionSchema<[v.LiteralSchema<"asc", undefined>, v.LiteralSchema<"desc", undefined>], undefined>, undefined>;
|
|
151
|
+
readonly team_ids: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
152
|
+
readonly total_count_only: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
153
|
+
}, undefined>;
|
|
154
|
+
readonly output: v.LooseObjectSchema<{
|
|
155
|
+
readonly conversations: v.ArraySchema<v.UnknownSchema, undefined>;
|
|
156
|
+
readonly next_cursor: v.StringSchema<undefined>;
|
|
157
|
+
readonly ok: v.BooleanSchema<undefined>;
|
|
158
|
+
readonly total_count: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>]>, undefined>;
|
|
159
|
+
}, undefined>;
|
|
160
|
+
};
|
|
161
|
+
readonly apiTest: {
|
|
162
|
+
readonly id: "SLACK_API_TEST";
|
|
163
|
+
readonly label: "Test Slack API connection";
|
|
164
|
+
readonly description: "Tool to check API calling code by testing connectivity and authentication to the Slack API. Use when you need to verify that API credentials are valid and the connection is working properly.";
|
|
165
|
+
readonly version: "20260721_00";
|
|
166
|
+
readonly input: v.ObjectSchema<{
|
|
167
|
+
readonly error: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
168
|
+
readonly foo: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
169
|
+
}, undefined>;
|
|
170
|
+
readonly output: v.LooseObjectSchema<{
|
|
171
|
+
readonly args: v.OptionalSchema<v.UnknownSchema, undefined>;
|
|
172
|
+
readonly error: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
173
|
+
readonly ok: v.BooleanSchema<undefined>;
|
|
174
|
+
}, undefined>;
|
|
175
|
+
};
|
|
176
|
+
readonly archiveConversation: {
|
|
177
|
+
readonly id: "SLACK_ARCHIVE_CONVERSATION";
|
|
178
|
+
readonly label: "Archive a Slack conversation";
|
|
179
|
+
readonly description: "Archives a Slack conversation by its ID, rendering it read-only and hidden while retaining history, ideal for cleaning up inactive channels; be aware that some channels (like #general or certain DMs) cannot be archived and this may impact connected integrations.";
|
|
180
|
+
readonly version: "20260721_00";
|
|
181
|
+
readonly input: v.ObjectSchema<{
|
|
182
|
+
readonly channel: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
183
|
+
}, undefined>;
|
|
184
|
+
readonly output: v.LooseObjectSchema<{
|
|
185
|
+
readonly error: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
186
|
+
readonly needed: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
187
|
+
readonly ok: v.BooleanSchema<undefined>;
|
|
188
|
+
readonly provided: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
189
|
+
readonly response_metadata: v.OptionalSchema<v.UnknownSchema, undefined>;
|
|
190
|
+
readonly warning: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
191
|
+
}, undefined>;
|
|
192
|
+
};
|
|
193
|
+
readonly assistantSearchContext: {
|
|
194
|
+
readonly id: "SLACK_ASSISTANT_SEARCH_CONTEXT";
|
|
195
|
+
readonly label: "Real-time search";
|
|
196
|
+
readonly description: "Search Slack messages, files, channels, and users via Real-time Search API. For queries referencing entities by name (users/channels/files), first resolve with content_types (users/channels/files) to get exact ID. If multiple matches, ask user to clarify before proceeding (e.g. ask for user email).";
|
|
197
|
+
readonly version: "20260721_00";
|
|
198
|
+
readonly input: v.ObjectSchema<{
|
|
199
|
+
readonly action_token: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
200
|
+
readonly after: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>]>, undefined>;
|
|
201
|
+
readonly before: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>]>, undefined>;
|
|
202
|
+
readonly channel_types: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
203
|
+
readonly content_types: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
204
|
+
readonly context_channel_id: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
205
|
+
readonly cursor: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
206
|
+
readonly disable_semantic_search: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
207
|
+
readonly highlight: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
208
|
+
readonly include_archived_channels: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
209
|
+
readonly include_bots: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
210
|
+
readonly include_context_messages: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
211
|
+
readonly include_deleted_users: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
212
|
+
readonly include_message_blocks: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
213
|
+
readonly limit: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>]>, undefined>;
|
|
214
|
+
readonly modifiers: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
215
|
+
readonly query: v.StringSchema<undefined>;
|
|
216
|
+
readonly sort: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
217
|
+
readonly sort_dir: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
218
|
+
readonly term_clauses: v.OptionalSchema<v.ArraySchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
219
|
+
}, undefined>;
|
|
220
|
+
readonly output: v.LooseObjectSchema<{
|
|
221
|
+
readonly error: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
222
|
+
readonly ok: v.BooleanSchema<undefined>;
|
|
223
|
+
readonly response_metadata: v.OptionalSchema<v.UnknownSchema, undefined>;
|
|
224
|
+
readonly results: v.OptionalSchema<v.UnknownSchema, undefined>;
|
|
225
|
+
}, undefined>;
|
|
226
|
+
};
|
|
227
|
+
readonly assistantSearchInfo: {
|
|
228
|
+
readonly id: "SLACK_ASSISTANT_SEARCH_INFO";
|
|
229
|
+
readonly label: "Check search capabilities";
|
|
230
|
+
readonly description: "Check if semantic (AI-powered) search is available on the Slack workspace. Returns whether natural language queries will trigger semantic search in assistant.search.context calls.";
|
|
231
|
+
readonly version: "20260721_00";
|
|
232
|
+
readonly input: v.ObjectSchema<{}, undefined>;
|
|
233
|
+
readonly output: v.LooseObjectSchema<{
|
|
234
|
+
readonly error: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
235
|
+
readonly is_ai_search_enabled: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
236
|
+
readonly ok: v.BooleanSchema<undefined>;
|
|
237
|
+
}, undefined>;
|
|
238
|
+
};
|
|
239
|
+
readonly closeDm: {
|
|
240
|
+
readonly id: "SLACK_CLOSE_DM";
|
|
241
|
+
readonly label: "Close conversation channel";
|
|
242
|
+
readonly description: "Closes a Slack direct message (DM) or multi-person direct message (MPDM) channel, removing it from the user's sidebar without deleting history; this action affects only the calling user's view.";
|
|
243
|
+
readonly version: "20260721_00";
|
|
244
|
+
readonly input: v.ObjectSchema<{
|
|
245
|
+
readonly channel: v.StringSchema<undefined>;
|
|
246
|
+
}, undefined>;
|
|
247
|
+
readonly output: v.LooseObjectSchema<{
|
|
248
|
+
readonly already_closed: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
249
|
+
readonly error: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
250
|
+
readonly no_op: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
251
|
+
readonly ok: v.BooleanSchema<undefined>;
|
|
252
|
+
readonly response_metadata: v.OptionalSchema<v.UnknownSchema, undefined>;
|
|
253
|
+
readonly warning: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
254
|
+
}, undefined>;
|
|
255
|
+
};
|
|
256
|
+
readonly convertChannelToPrivate: {
|
|
257
|
+
readonly id: "SLACK_CONVERT_CHANNEL_TO_PRIVATE";
|
|
258
|
+
readonly label: "Convert public channel to private";
|
|
259
|
+
readonly description: "Convert a public Slack channel to private using the Admin API. This is an Enterprise Grid only feature and requires an org-installed user token with admin.conversations:write scope.";
|
|
260
|
+
readonly version: "20260721_00";
|
|
261
|
+
readonly input: v.ObjectSchema<{
|
|
262
|
+
readonly channel_id: v.StringSchema<undefined>;
|
|
263
|
+
readonly name: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
264
|
+
}, undefined>;
|
|
265
|
+
readonly output: v.LooseObjectSchema<{
|
|
266
|
+
readonly error: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
267
|
+
readonly needed: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
268
|
+
readonly ok: v.BooleanSchema<undefined>;
|
|
269
|
+
readonly provided: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
270
|
+
readonly response_metadata: v.OptionalSchema<v.UnknownSchema, undefined>;
|
|
271
|
+
readonly warning: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
272
|
+
}, undefined>;
|
|
273
|
+
};
|
|
274
|
+
readonly createAReminder: {
|
|
275
|
+
readonly id: "SLACK_CREATE_A_REMINDER";
|
|
276
|
+
readonly label: "Create a reminder";
|
|
277
|
+
readonly description: "Creates a Slack reminder with specified text and time; time accepts Unix timestamps, seconds from now, or natural language (e.g., 'in 15 minutes', 'every Thursday at 2pm').";
|
|
278
|
+
readonly version: "20260721_00";
|
|
279
|
+
readonly input: v.ObjectSchema<{
|
|
280
|
+
readonly team_id: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
281
|
+
readonly text: v.StringSchema<undefined>;
|
|
282
|
+
readonly time: v.StringSchema<undefined>;
|
|
283
|
+
readonly user: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
284
|
+
}, undefined>;
|
|
285
|
+
readonly output: v.LooseObjectSchema<{
|
|
286
|
+
readonly error: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
287
|
+
readonly ok: v.BooleanSchema<undefined>;
|
|
288
|
+
readonly reminder: v.OptionalSchema<v.UnknownSchema, undefined>;
|
|
289
|
+
}, undefined>;
|
|
290
|
+
};
|
|
291
|
+
readonly createCanvas: {
|
|
292
|
+
readonly id: "SLACK_CREATE_CANVAS";
|
|
293
|
+
readonly label: "Create Slack Canvas";
|
|
294
|
+
readonly description: "Creates a new Slack Canvas with the specified title and optional content.";
|
|
295
|
+
readonly version: "20260721_00";
|
|
296
|
+
readonly input: v.ObjectSchema<{
|
|
297
|
+
readonly channel_id: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
298
|
+
readonly document_content: v.OptionalSchema<v.UnknownSchema, undefined>;
|
|
299
|
+
readonly title: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
300
|
+
}, undefined>;
|
|
301
|
+
readonly output: v.LooseObjectSchema<{
|
|
302
|
+
readonly canvas_id: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
303
|
+
readonly detail: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
304
|
+
readonly error: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
305
|
+
readonly needed: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
306
|
+
readonly ok: v.BooleanSchema<undefined>;
|
|
307
|
+
readonly provided: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
308
|
+
readonly response_metadata: v.OptionalSchema<v.UnknownSchema, undefined>;
|
|
309
|
+
}, undefined>;
|
|
310
|
+
};
|
|
311
|
+
readonly createChannel: {
|
|
312
|
+
readonly id: "SLACK_CREATE_CHANNEL";
|
|
313
|
+
readonly label: "Create channel";
|
|
314
|
+
readonly description: "Initiates a public or private channel-based conversation in a Slack workspace. Immediately creates the channel; invoke only after explicit user confirmation.";
|
|
315
|
+
readonly version: "20260721_00";
|
|
316
|
+
readonly input: v.ObjectSchema<{
|
|
317
|
+
readonly is_private: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
318
|
+
readonly name: v.StringSchema<undefined>;
|
|
319
|
+
readonly team_id: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
320
|
+
}, undefined>;
|
|
321
|
+
readonly output: v.LooseObjectSchema<{
|
|
322
|
+
readonly channel: v.OptionalSchema<v.UnknownSchema, undefined>;
|
|
323
|
+
readonly error: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
324
|
+
readonly ok: v.BooleanSchema<undefined>;
|
|
325
|
+
readonly response_metadata: v.OptionalSchema<v.UnknownSchema, undefined>;
|
|
326
|
+
readonly warning: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
327
|
+
}, undefined>;
|
|
328
|
+
};
|
|
329
|
+
readonly createChannelBasedConversation: {
|
|
330
|
+
readonly id: "SLACK_CREATE_CHANNEL_BASED_CONVERSATION";
|
|
331
|
+
readonly label: "Create a channel-based conversation";
|
|
332
|
+
readonly description: "Creates a new public or private Slack channel with a unique name; the channel can be org-wide, or team-specific if `team_id` is given (required if `org_wide` is false or not provided).";
|
|
333
|
+
readonly version: "20260721_00";
|
|
334
|
+
readonly input: v.ObjectSchema<{
|
|
335
|
+
readonly description: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
336
|
+
readonly is_private: v.BooleanSchema<undefined>;
|
|
337
|
+
readonly name: v.StringSchema<undefined>;
|
|
338
|
+
readonly org_wide: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
339
|
+
readonly team_id: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
340
|
+
}, undefined>;
|
|
341
|
+
readonly output: v.UnknownSchema;
|
|
342
|
+
};
|
|
343
|
+
readonly createEnterpriseTeam: {
|
|
344
|
+
readonly id: "SLACK_CREATE_ENTERPRISE_TEAM";
|
|
345
|
+
readonly label: "Create Enterprise team";
|
|
346
|
+
readonly description: "Tool to create an Enterprise team in Slack. Use when you need to create a new team (workspace) within an Enterprise Grid organization. Requires admin.teams:write scope.";
|
|
347
|
+
readonly version: "20260721_00";
|
|
348
|
+
readonly input: v.ObjectSchema<{
|
|
349
|
+
readonly team_description: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
350
|
+
readonly team_discoverability: v.OptionalSchema<v.UnionSchema<[v.LiteralSchema<"open", undefined>, v.LiteralSchema<"closed", undefined>, v.LiteralSchema<"invite_only", undefined>, v.LiteralSchema<"unlisted", undefined>], undefined>, undefined>;
|
|
351
|
+
readonly team_domain: v.StringSchema<undefined>;
|
|
352
|
+
readonly team_name: v.StringSchema<undefined>;
|
|
353
|
+
}, undefined>;
|
|
354
|
+
readonly output: v.LooseObjectSchema<{
|
|
355
|
+
readonly error: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
356
|
+
readonly ok: v.BooleanSchema<undefined>;
|
|
357
|
+
readonly team: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
358
|
+
readonly warning: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
359
|
+
}, undefined>;
|
|
360
|
+
};
|
|
361
|
+
readonly createSlackList: {
|
|
362
|
+
readonly id: "SLACK_CREATE_SLACK_LIST";
|
|
363
|
+
readonly label: "Create Slack List";
|
|
364
|
+
readonly description: "Creates a new Slack List via `slackLists.create`. Provide a `name` and, optionally, a `description_blocks` description and a `schema` of typed columns. You can instead copy an existing List's structure with `copy_from_list_id` (and its rows via `include_copied_list_records`), or enable task-tracking columns with `todo_mode`. Returns the new List's `list_id`. Requires a user token with the `lists:write` scope.";
|
|
365
|
+
readonly version: "20260721_00";
|
|
366
|
+
readonly input: v.ObjectSchema<{
|
|
367
|
+
readonly copy_from_list_id: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
368
|
+
readonly description_blocks: v.OptionalSchema<v.UnknownSchema, undefined>;
|
|
369
|
+
readonly include_copied_list_records: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
370
|
+
readonly name: v.StringSchema<undefined>;
|
|
371
|
+
readonly schema: v.OptionalSchema<v.ArraySchema<v.UnknownSchema, undefined>, undefined>;
|
|
372
|
+
readonly todo_mode: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
373
|
+
}, undefined>;
|
|
374
|
+
readonly output: v.LooseObjectSchema<{
|
|
375
|
+
readonly error: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
376
|
+
readonly list_id: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
377
|
+
readonly list_metadata: v.OptionalSchema<v.UnknownSchema, undefined>;
|
|
378
|
+
readonly needed: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
379
|
+
readonly ok: v.BooleanSchema<undefined>;
|
|
380
|
+
readonly provided: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
381
|
+
readonly response_metadata: v.OptionalSchema<v.UnknownSchema, undefined>;
|
|
382
|
+
readonly warning: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
383
|
+
}, undefined>;
|
|
384
|
+
};
|
|
385
|
+
readonly createSlackListItem: {
|
|
386
|
+
readonly id: "SLACK_CREATE_SLACK_LIST_ITEM";
|
|
387
|
+
readonly label: "Create Slack List item";
|
|
388
|
+
readonly description: "Creates a new item (row) in a Slack List via `slackLists.items.create`. Set initial cell values with `initial_fields`; text columns require Block Kit `rich_text` (a plain string is wrapped automatically). Optionally duplicate an existing row with `duplicated_item_id` or create a subtask with `parent_item_id`. Requires a user token with the `lists:write` scope.";
|
|
389
|
+
readonly version: "20260721_00";
|
|
390
|
+
readonly input: v.ObjectSchema<{
|
|
391
|
+
readonly duplicated_item_id: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
392
|
+
readonly initial_fields: v.OptionalSchema<v.ArraySchema<v.UnknownSchema, undefined>, undefined>;
|
|
393
|
+
readonly list_id: v.StringSchema<undefined>;
|
|
394
|
+
readonly parent_item_id: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
395
|
+
}, undefined>;
|
|
396
|
+
readonly output: v.LooseObjectSchema<{
|
|
397
|
+
readonly error: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
398
|
+
readonly item: v.OptionalSchema<v.UnknownSchema, undefined>;
|
|
399
|
+
readonly needed: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
400
|
+
readonly ok: v.BooleanSchema<undefined>;
|
|
401
|
+
readonly provided: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
402
|
+
readonly response_metadata: v.OptionalSchema<v.UnknownSchema, undefined>;
|
|
403
|
+
readonly warning: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
404
|
+
}, undefined>;
|
|
405
|
+
};
|
|
406
|
+
readonly createUserGroup: {
|
|
407
|
+
readonly id: "SLACK_CREATE_USER_GROUP";
|
|
408
|
+
readonly label: "Create a Slack user group";
|
|
409
|
+
readonly description: "Creates a new User Group (often referred to as a subteam) in a Slack workspace.";
|
|
410
|
+
readonly version: "20260721_00";
|
|
411
|
+
readonly input: v.ObjectSchema<{
|
|
412
|
+
readonly additional_channels: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
413
|
+
readonly channels: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
414
|
+
readonly description: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
415
|
+
readonly enable_section: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
416
|
+
readonly handle: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
417
|
+
readonly include_count: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
418
|
+
readonly name: v.StringSchema<undefined>;
|
|
419
|
+
readonly team_id: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
420
|
+
}, undefined>;
|
|
421
|
+
readonly output: v.LooseObjectSchema<{
|
|
422
|
+
readonly error: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
423
|
+
readonly ok: v.BooleanSchema<undefined>;
|
|
424
|
+
readonly response_metadata: v.OptionalSchema<v.UnknownSchema, undefined>;
|
|
425
|
+
readonly subteam: v.OptionalSchema<v.UnknownSchema, undefined>;
|
|
426
|
+
readonly usergroup: v.OptionalSchema<v.UnknownSchema, undefined>;
|
|
427
|
+
readonly warning: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
428
|
+
}, undefined>;
|
|
429
|
+
};
|
|
430
|
+
readonly customizeUrlUnfurl: {
|
|
431
|
+
readonly id: "SLACK_CUSTOMIZE_URL_UNFURL";
|
|
432
|
+
readonly label: "Customize URL unfurl";
|
|
433
|
+
readonly description: "Customizes URL previews (unfurling) in a specific Slack message using a URL-encoded JSON in `unfurls` to define custom content or remove existing previews.";
|
|
434
|
+
readonly version: "20260721_00";
|
|
435
|
+
readonly input: v.ObjectSchema<{
|
|
436
|
+
readonly channel: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
437
|
+
readonly metadata: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
438
|
+
readonly source: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
439
|
+
readonly ts: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
440
|
+
readonly unfurl_id: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
441
|
+
readonly unfurls: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
442
|
+
readonly user_auth_blocks: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
443
|
+
readonly user_auth_message: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
444
|
+
readonly user_auth_required: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
445
|
+
readonly user_auth_url: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
446
|
+
}, undefined>;
|
|
447
|
+
readonly output: v.LooseObjectSchema<{
|
|
448
|
+
readonly error: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
449
|
+
readonly needed: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
450
|
+
readonly ok: v.BooleanSchema<undefined>;
|
|
451
|
+
readonly provided: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
452
|
+
readonly response_metadata: v.OptionalSchema<v.UnknownSchema, undefined>;
|
|
453
|
+
readonly warning: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
454
|
+
}, undefined>;
|
|
455
|
+
};
|
|
456
|
+
readonly deletesAMessageFromAChat: {
|
|
457
|
+
readonly id: "SLACK_DELETES_A_MESSAGE_FROM_A_CHAT";
|
|
458
|
+
readonly label: "Delete a message from a chat";
|
|
459
|
+
readonly description: "Deletes a message, identified by its channel ID and timestamp, from a Slack channel, private group, or direct message conversation; the authenticated user or bot must be the original poster.";
|
|
460
|
+
readonly version: "20260721_00";
|
|
461
|
+
readonly input: v.ObjectSchema<{
|
|
462
|
+
readonly as_user: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
463
|
+
readonly channel: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
464
|
+
readonly ts: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
465
|
+
}, undefined>;
|
|
466
|
+
readonly output: v.LooseObjectSchema<{
|
|
467
|
+
readonly channel: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
468
|
+
readonly deprecated_argument: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
469
|
+
readonly error: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
470
|
+
readonly ok: v.BooleanSchema<undefined>;
|
|
471
|
+
readonly response_metadata: v.OptionalSchema<v.UnknownSchema, undefined>;
|
|
472
|
+
readonly ts: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
473
|
+
readonly warning: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
474
|
+
}, undefined>;
|
|
475
|
+
};
|
|
476
|
+
readonly deleteCanvas: {
|
|
477
|
+
readonly id: "SLACK_DELETE_CANVAS";
|
|
478
|
+
readonly label: "Delete Slack Canvas";
|
|
479
|
+
readonly description: "Deletes a Slack Canvas permanently and irreversibly. Always confirm with the user before calling this tool.";
|
|
480
|
+
readonly version: "20260721_00";
|
|
481
|
+
readonly input: v.ObjectSchema<{
|
|
482
|
+
readonly canvas_id: v.StringSchema<undefined>;
|
|
483
|
+
}, undefined>;
|
|
484
|
+
readonly output: v.LooseObjectSchema<{
|
|
485
|
+
readonly error: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
486
|
+
readonly ok: v.BooleanSchema<undefined>;
|
|
487
|
+
readonly response_metadata: v.OptionalSchema<v.UnknownSchema, undefined>;
|
|
488
|
+
readonly warning: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
489
|
+
}, undefined>;
|
|
490
|
+
};
|
|
491
|
+
readonly deleteChannel: {
|
|
492
|
+
readonly id: "SLACK_DELETE_CHANNEL";
|
|
493
|
+
readonly label: "Delete a public or private channel";
|
|
494
|
+
readonly description: "Permanently and irreversibly deletes a specified public or private channel, including all its messages and files, within a Slack Enterprise Grid organization.";
|
|
495
|
+
readonly version: "20260721_00";
|
|
496
|
+
readonly input: v.ObjectSchema<{
|
|
497
|
+
readonly channel_id: v.StringSchema<undefined>;
|
|
498
|
+
}, undefined>;
|
|
499
|
+
readonly output: v.LooseObjectSchema<{
|
|
500
|
+
readonly error: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
501
|
+
readonly needed: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
502
|
+
readonly ok: v.BooleanSchema<undefined>;
|
|
503
|
+
readonly provided: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
504
|
+
readonly response_metadata: v.OptionalSchema<v.UnknownSchema, undefined>;
|
|
505
|
+
readonly warning: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
506
|
+
}, undefined>;
|
|
507
|
+
};
|
|
508
|
+
readonly deleteFile: {
|
|
509
|
+
readonly id: "SLACK_DELETE_FILE";
|
|
510
|
+
readonly label: "Delete a file by ID";
|
|
511
|
+
readonly description: "Permanently deletes an existing file from a Slack workspace using its unique file ID; this action is irreversible and also removes any associated comments or shares.";
|
|
512
|
+
readonly version: "20260721_00";
|
|
513
|
+
readonly input: v.ObjectSchema<{
|
|
514
|
+
readonly file: v.StringSchema<undefined>;
|
|
515
|
+
}, undefined>;
|
|
516
|
+
readonly output: v.LooseObjectSchema<{
|
|
517
|
+
readonly error: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
518
|
+
readonly ok: v.BooleanSchema<undefined>;
|
|
519
|
+
readonly response_metadata: v.OptionalSchema<v.UnknownSchema, undefined>;
|
|
520
|
+
readonly warning: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
521
|
+
}, undefined>;
|
|
522
|
+
};
|
|
523
|
+
readonly deleteFileComment: {
|
|
524
|
+
readonly id: "SLACK_DELETE_FILE_COMMENT";
|
|
525
|
+
readonly label: "Delete file comment";
|
|
526
|
+
readonly description: "Deletes a specific comment from a file in Slack; this action is irreversible.";
|
|
527
|
+
readonly version: "20260721_00";
|
|
528
|
+
readonly input: v.ObjectSchema<{
|
|
529
|
+
readonly file: v.StringSchema<undefined>;
|
|
530
|
+
readonly id: v.StringSchema<undefined>;
|
|
531
|
+
}, undefined>;
|
|
532
|
+
readonly output: v.LooseObjectSchema<{
|
|
533
|
+
readonly error: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
534
|
+
readonly ok: v.BooleanSchema<undefined>;
|
|
535
|
+
readonly response_metadata: v.OptionalSchema<v.UnknownSchema, undefined>;
|
|
536
|
+
readonly warning: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
537
|
+
}, undefined>;
|
|
538
|
+
};
|
|
539
|
+
readonly deleteMultipleSlackListItems: {
|
|
540
|
+
readonly id: "SLACK_DELETE_MULTIPLE_SLACK_LIST_ITEMS";
|
|
541
|
+
readonly label: "Delete multiple Slack List items";
|
|
542
|
+
readonly description: "Deletes several items (rows) from a Slack List in one call via `slackLists.items.deleteMultiple`. This operation is ALL-OR-NOTHING: Slack returns a single `{\"ok\": true}` on success or `{\"ok\": false, \"error\": ...}` on failure, with NO per-item result array, so partial state cannot be reported. On failure, treat the whole batch as not deleted and retry the entire batch. Requires a user token with the `lists:write` scope.";
|
|
543
|
+
readonly version: "20260721_00";
|
|
544
|
+
readonly input: v.ObjectSchema<{
|
|
545
|
+
readonly ids: v.ArraySchema<v.StringSchema<undefined>, undefined>;
|
|
546
|
+
readonly list_id: v.StringSchema<undefined>;
|
|
547
|
+
}, undefined>;
|
|
548
|
+
readonly output: v.LooseObjectSchema<{
|
|
549
|
+
readonly error: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
550
|
+
readonly needed: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
551
|
+
readonly ok: v.BooleanSchema<undefined>;
|
|
552
|
+
readonly provided: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
553
|
+
readonly response_metadata: v.OptionalSchema<v.UnknownSchema, undefined>;
|
|
554
|
+
readonly warning: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
555
|
+
}, undefined>;
|
|
556
|
+
};
|
|
557
|
+
readonly deleteReminder: {
|
|
558
|
+
readonly id: "SLACK_DELETE_REMINDER";
|
|
559
|
+
readonly label: "Delete a Slack reminder";
|
|
560
|
+
readonly description: "Deletes an existing Slack reminder, typically when it is no longer relevant or a task is completed; this operation is irreversible.";
|
|
561
|
+
readonly version: "20260721_00";
|
|
562
|
+
readonly input: v.ObjectSchema<{
|
|
563
|
+
readonly reminder: v.StringSchema<undefined>;
|
|
564
|
+
readonly team_id: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
565
|
+
}, undefined>;
|
|
566
|
+
readonly output: v.LooseObjectSchema<{
|
|
567
|
+
readonly error: v.OptionalSchema<v.UnionSchema<[v.LiteralSchema<"missing_argument", undefined>, v.LiteralSchema<"not_found", undefined>, v.LiteralSchema<"access_denied", undefined>, v.LiteralSchema<"account_inactive", undefined>, v.LiteralSchema<"deprecated_endpoint", undefined>, v.LiteralSchema<"ekm_access_denied", undefined>, v.LiteralSchema<"enterprise_is_restricted", undefined>, v.LiteralSchema<"invalid_auth", undefined>, v.LiteralSchema<"is_bot", undefined>, v.LiteralSchema<"method_deprecated", undefined>, v.LiteralSchema<"missing_scope", undefined>, v.LiteralSchema<"not_allowed_token_type", undefined>, v.LiteralSchema<"not_authed", undefined>, v.LiteralSchema<"no_permission", undefined>, v.LiteralSchema<"org_login_required", undefined>, v.LiteralSchema<"token_expired", undefined>, v.LiteralSchema<"token_revoked", undefined>, v.LiteralSchema<"two_factor_setup_required", undefined>, v.LiteralSchema<"team_access_not_granted", undefined>, v.LiteralSchema<"team_not_found", undefined>, v.LiteralSchema<"accesslimited", undefined>, v.LiteralSchema<"fatal_error", undefined>, v.LiteralSchema<"internal_error", undefined>, v.LiteralSchema<"invalid_arg_name", undefined>, v.LiteralSchema<"invalid_arguments", undefined>, v.LiteralSchema<"invalid_array_arg", undefined>, v.LiteralSchema<"invalid_charset", undefined>, v.LiteralSchema<"invalid_form_data", undefined>, v.LiteralSchema<"invalid_post_type", undefined>, v.LiteralSchema<"missing_post_type", undefined>, v.LiteralSchema<"ratelimited", undefined>, v.LiteralSchema<"request_timeout", undefined>, v.LiteralSchema<"service_unavailable", undefined>, v.LiteralSchema<"team_added_to_org", undefined>], undefined>, undefined>;
|
|
568
|
+
readonly ok: v.BooleanSchema<undefined>;
|
|
569
|
+
readonly response_metadata: v.OptionalSchema<v.UnknownSchema, undefined>;
|
|
570
|
+
readonly warning: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
571
|
+
}, undefined>;
|
|
572
|
+
};
|
|
573
|
+
readonly deleteScheduledMessage: {
|
|
574
|
+
readonly id: "SLACK_DELETE_SCHEDULED_MESSAGE";
|
|
575
|
+
readonly label: "Delete scheduled chat message";
|
|
576
|
+
readonly description: "Deletes a pending, unsent scheduled message from the specified Slack channel, identified by its `scheduled_message_id`.";
|
|
577
|
+
readonly version: "20260721_00";
|
|
578
|
+
readonly input: v.ObjectSchema<{
|
|
579
|
+
readonly as_user: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
580
|
+
readonly channel: v.StringSchema<undefined>;
|
|
581
|
+
readonly scheduled_message_id: v.StringSchema<undefined>;
|
|
582
|
+
}, undefined>;
|
|
583
|
+
readonly output: v.LooseObjectSchema<{
|
|
584
|
+
readonly error: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
585
|
+
readonly ok: v.BooleanSchema<undefined>;
|
|
586
|
+
readonly response_metadata: v.OptionalSchema<v.UnknownSchema, undefined>;
|
|
587
|
+
readonly warning: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
588
|
+
}, undefined>;
|
|
589
|
+
};
|
|
590
|
+
readonly deleteSlackListAccess: {
|
|
591
|
+
readonly id: "SLACK_DELETE_SLACK_LIST_ACCESS";
|
|
592
|
+
readonly label: "Delete Slack List access";
|
|
593
|
+
readonly description: "Revokes sharing access on a Slack List via `slackLists.access.delete`. Provide the `list_id` and EXACTLY ONE of `channel_ids` or `user_ids` (they are mutually exclusive) to remove access for those channels or users. Requires a user token with the `lists:write` scope.";
|
|
594
|
+
readonly version: "20260721_00";
|
|
595
|
+
readonly input: v.ObjectSchema<{
|
|
596
|
+
readonly channel_ids: v.OptionalSchema<v.ArraySchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
597
|
+
readonly list_id: v.StringSchema<undefined>;
|
|
598
|
+
readonly user_ids: v.OptionalSchema<v.ArraySchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
599
|
+
}, undefined>;
|
|
600
|
+
readonly output: v.LooseObjectSchema<{
|
|
601
|
+
readonly error: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
602
|
+
readonly failed_to_update_channel_ids: v.OptionalSchema<v.ArraySchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
603
|
+
readonly failed_to_update_user_ids: v.OptionalSchema<v.ArraySchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
604
|
+
readonly needed: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
605
|
+
readonly ok: v.BooleanSchema<undefined>;
|
|
606
|
+
readonly provided: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
607
|
+
readonly response_metadata: v.OptionalSchema<v.UnknownSchema, undefined>;
|
|
608
|
+
readonly warning: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
609
|
+
}, undefined>;
|
|
610
|
+
};
|
|
611
|
+
readonly deleteSlackListItem: {
|
|
612
|
+
readonly id: "SLACK_DELETE_SLACK_LIST_ITEM";
|
|
613
|
+
readonly label: "Delete Slack List item";
|
|
614
|
+
readonly description: "Deletes an item (row) from a Slack List via `slackLists.items.delete`. Identify the List with `list_id` and the row to remove with `id`. Deletion is permanent and cannot be undone. Requires a user token with the `lists:write` scope.";
|
|
615
|
+
readonly version: "20260721_00";
|
|
616
|
+
readonly input: v.ObjectSchema<{
|
|
617
|
+
readonly id: v.StringSchema<undefined>;
|
|
618
|
+
readonly list_id: v.StringSchema<undefined>;
|
|
619
|
+
}, undefined>;
|
|
620
|
+
readonly output: v.LooseObjectSchema<{
|
|
621
|
+
readonly error: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
622
|
+
readonly needed: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
623
|
+
readonly ok: v.BooleanSchema<undefined>;
|
|
624
|
+
readonly provided: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
625
|
+
readonly response_metadata: v.OptionalSchema<v.UnknownSchema, undefined>;
|
|
626
|
+
readonly warning: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
627
|
+
}, undefined>;
|
|
628
|
+
};
|
|
629
|
+
readonly deleteUserProfilePhoto: {
|
|
630
|
+
readonly id: "SLACK_DELETE_USER_PROFILE_PHOTO";
|
|
631
|
+
readonly label: "Delete user profile photo";
|
|
632
|
+
readonly description: "Deletes the Slack profile photo for the user identified by the token, reverting them to the default avatar; this action is irreversible and succeeds even if no custom photo was set.";
|
|
633
|
+
readonly version: "20260721_00";
|
|
634
|
+
readonly input: v.ObjectSchema<{}, undefined>;
|
|
635
|
+
readonly output: v.LooseObjectSchema<{
|
|
636
|
+
readonly error: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
637
|
+
readonly needed: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
638
|
+
readonly ok: v.BooleanSchema<undefined>;
|
|
639
|
+
readonly provided: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
640
|
+
readonly response_metadata: v.OptionalSchema<v.UnknownSchema, undefined>;
|
|
641
|
+
readonly warning: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
642
|
+
}, undefined>;
|
|
643
|
+
};
|
|
644
|
+
readonly disableUserGroup: {
|
|
645
|
+
readonly id: "SLACK_DISABLE_USER_GROUP";
|
|
646
|
+
readonly label: "Disable a Slack user group";
|
|
647
|
+
readonly description: "Disables a specified, currently enabled Slack User Group by its unique ID, effectively archiving it by setting its 'date_delete' timestamp; the group is not permanently deleted and can be re-enabled.";
|
|
648
|
+
readonly version: "20260721_00";
|
|
649
|
+
readonly input: v.ObjectSchema<{
|
|
650
|
+
readonly include_count: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
651
|
+
readonly team_id: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
652
|
+
readonly usergroup: v.StringSchema<undefined>;
|
|
653
|
+
}, undefined>;
|
|
654
|
+
readonly output: v.LooseObjectSchema<{
|
|
655
|
+
readonly arg: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
656
|
+
readonly error: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
657
|
+
readonly ok: v.BooleanSchema<undefined>;
|
|
658
|
+
readonly response_metadata: v.OptionalSchema<v.UnknownSchema, undefined>;
|
|
659
|
+
readonly usergroup: v.OptionalSchema<v.UnknownSchema, undefined>;
|
|
660
|
+
readonly warning: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
661
|
+
}, undefined>;
|
|
662
|
+
};
|
|
663
|
+
readonly downloadSlackFile: {
|
|
664
|
+
readonly id: "SLACK_DOWNLOAD_SLACK_FILE";
|
|
665
|
+
readonly label: "Download Slack file";
|
|
666
|
+
readonly description: "Tool to download Slack file content and convert it to a publicly accessible URL. Use when you need to retrieve and download files that have been shared in Slack channels or conversations.";
|
|
667
|
+
readonly version: "20260721_00";
|
|
668
|
+
readonly input: v.ObjectSchema<{
|
|
669
|
+
readonly count: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>]>, undefined>;
|
|
670
|
+
readonly cursor: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
671
|
+
readonly file: v.StringSchema<undefined>;
|
|
672
|
+
readonly limit: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>]>, undefined>;
|
|
673
|
+
readonly page: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>]>, undefined>;
|
|
674
|
+
}, undefined>;
|
|
675
|
+
readonly output: v.LooseObjectSchema<{
|
|
676
|
+
readonly file_content: v.UnknownSchema;
|
|
677
|
+
readonly file_info: v.OptionalSchema<v.UnknownSchema, undefined>;
|
|
678
|
+
}, undefined>;
|
|
679
|
+
};
|
|
680
|
+
readonly editCanvas: {
|
|
681
|
+
readonly id: "SLACK_EDIT_CANVAS";
|
|
682
|
+
readonly label: "Edit Slack Canvas";
|
|
683
|
+
readonly description: "Edits a Slack Canvas with granular control over content placement. Supports replace, insert (before/after/start/end) operations for flexible content management.";
|
|
684
|
+
readonly version: "20260721_00";
|
|
685
|
+
readonly input: v.ObjectSchema<{
|
|
686
|
+
readonly canvas_id: v.StringSchema<undefined>;
|
|
687
|
+
readonly document_content: v.OptionalSchema<v.UnknownSchema, undefined>;
|
|
688
|
+
readonly operation: v.OptionalSchema<v.UnionSchema<[v.LiteralSchema<"replace", undefined>, v.LiteralSchema<"insert_after", undefined>, v.LiteralSchema<"insert_before", undefined>, v.LiteralSchema<"insert_at_start", undefined>, v.LiteralSchema<"insert_at_end", undefined>, v.LiteralSchema<"delete", undefined>, v.LiteralSchema<"rename", undefined>], undefined>, undefined>;
|
|
689
|
+
readonly section_id: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
690
|
+
readonly title_content: v.OptionalSchema<v.UnknownSchema, undefined>;
|
|
691
|
+
}, undefined>;
|
|
692
|
+
readonly output: v.LooseObjectSchema<{
|
|
693
|
+
readonly detail: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
694
|
+
readonly error: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
695
|
+
readonly needed: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
696
|
+
readonly ok: v.BooleanSchema<undefined>;
|
|
697
|
+
readonly provided: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
698
|
+
readonly response_metadata: v.OptionalSchema<v.UnknownSchema, undefined>;
|
|
699
|
+
readonly warning: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
700
|
+
readonly warnings: v.OptionalSchema<v.ArraySchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
701
|
+
}, undefined>;
|
|
702
|
+
};
|
|
703
|
+
readonly enablePublicSharingOfAFile: {
|
|
704
|
+
readonly id: "SLACK_ENABLE_PUBLIC_SHARING_OF_A_FILE";
|
|
705
|
+
readonly label: "Share file public url";
|
|
706
|
+
readonly description: "Enables public sharing for an existing Slack file by generating a publicly accessible URL; this action does not create new files. Once enabled, the file is accessible to anyone with the URL — verify intent before sharing sensitive or confidential files.";
|
|
707
|
+
readonly version: "20260721_00";
|
|
708
|
+
readonly input: v.ObjectSchema<{
|
|
709
|
+
readonly file: v.StringSchema<undefined>;
|
|
710
|
+
}, undefined>;
|
|
711
|
+
readonly output: v.LooseObjectSchema<{
|
|
712
|
+
readonly comments: v.OptionalSchema<v.ArraySchema<v.UnknownSchema, undefined>, undefined>;
|
|
713
|
+
readonly error: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
714
|
+
readonly file: v.OptionalSchema<v.UnknownSchema, undefined>;
|
|
715
|
+
readonly ok: v.BooleanSchema<undefined>;
|
|
716
|
+
readonly paging: v.OptionalSchema<v.UnknownSchema, undefined>;
|
|
717
|
+
readonly response_metadata: v.OptionalSchema<v.UnknownSchema, undefined>;
|
|
718
|
+
readonly warning: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
719
|
+
}, undefined>;
|
|
720
|
+
};
|
|
721
|
+
readonly enableUserGroup: {
|
|
722
|
+
readonly id: "SLACK_ENABLE_USER_GROUP";
|
|
723
|
+
readonly label: "Enable a user group";
|
|
724
|
+
readonly description: "Enables a disabled User Group in Slack using its ID, reactivating it for mentions and permissions; this action only changes the enabled status and cannot create new groups or modify other properties.";
|
|
725
|
+
readonly version: "20260721_00";
|
|
726
|
+
readonly input: v.ObjectSchema<{
|
|
727
|
+
readonly include_count: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
728
|
+
readonly team_id: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
729
|
+
readonly usergroup: v.StringSchema<undefined>;
|
|
730
|
+
}, undefined>;
|
|
731
|
+
readonly output: v.LooseObjectSchema<{
|
|
732
|
+
readonly arg: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
733
|
+
readonly error: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
734
|
+
readonly ok: v.BooleanSchema<undefined>;
|
|
735
|
+
readonly response_metadata: v.OptionalSchema<v.UnknownSchema, undefined>;
|
|
736
|
+
readonly usergroup: v.OptionalSchema<v.UnknownSchema, undefined>;
|
|
737
|
+
readonly warning: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
738
|
+
}, undefined>;
|
|
739
|
+
};
|
|
740
|
+
readonly endCall: {
|
|
741
|
+
readonly id: "SLACK_END_CALL";
|
|
742
|
+
readonly label: "End a call";
|
|
743
|
+
readonly description: "Ends an ongoing Slack call, identified by its ID (obtained from `calls.add`), optionally specifying the call's duration.";
|
|
744
|
+
readonly version: "20260721_00";
|
|
745
|
+
readonly input: v.ObjectSchema<{
|
|
746
|
+
readonly duration: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>]>, undefined>;
|
|
747
|
+
readonly id: v.StringSchema<undefined>;
|
|
748
|
+
}, undefined>;
|
|
749
|
+
readonly output: v.LooseObjectSchema<{
|
|
750
|
+
readonly call: v.OptionalSchema<v.UnknownSchema, undefined>;
|
|
751
|
+
readonly error: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
752
|
+
readonly ok: v.BooleanSchema<undefined>;
|
|
753
|
+
readonly response_metadata: v.OptionalSchema<v.UnknownSchema, undefined>;
|
|
754
|
+
readonly warning: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
755
|
+
}, undefined>;
|
|
756
|
+
};
|
|
757
|
+
readonly endDnd: {
|
|
758
|
+
readonly id: "SLACK_END_DND";
|
|
759
|
+
readonly label: "End DND session";
|
|
760
|
+
readonly description: "Ends the authenticated user's current Do Not Disturb (DND) session in Slack, affecting only DND status and making them available; if DND is not active, Slack acknowledges the request without changing status.";
|
|
761
|
+
readonly version: "20260721_00";
|
|
762
|
+
readonly input: v.ObjectSchema<{}, undefined>;
|
|
763
|
+
readonly output: v.LooseObjectSchema<{
|
|
764
|
+
readonly error: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
765
|
+
readonly ok: v.BooleanSchema<undefined>;
|
|
766
|
+
readonly warning: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
767
|
+
}, undefined>;
|
|
768
|
+
};
|
|
769
|
+
readonly endSnooze: {
|
|
770
|
+
readonly id: "SLACK_END_SNOOZE";
|
|
771
|
+
readonly label: "End snooze";
|
|
772
|
+
readonly description: "Ends the current user's snooze mode immediately.";
|
|
773
|
+
readonly version: "20260721_00";
|
|
774
|
+
readonly input: v.ObjectSchema<{}, undefined>;
|
|
775
|
+
readonly output: v.UnknownSchema;
|
|
776
|
+
};
|
|
777
|
+
readonly fetchConversationHistory: {
|
|
778
|
+
readonly id: "SLACK_FETCH_CONVERSATION_HISTORY";
|
|
779
|
+
readonly label: "Fetch conversation history";
|
|
780
|
+
readonly description: "Fetches a chronological list of messages and events from a specified Slack conversation, accessible by the authenticated user/bot, with options for pagination and time range filtering. IMPORTANT LIMITATION: This action only returns messages from the main channel timeline. Threaded replies are NOT returned by this endpoint. To retrieve threaded replies, use the SLACK_FETCH_MESSAGE_THREAD_FROM_A_CONVERSATION action (conversations.replies API) instead. The oldest/latest timestamp filters work reli…";
|
|
781
|
+
readonly version: "20260721_00";
|
|
782
|
+
readonly input: v.ObjectSchema<{
|
|
783
|
+
readonly channel: v.StringSchema<undefined>;
|
|
784
|
+
readonly cursor: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
785
|
+
readonly include_all_metadata: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
786
|
+
readonly inclusive: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
787
|
+
readonly latest: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
788
|
+
readonly limit: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>]>, undefined>;
|
|
789
|
+
readonly oldest: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
790
|
+
}, undefined>;
|
|
791
|
+
readonly output: v.LooseObjectSchema<{
|
|
792
|
+
readonly channel_actions_count: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>]>, undefined>;
|
|
793
|
+
readonly channel_actions_ts: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
794
|
+
readonly composio_execution_message: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
795
|
+
readonly error: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
796
|
+
readonly has_more: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
797
|
+
readonly latest: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
798
|
+
readonly messages: v.OptionalSchema<v.ArraySchema<v.UnknownSchema, undefined>, undefined>;
|
|
799
|
+
readonly ok: v.BooleanSchema<undefined>;
|
|
800
|
+
readonly pin_count: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>]>, undefined>;
|
|
801
|
+
readonly response_metadata: v.OptionalSchema<v.UnknownSchema, undefined>;
|
|
802
|
+
}, undefined>;
|
|
803
|
+
};
|
|
804
|
+
readonly fetchItemReactions: {
|
|
805
|
+
readonly id: "SLACK_FETCH_ITEM_REACTIONS";
|
|
806
|
+
readonly label: "Fetch item reactions";
|
|
807
|
+
readonly description: "Fetches reactions for a Slack message, file, or file comment. Exactly one identifier path must be provided: `channel`+`timestamp`, `file`, or `file_comment`. Mixing identifiers (e.g., providing both `channel`+`timestamp` and `file`) causes errors. If the response omits the `reactions` field, the item has zero reactions.";
|
|
808
|
+
readonly version: "20260721_00";
|
|
809
|
+
readonly input: v.ObjectSchema<{
|
|
810
|
+
readonly channel: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
811
|
+
readonly file: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
812
|
+
readonly file_comment: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
813
|
+
readonly full: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
814
|
+
readonly timestamp: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
815
|
+
}, undefined>;
|
|
816
|
+
readonly output: v.LooseObjectSchema<{
|
|
817
|
+
readonly channel: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
818
|
+
readonly comment: v.OptionalSchema<v.UnknownSchema, undefined>;
|
|
819
|
+
readonly error: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
820
|
+
readonly file: v.OptionalSchema<v.UnknownSchema, undefined>;
|
|
821
|
+
readonly message: v.OptionalSchema<v.UnknownSchema, undefined>;
|
|
822
|
+
readonly ok: v.BooleanSchema<undefined>;
|
|
823
|
+
readonly type: v.OptionalSchema<v.UnionSchema<[v.LiteralSchema<"message", undefined>, v.LiteralSchema<"file", undefined>, v.LiteralSchema<"file_comment", undefined>], undefined>, undefined>;
|
|
824
|
+
}, undefined>;
|
|
825
|
+
};
|
|
826
|
+
readonly fetchMessageThreadFromAConversation: {
|
|
827
|
+
readonly id: "SLACK_FETCH_MESSAGE_THREAD_FROM_A_CONVERSATION";
|
|
828
|
+
readonly label: "Retrieve conversation replies";
|
|
829
|
+
readonly description: "Retrieves replies to a specific parent message in a Slack conversation, using the channel ID and the parent message's timestamp (`ts`). Note: The parent message in the response contains metadata (reply_count, reply_users, latest_reply) that indicates expected thread activity. If the returned messages array contains fewer replies than reply_count indicates, check: (1) has_more=true means pagination is needed, (2) recently posted replies may have timing delays, (3) some replies may be filtered by…";
|
|
830
|
+
readonly version: "20260721_00";
|
|
831
|
+
readonly input: v.ObjectSchema<{
|
|
832
|
+
readonly channel: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
833
|
+
readonly cursor: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
834
|
+
readonly include_all_metadata: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
835
|
+
readonly inclusive: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
836
|
+
readonly latest: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
837
|
+
readonly limit: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>]>, undefined>;
|
|
838
|
+
readonly oldest: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
839
|
+
readonly ts: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
840
|
+
}, undefined>;
|
|
841
|
+
readonly output: v.LooseObjectSchema<{
|
|
842
|
+
readonly composio_execution_message: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
843
|
+
readonly error: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
844
|
+
readonly has_more: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
845
|
+
readonly messages: v.OptionalSchema<v.ArraySchema<v.UnknownSchema, undefined>, undefined>;
|
|
846
|
+
readonly ok: v.BooleanSchema<undefined>;
|
|
847
|
+
readonly response_metadata: v.OptionalSchema<v.UnknownSchema, undefined>;
|
|
848
|
+
}, undefined>;
|
|
849
|
+
};
|
|
850
|
+
readonly fetchTeamInfo: {
|
|
851
|
+
readonly id: "SLACK_FETCH_TEAM_INFO";
|
|
852
|
+
readonly label: "Fetch team info";
|
|
853
|
+
readonly description: "Fetches comprehensive metadata about the current Slack team, or a specified team if the provided ID is accessible.";
|
|
854
|
+
readonly version: "20260721_00";
|
|
855
|
+
readonly input: v.ObjectSchema<{
|
|
856
|
+
readonly domain: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
857
|
+
readonly team: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
858
|
+
}, undefined>;
|
|
859
|
+
readonly output: v.UnknownSchema;
|
|
860
|
+
};
|
|
861
|
+
readonly findChannels: {
|
|
862
|
+
readonly id: "SLACK_FIND_CHANNELS";
|
|
863
|
+
readonly label: "Find channels";
|
|
864
|
+
readonly description: "Find channels in a Slack workspace by any criteria - name, topic, purpose, or description. Returns channel IDs (C*/G* prefixed) required by most Slack tools — always resolve names to IDs here before passing to other tools. NOTE: This action searches channels and conversations visible to the authenticated user. Empty results may indicate: - No channels match the search query in name, topic, or purpose - The target private channel or DM is not accessible to the authenticated user because they are…";
|
|
865
|
+
readonly version: "20260721_00";
|
|
866
|
+
readonly input: v.ObjectSchema<{
|
|
867
|
+
readonly exact_match: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
868
|
+
readonly exclude_archived: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
869
|
+
readonly limit: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>]>, undefined>;
|
|
870
|
+
readonly member_only: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
871
|
+
readonly query: v.StringSchema<undefined>;
|
|
872
|
+
readonly team_id: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
873
|
+
readonly types: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
874
|
+
}, undefined>;
|
|
875
|
+
readonly output: v.LooseObjectSchema<{
|
|
876
|
+
readonly channels: v.ArraySchema<v.UnknownSchema, undefined>;
|
|
877
|
+
readonly composio_execution_message: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
878
|
+
readonly ok: v.BooleanSchema<undefined>;
|
|
879
|
+
readonly total_channels_searched: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>]>, undefined>;
|
|
880
|
+
}, undefined>;
|
|
881
|
+
};
|
|
882
|
+
readonly findUsers: {
|
|
883
|
+
readonly id: "SLACK_FIND_USERS";
|
|
884
|
+
readonly label: "Find users";
|
|
885
|
+
readonly description: "Find users in a Slack workspace by any criteria - email, name, display name, or other text. Includes optimized email lookup for exact email matches. Zero results may reflect email visibility restrictions or workspace policies, not global absence. Repeated calls may trigger HTTP 429; honor the Retry-After header.";
|
|
886
|
+
readonly version: "20260721_00";
|
|
887
|
+
readonly input: v.ObjectSchema<{
|
|
888
|
+
readonly email: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
889
|
+
readonly exact_match: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
890
|
+
readonly include_bots: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
891
|
+
readonly include_deleted: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
892
|
+
readonly include_locale: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
893
|
+
readonly include_restricted: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
894
|
+
readonly limit: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>]>, undefined>;
|
|
895
|
+
readonly search_query: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
896
|
+
readonly team_id: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
897
|
+
}, undefined>;
|
|
898
|
+
readonly output: v.LooseObjectSchema<{
|
|
899
|
+
readonly composio_execution_message: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
900
|
+
readonly error: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
901
|
+
readonly members: v.OptionalSchema<v.ArraySchema<v.UnknownSchema, undefined>, undefined>;
|
|
902
|
+
readonly needed: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
903
|
+
readonly ok: v.BooleanSchema<undefined>;
|
|
904
|
+
readonly provided: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
905
|
+
}, undefined>;
|
|
906
|
+
};
|
|
907
|
+
readonly findUserByEmailAddress: {
|
|
908
|
+
readonly id: "SLACK_FIND_USER_BY_EMAIL_ADDRESS";
|
|
909
|
+
readonly label: "Lookup users by email";
|
|
910
|
+
readonly description: "Retrieves the Slack user object for an active user by their registered email address; requires the users:read.email OAuth scope. Fails with 'users_not_found' if the email is unregistered, the user is inactive, the account is a guest, or the email is hidden by workspace privacy settings.";
|
|
911
|
+
readonly version: "20260721_00";
|
|
912
|
+
readonly input: v.ObjectSchema<{
|
|
913
|
+
readonly email: v.StringSchema<undefined>;
|
|
914
|
+
}, undefined>;
|
|
915
|
+
readonly output: v.LooseObjectSchema<{
|
|
916
|
+
readonly error: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
917
|
+
readonly ok: v.BooleanSchema<undefined>;
|
|
918
|
+
readonly user: v.OptionalSchema<v.UnknownSchema, undefined>;
|
|
919
|
+
}, undefined>;
|
|
920
|
+
};
|
|
921
|
+
readonly getAuditActionTypes: {
|
|
922
|
+
readonly id: "SLACK_GET_AUDIT_ACTION_TYPES";
|
|
923
|
+
readonly label: "Get Audit Action Types";
|
|
924
|
+
readonly description: "Tool to retrieve information about action types available in the Slack Audit Logs API. Use when you need to know which action types can be used to filter audit logs or understand the categories of auditable actions in Slack.";
|
|
925
|
+
readonly version: "20260721_00";
|
|
926
|
+
readonly input: v.ObjectSchema<{}, undefined>;
|
|
927
|
+
readonly output: v.LooseObjectSchema<{
|
|
928
|
+
readonly actions: v.UnknownSchema;
|
|
929
|
+
}, undefined>;
|
|
930
|
+
};
|
|
931
|
+
readonly getAuditSchemas: {
|
|
932
|
+
readonly id: "SLACK_GET_AUDIT_SCHEMAS";
|
|
933
|
+
readonly label: "Get Audit Schemas";
|
|
934
|
+
readonly description: "Tool to retrieve object schema information from the Slack Audit Logs API. Use when you need to understand the types of objects returned by audit log endpoints. Returns a list of all object types with descriptions.";
|
|
935
|
+
readonly version: "20260721_00";
|
|
936
|
+
readonly input: v.ObjectSchema<{}, undefined>;
|
|
937
|
+
readonly output: v.LooseObjectSchema<{
|
|
938
|
+
readonly error: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
939
|
+
readonly ok: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
940
|
+
readonly schemas: v.OptionalSchema<v.ArraySchema<v.UnknownSchema, undefined>, undefined>;
|
|
941
|
+
}, undefined>;
|
|
942
|
+
};
|
|
943
|
+
readonly getBotUser: {
|
|
944
|
+
readonly id: "SLACK_GET_BOT_USER";
|
|
945
|
+
readonly label: "Fetch bot user information";
|
|
946
|
+
readonly description: "Fetches information for a specified, existing Slack bot user; will not work for regular user accounts or other integration types.";
|
|
947
|
+
readonly version: "20260721_00";
|
|
948
|
+
readonly input: v.ObjectSchema<{
|
|
949
|
+
readonly bot: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
950
|
+
readonly team_id: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
951
|
+
}, undefined>;
|
|
952
|
+
readonly output: v.UnknownSchema;
|
|
953
|
+
};
|
|
954
|
+
readonly getCallInfo: {
|
|
955
|
+
readonly id: "SLACK_GET_CALL_INFO";
|
|
956
|
+
readonly label: "Retrieve call information";
|
|
957
|
+
readonly description: "Retrieves a point-in-time snapshot of a specific Slack call's information.";
|
|
958
|
+
readonly version: "20260721_00";
|
|
959
|
+
readonly input: v.ObjectSchema<{
|
|
960
|
+
readonly id: v.StringSchema<undefined>;
|
|
961
|
+
}, undefined>;
|
|
962
|
+
readonly output: v.UnknownSchema;
|
|
963
|
+
};
|
|
964
|
+
readonly getChannelConversationPreferences: {
|
|
965
|
+
readonly id: "SLACK_GET_CHANNEL_CONVERSATION_PREFERENCES";
|
|
966
|
+
readonly label: "Get channel conversation preferences";
|
|
967
|
+
readonly description: "Retrieves conversation preferences (e.g., who can post, who can thread) for a specified channel, primarily for use within Slack Enterprise Grid environments.";
|
|
968
|
+
readonly version: "20260721_00";
|
|
969
|
+
readonly input: v.ObjectSchema<{
|
|
970
|
+
readonly channel_id: v.StringSchema<undefined>;
|
|
971
|
+
}, undefined>;
|
|
972
|
+
readonly output: v.LooseObjectSchema<{
|
|
973
|
+
readonly error: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
974
|
+
readonly needed: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
975
|
+
readonly ok: v.BooleanSchema<undefined>;
|
|
976
|
+
readonly prefs: v.OptionalSchema<v.UnknownSchema, undefined>;
|
|
977
|
+
readonly provided: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
978
|
+
}, undefined>;
|
|
979
|
+
};
|
|
980
|
+
readonly getReminder: {
|
|
981
|
+
readonly id: "SLACK_GET_REMINDER";
|
|
982
|
+
readonly label: "Get reminder information";
|
|
983
|
+
readonly description: "Retrieves detailed information for an existing Slack reminder specified by its ID; this is a read-only operation.";
|
|
984
|
+
readonly version: "20260721_00";
|
|
985
|
+
readonly input: v.ObjectSchema<{
|
|
986
|
+
readonly reminder: v.StringSchema<undefined>;
|
|
987
|
+
readonly team_id: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
988
|
+
}, undefined>;
|
|
989
|
+
readonly output: v.LooseObjectSchema<{
|
|
990
|
+
readonly error: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
991
|
+
readonly ok: v.BooleanSchema<undefined>;
|
|
992
|
+
readonly reminder: v.OptionalSchema<v.UnknownSchema, undefined>;
|
|
993
|
+
}, undefined>;
|
|
994
|
+
};
|
|
995
|
+
readonly getRemoteFile: {
|
|
996
|
+
readonly id: "SLACK_GET_REMOTE_FILE";
|
|
997
|
+
readonly label: "Get remote file";
|
|
998
|
+
readonly description: "Retrieve information about a remote file added to Slack via the files.remote API. Does not work for standard Slack-hosted file uploads.";
|
|
999
|
+
readonly version: "20260721_00";
|
|
1000
|
+
readonly input: v.ObjectSchema<{
|
|
1001
|
+
readonly external_id: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1002
|
+
readonly file: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1003
|
+
}, undefined>;
|
|
1004
|
+
readonly output: v.LooseObjectSchema<{
|
|
1005
|
+
readonly error: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1006
|
+
readonly file: v.OptionalSchema<v.UnknownSchema, undefined>;
|
|
1007
|
+
readonly needed: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1008
|
+
readonly ok: v.BooleanSchema<undefined>;
|
|
1009
|
+
readonly provided: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1010
|
+
readonly response_metadata: v.OptionalSchema<v.UnknownSchema, undefined>;
|
|
1011
|
+
readonly warning: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1012
|
+
readonly warnings: v.OptionalSchema<v.ArraySchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
1013
|
+
}, undefined>;
|
|
1014
|
+
};
|
|
1015
|
+
readonly getSlackListItem: {
|
|
1016
|
+
readonly id: "SLACK_GET_SLACK_LIST_ITEM";
|
|
1017
|
+
readonly label: "Get Slack List item";
|
|
1018
|
+
readonly description: "Fetches a single item (row) from a Slack List via `slackLists.items.info`. Returns the row's `column_id`-keyed typed values along with metadata about the parent List. Set `include_is_subscribed` to also report whether the calling user is subscribed to the row. Requires a user token with the `lists:read` scope.";
|
|
1019
|
+
readonly version: "20260721_00";
|
|
1020
|
+
readonly input: v.ObjectSchema<{
|
|
1021
|
+
readonly id: v.StringSchema<undefined>;
|
|
1022
|
+
readonly include_is_subscribed: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
1023
|
+
readonly list_id: v.StringSchema<undefined>;
|
|
1024
|
+
}, undefined>;
|
|
1025
|
+
readonly output: v.LooseObjectSchema<{
|
|
1026
|
+
readonly error: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1027
|
+
readonly list: v.OptionalSchema<v.UnknownSchema, undefined>;
|
|
1028
|
+
readonly list_limits: v.OptionalSchema<v.UnknownSchema, undefined>;
|
|
1029
|
+
readonly needed: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1030
|
+
readonly ok: v.BooleanSchema<undefined>;
|
|
1031
|
+
readonly provided: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1032
|
+
readonly record: v.OptionalSchema<v.UnknownSchema, undefined>;
|
|
1033
|
+
readonly response_metadata: v.OptionalSchema<v.UnknownSchema, undefined>;
|
|
1034
|
+
readonly subtasks: v.OptionalSchema<v.ArraySchema<v.UnknownSchema, undefined>, undefined>;
|
|
1035
|
+
readonly warning: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1036
|
+
}, undefined>;
|
|
1037
|
+
};
|
|
1038
|
+
readonly getTeamProfile: {
|
|
1039
|
+
readonly id: "SLACK_GET_TEAM_PROFILE";
|
|
1040
|
+
readonly label: "Retrieve team profile details";
|
|
1041
|
+
readonly description: "Retrieves all profile field definitions for a Slack team, optionally filtered by visibility, to understand the team's profile structure.";
|
|
1042
|
+
readonly version: "20260721_00";
|
|
1043
|
+
readonly input: v.ObjectSchema<{
|
|
1044
|
+
readonly team_id: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1045
|
+
readonly visibility: v.OptionalSchema<v.UnionSchema<[v.LiteralSchema<"all", undefined>, v.LiteralSchema<"visible", undefined>, v.LiteralSchema<"hidden", undefined>], undefined>, undefined>;
|
|
1046
|
+
}, undefined>;
|
|
1047
|
+
readonly output: v.LooseObjectSchema<{
|
|
1048
|
+
readonly error: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1049
|
+
readonly needed: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1050
|
+
readonly ok: v.BooleanSchema<undefined>;
|
|
1051
|
+
readonly profile: v.OptionalSchema<v.UnknownSchema, undefined>;
|
|
1052
|
+
readonly provided: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1053
|
+
readonly response_metadata: v.OptionalSchema<v.UnknownSchema, undefined>;
|
|
1054
|
+
}, undefined>;
|
|
1055
|
+
};
|
|
1056
|
+
readonly getUnreadMessagesFromUser: {
|
|
1057
|
+
readonly id: "SLACK_GET_UNREAD_MESSAGES_FROM_USER";
|
|
1058
|
+
readonly label: "Get unread messages from user";
|
|
1059
|
+
readonly description: "Retrieves unread direct messages from a specific user by opening their DM conversation, checking for unread messages, and fetching message history since the last read timestamp. Use this action when you need to check if a specific user has sent unread direct messages to the authenticated user, or when monitoring incoming DMs from particular users. Returns an empty messages array if there are no unread messages from the specified user. Note: This action only works for direct messages (DMs), not …";
|
|
1060
|
+
readonly version: "20260721_00";
|
|
1061
|
+
readonly input: v.ObjectSchema<{
|
|
1062
|
+
readonly limit: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>]>, undefined>;
|
|
1063
|
+
readonly user_id: v.StringSchema<undefined>;
|
|
1064
|
+
}, undefined>;
|
|
1065
|
+
readonly output: v.LooseObjectSchema<{
|
|
1066
|
+
readonly channel_id: v.StringSchema<undefined>;
|
|
1067
|
+
readonly error: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1068
|
+
readonly has_more: v.BooleanSchema<undefined>;
|
|
1069
|
+
readonly messages: v.ArraySchema<v.UnknownSchema, undefined>;
|
|
1070
|
+
readonly ok: v.BooleanSchema<undefined>;
|
|
1071
|
+
readonly unread_count: v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>]>;
|
|
1072
|
+
readonly user_id: v.StringSchema<undefined>;
|
|
1073
|
+
}, undefined>;
|
|
1074
|
+
};
|
|
1075
|
+
readonly getUserDndStatus: {
|
|
1076
|
+
readonly id: "SLACK_GET_USER_DND_STATUS";
|
|
1077
|
+
readonly label: "Get team DND status";
|
|
1078
|
+
readonly description: "Retrieves a user's current Do Not Disturb status.";
|
|
1079
|
+
readonly version: "20260721_00";
|
|
1080
|
+
readonly input: v.ObjectSchema<{
|
|
1081
|
+
readonly team_id: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1082
|
+
readonly users: v.StringSchema<undefined>;
|
|
1083
|
+
}, undefined>;
|
|
1084
|
+
readonly output: v.UnknownSchema;
|
|
1085
|
+
};
|
|
1086
|
+
readonly getUserPresence: {
|
|
1087
|
+
readonly id: "SLACK_GET_USER_PRESENCE";
|
|
1088
|
+
readonly label: "Retrieve user presence";
|
|
1089
|
+
readonly description: "Retrieves a Slack user's current real-time presence (e.g., 'active', 'away') to determine their availability, noting this action does not provide historical data or status reasons.";
|
|
1090
|
+
readonly version: "20260721_00";
|
|
1091
|
+
readonly input: v.ObjectSchema<{
|
|
1092
|
+
readonly user: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1093
|
+
}, undefined>;
|
|
1094
|
+
readonly output: v.LooseObjectSchema<{
|
|
1095
|
+
readonly auto_away: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
1096
|
+
readonly connection_count: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>]>, undefined>;
|
|
1097
|
+
readonly error: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1098
|
+
readonly last_activity: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>]>, undefined>;
|
|
1099
|
+
readonly manual_away: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
1100
|
+
readonly ok: v.BooleanSchema<undefined>;
|
|
1101
|
+
readonly online: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
1102
|
+
readonly presence: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1103
|
+
}, undefined>;
|
|
1104
|
+
};
|
|
1105
|
+
readonly getWorkspaceConnectionsForChannel: {
|
|
1106
|
+
readonly id: "SLACK_GET_WORKSPACE_CONNECTIONS_FOR_CHANNEL";
|
|
1107
|
+
readonly label: "Get workspace connections for channel";
|
|
1108
|
+
readonly description: "Tool to get all workspaces a channel is connected to within an Enterprise org. Use when you need to determine which workspaces have access to a specific public or private channel in an Enterprise Grid organization.";
|
|
1109
|
+
readonly version: "20260721_00";
|
|
1110
|
+
readonly input: v.ObjectSchema<{
|
|
1111
|
+
readonly channel_id: v.StringSchema<undefined>;
|
|
1112
|
+
readonly cursor: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1113
|
+
readonly limit: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>]>, undefined>;
|
|
1114
|
+
}, undefined>;
|
|
1115
|
+
readonly output: v.LooseObjectSchema<{
|
|
1116
|
+
readonly error: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1117
|
+
readonly ok: v.BooleanSchema<undefined>;
|
|
1118
|
+
readonly response_metadata: v.OptionalSchema<v.UnknownSchema, undefined>;
|
|
1119
|
+
readonly team_ids: v.OptionalSchema<v.ArraySchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
1120
|
+
}, undefined>;
|
|
1121
|
+
};
|
|
1122
|
+
readonly getWorkspaceSettings: {
|
|
1123
|
+
readonly id: "SLACK_GET_WORKSPACE_SETTINGS";
|
|
1124
|
+
readonly label: "Fetch workspace settings information";
|
|
1125
|
+
readonly description: "Retrieves detailed settings for a specific Slack workspace, primarily for administrators in an Enterprise Grid organization to view or audit workspace configurations.";
|
|
1126
|
+
readonly version: "20260721_00";
|
|
1127
|
+
readonly input: v.ObjectSchema<{
|
|
1128
|
+
readonly team_id: v.StringSchema<undefined>;
|
|
1129
|
+
}, undefined>;
|
|
1130
|
+
readonly output: v.UnknownSchema;
|
|
1131
|
+
};
|
|
1132
|
+
readonly inviteUsersToASlackChannel: {
|
|
1133
|
+
readonly id: "SLACK_INVITE_USERS_TO_A_SLACK_CHANNEL";
|
|
1134
|
+
readonly label: "Invite users to a Slack channel";
|
|
1135
|
+
readonly description: "Invites users to an existing Slack channel using their valid Slack User IDs. Response is always HTTP 200; inspect `ok`, `error`, and `errors` fields to confirm users were added.";
|
|
1136
|
+
readonly version: "20260721_00";
|
|
1137
|
+
readonly input: v.ObjectSchema<{
|
|
1138
|
+
readonly channel: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1139
|
+
readonly force: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
1140
|
+
readonly users: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1141
|
+
}, undefined>;
|
|
1142
|
+
readonly output: v.LooseObjectSchema<{
|
|
1143
|
+
readonly channel: v.OptionalSchema<v.UnknownSchema, undefined>;
|
|
1144
|
+
readonly error: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1145
|
+
readonly errors: v.OptionalSchema<v.ArraySchema<v.UnknownSchema, undefined>, undefined>;
|
|
1146
|
+
readonly needed: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1147
|
+
readonly ok: v.BooleanSchema<undefined>;
|
|
1148
|
+
readonly provided: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1149
|
+
readonly response_metadata: v.OptionalSchema<v.UnknownSchema, undefined>;
|
|
1150
|
+
readonly warning: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1151
|
+
readonly warnings: v.OptionalSchema<v.ArraySchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
1152
|
+
}, undefined>;
|
|
1153
|
+
};
|
|
1154
|
+
readonly inviteUserToChannel: {
|
|
1155
|
+
readonly id: "SLACK_INVITE_USER_TO_CHANNEL";
|
|
1156
|
+
readonly label: "Invite users to channel";
|
|
1157
|
+
readonly description: "Invites users to a specified Slack channel; this action is restricted to Enterprise Grid workspaces and requires the authenticated user to be a member of the target channel.";
|
|
1158
|
+
readonly version: "20260721_00";
|
|
1159
|
+
readonly input: v.ObjectSchema<{
|
|
1160
|
+
readonly channel_id: v.StringSchema<undefined>;
|
|
1161
|
+
readonly user_ids: v.StringSchema<undefined>;
|
|
1162
|
+
}, undefined>;
|
|
1163
|
+
readonly output: v.LooseObjectSchema<{
|
|
1164
|
+
readonly channel: v.OptionalSchema<v.UnknownSchema, undefined>;
|
|
1165
|
+
readonly error: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1166
|
+
readonly errors: v.OptionalSchema<v.ArraySchema<v.UnknownSchema, undefined>, undefined>;
|
|
1167
|
+
readonly ok: v.BooleanSchema<undefined>;
|
|
1168
|
+
}, undefined>;
|
|
1169
|
+
};
|
|
1170
|
+
readonly inviteUserToWorkspace: {
|
|
1171
|
+
readonly id: "SLACK_INVITE_USER_TO_WORKSPACE";
|
|
1172
|
+
readonly label: "Invite user to workspace";
|
|
1173
|
+
readonly description: "Invites a user to a Slack workspace and specified channels by email; use `resend=True` to re-process an existing invitation for a user not yet signed up.";
|
|
1174
|
+
readonly version: "20260721_00";
|
|
1175
|
+
readonly input: v.ObjectSchema<{
|
|
1176
|
+
readonly channel_ids: v.StringSchema<undefined>;
|
|
1177
|
+
readonly custom_message: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1178
|
+
readonly email: v.StringSchema<undefined>;
|
|
1179
|
+
readonly email_password_policy_enabled: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
1180
|
+
readonly guest_expiration_ts: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1181
|
+
readonly is_restricted: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
1182
|
+
readonly is_ultra_restricted: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
1183
|
+
readonly real_name: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1184
|
+
readonly resend: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
1185
|
+
readonly team_id: v.StringSchema<undefined>;
|
|
1186
|
+
}, undefined>;
|
|
1187
|
+
readonly output: v.LooseObjectSchema<{
|
|
1188
|
+
readonly error: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1189
|
+
readonly needed: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1190
|
+
readonly ok: v.BooleanSchema<undefined>;
|
|
1191
|
+
readonly provided: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1192
|
+
readonly response_metadata: v.OptionalSchema<v.UnknownSchema, undefined>;
|
|
1193
|
+
readonly user_id: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1194
|
+
readonly warning: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1195
|
+
}, undefined>;
|
|
1196
|
+
};
|
|
1197
|
+
readonly joinAnExistingConversation: {
|
|
1198
|
+
readonly id: "SLACK_JOIN_AN_EXISTING_CONVERSATION";
|
|
1199
|
+
readonly label: "Join conversation by channel id";
|
|
1200
|
+
readonly description: "Joins an existing Slack conversation (public channel, private channel, or multi-person direct message) by its ID, if the authenticated user has permission. Joining an already-joined channel returns a non-fatal no-op response. Private or restricted channel joins may fail with a permission error.";
|
|
1201
|
+
readonly version: "20260721_00";
|
|
1202
|
+
readonly input: v.ObjectSchema<{
|
|
1203
|
+
readonly channel: v.StringSchema<undefined>;
|
|
1204
|
+
}, undefined>;
|
|
1205
|
+
readonly output: v.LooseObjectSchema<{
|
|
1206
|
+
readonly channel: v.OptionalSchema<v.UnknownSchema, undefined>;
|
|
1207
|
+
readonly error: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1208
|
+
readonly needed: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1209
|
+
readonly ok: v.BooleanSchema<undefined>;
|
|
1210
|
+
readonly provided: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1211
|
+
readonly response_metadata: v.OptionalSchema<v.UnknownSchema, undefined>;
|
|
1212
|
+
readonly warning: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1213
|
+
}, undefined>;
|
|
1214
|
+
};
|
|
1215
|
+
readonly leaveConversation: {
|
|
1216
|
+
readonly id: "SLACK_LEAVE_CONVERSATION";
|
|
1217
|
+
readonly label: "Leave conversation channel";
|
|
1218
|
+
readonly description: "Leaves a Slack conversation given its channel ID; fails if leaving as the last member of a private channel or if used on a Slack Connect channel.";
|
|
1219
|
+
readonly version: "20260721_00";
|
|
1220
|
+
readonly input: v.ObjectSchema<{
|
|
1221
|
+
readonly channel: v.StringSchema<undefined>;
|
|
1222
|
+
}, undefined>;
|
|
1223
|
+
readonly output: v.LooseObjectSchema<{
|
|
1224
|
+
readonly error: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1225
|
+
readonly not_in_channel: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
1226
|
+
readonly ok: v.BooleanSchema<undefined>;
|
|
1227
|
+
readonly response_metadata: v.OptionalSchema<v.UnknownSchema, undefined>;
|
|
1228
|
+
readonly warning: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1229
|
+
}, undefined>;
|
|
1230
|
+
};
|
|
1231
|
+
readonly listAdminAppsApproved: {
|
|
1232
|
+
readonly id: "SLACK_LIST_ADMIN_APPS_APPROVED";
|
|
1233
|
+
readonly label: "List approved apps";
|
|
1234
|
+
readonly description: "Tool to list approved apps for an Enterprise Grid organization or workspace. Use when you need to retrieve the list of apps that have been approved for installation by workspace admins. Requires admin.apps:read scope and a user token from an org owner/admin context.";
|
|
1235
|
+
readonly version: "20260721_00";
|
|
1236
|
+
readonly input: v.ObjectSchema<{
|
|
1237
|
+
readonly certified: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
1238
|
+
readonly cursor: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1239
|
+
readonly enterprise_id: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1240
|
+
readonly limit: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>]>, undefined>;
|
|
1241
|
+
readonly team_id: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1242
|
+
}, undefined>;
|
|
1243
|
+
readonly output: v.LooseObjectSchema<{
|
|
1244
|
+
readonly approved_apps: v.OptionalSchema<v.ArraySchema<v.UnknownSchema, undefined>, undefined>;
|
|
1245
|
+
readonly error: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1246
|
+
readonly needed: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1247
|
+
readonly ok: v.BooleanSchema<undefined>;
|
|
1248
|
+
readonly provided: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1249
|
+
readonly response_metadata: v.OptionalSchema<v.UnknownSchema, undefined>;
|
|
1250
|
+
}, undefined>;
|
|
1251
|
+
};
|
|
1252
|
+
readonly listAdminAppsRequests: {
|
|
1253
|
+
readonly id: "SLACK_LIST_ADMIN_APPS_REQUESTS";
|
|
1254
|
+
readonly label: "List app requests";
|
|
1255
|
+
readonly description: "Tool to list pending app installation requests for a team/workspace. Use when you need to see which apps users have requested to install that haven't yet been approved or denied. Requires Enterprise Grid or Business+ plan with admin.apps:read scope.";
|
|
1256
|
+
readonly version: "20260721_00";
|
|
1257
|
+
readonly input: v.ObjectSchema<{
|
|
1258
|
+
readonly certified: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
1259
|
+
readonly cursor: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1260
|
+
readonly enterprise_id: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1261
|
+
readonly limit: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>]>, undefined>;
|
|
1262
|
+
readonly team_id: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1263
|
+
}, undefined>;
|
|
1264
|
+
readonly output: v.LooseObjectSchema<{
|
|
1265
|
+
readonly app_requests: v.OptionalSchema<v.ArraySchema<v.UnknownSchema, undefined>, undefined>;
|
|
1266
|
+
readonly error: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1267
|
+
readonly needed: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1268
|
+
readonly ok: v.BooleanSchema<undefined>;
|
|
1269
|
+
readonly provided: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1270
|
+
readonly response_metadata: v.OptionalSchema<v.UnknownSchema, undefined>;
|
|
1271
|
+
}, undefined>;
|
|
1272
|
+
};
|
|
1273
|
+
readonly listAdminEmoji: {
|
|
1274
|
+
readonly id: "SLACK_LIST_ADMIN_EMOJI";
|
|
1275
|
+
readonly label: "List admin emoji";
|
|
1276
|
+
readonly description: "List custom emoji across an Enterprise Grid organization. Use when you need to retrieve all custom emoji for an entire Enterprise Grid org (not just a single workspace). Requires admin.teams:read scope and an admin token. For single workspace emoji, use the regular emoji.list method instead.";
|
|
1277
|
+
readonly version: "20260721_00";
|
|
1278
|
+
readonly input: v.ObjectSchema<{
|
|
1279
|
+
readonly cursor: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1280
|
+
readonly limit: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>]>, undefined>;
|
|
1281
|
+
}, undefined>;
|
|
1282
|
+
readonly output: v.LooseObjectSchema<{
|
|
1283
|
+
readonly cache_ts: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1284
|
+
readonly cursor: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1285
|
+
readonly emoji: v.OptionalSchema<v.UnknownSchema, undefined>;
|
|
1286
|
+
readonly error: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1287
|
+
readonly needed: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1288
|
+
readonly ok: v.BooleanSchema<undefined>;
|
|
1289
|
+
readonly provided: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1290
|
+
readonly response_metadata: v.OptionalSchema<v.UnknownSchema, undefined>;
|
|
1291
|
+
}, undefined>;
|
|
1292
|
+
};
|
|
1293
|
+
readonly listAllChannels: {
|
|
1294
|
+
readonly id: "SLACK_LIST_ALL_CHANNELS";
|
|
1295
|
+
readonly label: "List all channels";
|
|
1296
|
+
readonly description: "Lists conversations available to the user with various filters and search options. Always use resolved `channel_id` (not display names) for downstream operations, as names may be non-unique. The `created` field in results is a Unix epoch timestamp (UTC). Pagination across large workspaces may return HTTP 429 with a `Retry-After` header; honor the delay and resume from the last successful cursor.";
|
|
1297
|
+
readonly version: "20260721_00";
|
|
1298
|
+
readonly input: v.ObjectSchema<{
|
|
1299
|
+
readonly cursor: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1300
|
+
readonly exclude_archived: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
1301
|
+
readonly limit: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>]>, undefined>;
|
|
1302
|
+
readonly team_id: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1303
|
+
readonly types: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1304
|
+
}, undefined>;
|
|
1305
|
+
readonly output: v.LooseObjectSchema<{
|
|
1306
|
+
readonly channels: v.OptionalSchema<v.ArraySchema<v.UnknownSchema, undefined>, undefined>;
|
|
1307
|
+
readonly error: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1308
|
+
readonly needed: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1309
|
+
readonly ok: v.BooleanSchema<undefined>;
|
|
1310
|
+
readonly provided: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1311
|
+
readonly response_metadata: v.OptionalSchema<v.UnknownSchema, undefined>;
|
|
1312
|
+
}, undefined>;
|
|
1313
|
+
};
|
|
1314
|
+
readonly listAllUsers: {
|
|
1315
|
+
readonly id: "SLACK_LIST_ALL_USERS";
|
|
1316
|
+
readonly label: "List all users";
|
|
1317
|
+
readonly description: "Retrieves a paginated list of all users with profile details, status, and team memberships in a Slack workspace; data may not be real-time. Filter response fields `is_bot`, `is_app_user`, and `deleted` to build human-only rosters. Profile fields like `email` and `phone` may be absent depending on OAuth scopes and workspace privacy settings. Guest/restricted accounts may be omitted based on scopes—do not treat results as a complete directory. High-frequency calls risk HTTP 429; honor the `Retry-…";
|
|
1318
|
+
readonly version: "20260721_00";
|
|
1319
|
+
readonly input: v.ObjectSchema<{
|
|
1320
|
+
readonly cursor: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1321
|
+
readonly include_locale: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
1322
|
+
readonly limit: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>]>, undefined>;
|
|
1323
|
+
readonly team_id: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1324
|
+
}, undefined>;
|
|
1325
|
+
readonly output: v.LooseObjectSchema<{
|
|
1326
|
+
readonly cache_ts: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>]>, undefined>;
|
|
1327
|
+
readonly error: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1328
|
+
readonly members: v.OptionalSchema<v.ArraySchema<v.UnknownSchema, undefined>, undefined>;
|
|
1329
|
+
readonly needed: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1330
|
+
readonly ok: v.BooleanSchema<undefined>;
|
|
1331
|
+
readonly provided: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1332
|
+
readonly response_metadata: v.OptionalSchema<v.UnknownSchema, undefined>;
|
|
1333
|
+
readonly warning: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1334
|
+
readonly warnings: v.OptionalSchema<v.ArraySchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
1335
|
+
}, undefined>;
|
|
1336
|
+
};
|
|
1337
|
+
readonly listApprovedWorkspaceInviteRequests: {
|
|
1338
|
+
readonly id: "SLACK_LIST_APPROVED_WORKSPACE_INVITE_REQUESTS";
|
|
1339
|
+
readonly label: "List approved workspace invite requests";
|
|
1340
|
+
readonly description: "List all approved workspace invite requests with pagination support. Use to review which invite requests have been approved and the details of each approval. Requires admin.invites:read scope and Enterprise Grid organization.";
|
|
1341
|
+
readonly version: "20260721_00";
|
|
1342
|
+
readonly input: v.ObjectSchema<{
|
|
1343
|
+
readonly cursor: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1344
|
+
readonly limit: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>]>, undefined>;
|
|
1345
|
+
readonly team_id: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1346
|
+
}, undefined>;
|
|
1347
|
+
readonly output: v.LooseObjectSchema<{
|
|
1348
|
+
readonly approved_requests: v.OptionalSchema<v.ArraySchema<v.UnknownSchema, undefined>, undefined>;
|
|
1349
|
+
readonly error: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1350
|
+
readonly needed: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1351
|
+
readonly ok: v.BooleanSchema<undefined>;
|
|
1352
|
+
readonly provided: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1353
|
+
readonly response_metadata: v.OptionalSchema<v.UnknownSchema, undefined>;
|
|
1354
|
+
}, undefined>;
|
|
1355
|
+
};
|
|
1356
|
+
readonly listAuthTeams: {
|
|
1357
|
+
readonly id: "SLACK_LIST_AUTH_TEAMS";
|
|
1358
|
+
readonly label: "List authorized teams";
|
|
1359
|
+
readonly description: "Obtains a paginated list of workspaces your org-wide app has been approved for. Use when you need to discover all workspaces within an organization where the app is installed.";
|
|
1360
|
+
readonly version: "20260721_00";
|
|
1361
|
+
readonly input: v.ObjectSchema<{
|
|
1362
|
+
readonly cursor: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1363
|
+
readonly include_icon: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
1364
|
+
readonly limit: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>]>, undefined>;
|
|
1365
|
+
}, undefined>;
|
|
1366
|
+
readonly output: v.LooseObjectSchema<{
|
|
1367
|
+
readonly error: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1368
|
+
readonly needed: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1369
|
+
readonly ok: v.BooleanSchema<undefined>;
|
|
1370
|
+
readonly provided: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1371
|
+
readonly response_metadata: v.OptionalSchema<v.UnknownSchema, undefined>;
|
|
1372
|
+
readonly teams: v.OptionalSchema<v.ArraySchema<v.UnknownSchema, undefined>, undefined>;
|
|
1373
|
+
}, undefined>;
|
|
1374
|
+
};
|
|
1375
|
+
readonly listAvailableWorkspaces: {
|
|
1376
|
+
readonly id: "SLACK_LIST_AVAILABLE_WORKSPACES";
|
|
1377
|
+
readonly label: "List available workspaces";
|
|
1378
|
+
readonly description: "List Slack workspaces where both the connection and target user have access. Returns each workspace's team_id and name. Use this when: (1) the user references a workspace by name, (2) a user-specific tool requires team_id and you don't have one, or (3) a user-specific call fails with a team/workspace access error. Match the user's workspace name to a team_id from the results and pass that team_id to subsequent tools. If the name matches zero or multiple workspaces, ask the user to clarify. Only…";
|
|
1379
|
+
readonly version: "20260721_00";
|
|
1380
|
+
readonly input: v.ObjectSchema<{
|
|
1381
|
+
readonly user: v.StringSchema<undefined>;
|
|
1382
|
+
}, undefined>;
|
|
1383
|
+
readonly output: v.LooseObjectSchema<{
|
|
1384
|
+
readonly available_workspaces: v.ArraySchema<v.UnknownSchema, undefined>;
|
|
1385
|
+
readonly composio_execution_message: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1386
|
+
readonly error: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1387
|
+
readonly ok: v.BooleanSchema<undefined>;
|
|
1388
|
+
readonly total_count: v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>]>;
|
|
1389
|
+
}, undefined>;
|
|
1390
|
+
};
|
|
1391
|
+
readonly listConversations: {
|
|
1392
|
+
readonly id: "SLACK_LIST_CONVERSATIONS";
|
|
1393
|
+
readonly label: "List conversations";
|
|
1394
|
+
readonly description: "List conversations (channels/DMs) accessible to a specified user (or the authenticated user if no user ID is provided), respecting shared membership for non-public channels. Returns conversation IDs (C* for channels, G* for group DMs), not display names. Absence of private channels, DMs, or MPIMs from results indicates token scope or membership limits, not that the conversation is nonexistent.";
|
|
1395
|
+
readonly version: "20260721_00";
|
|
1396
|
+
readonly input: v.ObjectSchema<{
|
|
1397
|
+
readonly cursor: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1398
|
+
readonly exclude_archived: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
1399
|
+
readonly limit: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>]>, undefined>;
|
|
1400
|
+
readonly team_id: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1401
|
+
readonly types: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1402
|
+
readonly user: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1403
|
+
}, undefined>;
|
|
1404
|
+
readonly output: v.LooseObjectSchema<{
|
|
1405
|
+
readonly channels: v.OptionalSchema<v.ArraySchema<v.UnknownSchema, undefined>, undefined>;
|
|
1406
|
+
readonly error: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1407
|
+
readonly needed: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1408
|
+
readonly ok: v.BooleanSchema<undefined>;
|
|
1409
|
+
readonly provided: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1410
|
+
readonly response_metadata: v.OptionalSchema<v.UnknownSchema, undefined>;
|
|
1411
|
+
readonly warning: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1412
|
+
}, undefined>;
|
|
1413
|
+
};
|
|
1414
|
+
readonly listCustomEmojis: {
|
|
1415
|
+
readonly id: "SLACK_LIST_CUSTOM_EMOJIS";
|
|
1416
|
+
readonly label: "List team custom emojis";
|
|
1417
|
+
readonly description: "Retrieves all custom emojis for the Slack workspace (image URLs or aliases), not standard Unicode emojis; does not include usage statistics or creation dates.";
|
|
1418
|
+
readonly version: "20260721_00";
|
|
1419
|
+
readonly input: v.ObjectSchema<{
|
|
1420
|
+
readonly include_categories: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
1421
|
+
}, undefined>;
|
|
1422
|
+
readonly output: v.LooseObjectSchema<{
|
|
1423
|
+
readonly cache_ts: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1424
|
+
readonly categories: v.OptionalSchema<v.ArraySchema<v.UnknownSchema, undefined>, undefined>;
|
|
1425
|
+
readonly categories_version: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1426
|
+
readonly emoji: v.OptionalSchema<v.UnknownSchema, undefined>;
|
|
1427
|
+
readonly error: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1428
|
+
readonly needed: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1429
|
+
readonly ok: v.BooleanSchema<undefined>;
|
|
1430
|
+
readonly provided: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1431
|
+
}, undefined>;
|
|
1432
|
+
};
|
|
1433
|
+
readonly listDeniedWorkspaceInviteRequests: {
|
|
1434
|
+
readonly id: "SLACK_LIST_DENIED_WORKSPACE_INVITE_REQUESTS";
|
|
1435
|
+
readonly label: "List denied workspace invite requests";
|
|
1436
|
+
readonly description: "Tool to list all denied workspace invite requests with details about who denied them and when. Use when you need to review or audit denied invitation requests.";
|
|
1437
|
+
readonly version: "20260721_00";
|
|
1438
|
+
readonly input: v.ObjectSchema<{
|
|
1439
|
+
readonly cursor: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1440
|
+
readonly limit: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>]>, undefined>;
|
|
1441
|
+
readonly team_id: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1442
|
+
}, undefined>;
|
|
1443
|
+
readonly output: v.LooseObjectSchema<{
|
|
1444
|
+
readonly denied_requests: v.OptionalSchema<v.ArraySchema<v.UnknownSchema, undefined>, undefined>;
|
|
1445
|
+
readonly error: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1446
|
+
readonly needed: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1447
|
+
readonly ok: v.BooleanSchema<undefined>;
|
|
1448
|
+
readonly provided: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1449
|
+
readonly response_metadata: v.OptionalSchema<v.UnknownSchema, undefined>;
|
|
1450
|
+
}, undefined>;
|
|
1451
|
+
};
|
|
1452
|
+
readonly listEnterpriseTeams: {
|
|
1453
|
+
readonly id: "SLACK_LIST_ENTERPRISE_TEAMS";
|
|
1454
|
+
readonly label: "List Enterprise teams";
|
|
1455
|
+
readonly description: "List all teams (workspaces) in a Slack Enterprise Grid organization with pagination support. Use when you need to retrieve team IDs, names, domains, and metadata for all workspaces in an Enterprise. Requires admin.teams:read scope and Enterprise Grid organization.";
|
|
1456
|
+
readonly version: "20260721_00";
|
|
1457
|
+
readonly input: v.ObjectSchema<{
|
|
1458
|
+
readonly cursor: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1459
|
+
readonly limit: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>]>, undefined>;
|
|
1460
|
+
}, undefined>;
|
|
1461
|
+
readonly output: v.LooseObjectSchema<{
|
|
1462
|
+
readonly error: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1463
|
+
readonly needed: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1464
|
+
readonly ok: v.BooleanSchema<undefined>;
|
|
1465
|
+
readonly provided: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1466
|
+
readonly response_metadata: v.OptionalSchema<v.UnknownSchema, undefined>;
|
|
1467
|
+
readonly teams: v.OptionalSchema<v.ArraySchema<v.UnknownSchema, undefined>, undefined>;
|
|
1468
|
+
}, undefined>;
|
|
1469
|
+
};
|
|
1470
|
+
readonly listFilesWithFiltersInSlack: {
|
|
1471
|
+
readonly id: "SLACK_LIST_FILES_WITH_FILTERS_IN_SLACK";
|
|
1472
|
+
readonly label: "List Slack files";
|
|
1473
|
+
readonly description: "Lists files and their metadata within a Slack workspace, filterable by user, channel, timestamp, or type; returns metadata only, not file content. Results are limited to files visible to the authenticated user — files in private channels or restricted to certain members require appropriate membership and permissions. For large workspaces, check `paging.pages` in the response to determine total pages when paginating.";
|
|
1474
|
+
readonly version: "20260721_00";
|
|
1475
|
+
readonly input: v.ObjectSchema<{
|
|
1476
|
+
readonly channel: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1477
|
+
readonly count: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1478
|
+
readonly page: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1479
|
+
readonly show_files_hidden_by_limit: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
1480
|
+
readonly team_id: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1481
|
+
readonly ts_from: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>]>, undefined>;
|
|
1482
|
+
readonly ts_to: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>]>, undefined>;
|
|
1483
|
+
readonly types: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1484
|
+
readonly user: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1485
|
+
}, undefined>;
|
|
1486
|
+
readonly output: v.LooseObjectSchema<{
|
|
1487
|
+
readonly arg: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1488
|
+
readonly error: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1489
|
+
readonly files: v.OptionalSchema<v.ArraySchema<v.UnknownSchema, undefined>, undefined>;
|
|
1490
|
+
readonly ok: v.BooleanSchema<undefined>;
|
|
1491
|
+
readonly paging: v.OptionalSchema<v.UnknownSchema, undefined>;
|
|
1492
|
+
readonly response_metadata: v.OptionalSchema<v.UnknownSchema, undefined>;
|
|
1493
|
+
readonly warning: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1494
|
+
}, undefined>;
|
|
1495
|
+
};
|
|
1496
|
+
readonly listIdpGroupsLinkedToChannel: {
|
|
1497
|
+
readonly id: "SLACK_LIST_IDP_GROUPS_LINKED_TO_CHANNEL";
|
|
1498
|
+
readonly label: "List IDP groups linked to channel";
|
|
1499
|
+
readonly description: "Lists IDP groups that have restricted access to a private Slack channel. Use when you need to see which identity provider groups can access a specific channel.";
|
|
1500
|
+
readonly version: "20260721_00";
|
|
1501
|
+
readonly input: v.ObjectSchema<{
|
|
1502
|
+
readonly channel_id: v.StringSchema<undefined>;
|
|
1503
|
+
readonly team_id: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1504
|
+
}, undefined>;
|
|
1505
|
+
readonly output: v.LooseObjectSchema<{
|
|
1506
|
+
readonly error: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1507
|
+
readonly group_ids: v.OptionalSchema<v.ArraySchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
1508
|
+
readonly ok: v.BooleanSchema<undefined>;
|
|
1509
|
+
readonly warning: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1510
|
+
}, undefined>;
|
|
1511
|
+
};
|
|
1512
|
+
readonly listPendingWorkspaceInviteRequests: {
|
|
1513
|
+
readonly id: "SLACK_LIST_PENDING_WORKSPACE_INVITE_REQUESTS";
|
|
1514
|
+
readonly label: "List pending workspace invite requests";
|
|
1515
|
+
readonly description: "Tool to list all pending workspace invite requests. Use when you need to see who has been invited but hasn't joined yet. Requires admin.invites:read scope.";
|
|
1516
|
+
readonly version: "20260721_00";
|
|
1517
|
+
readonly input: v.ObjectSchema<{
|
|
1518
|
+
readonly cursor: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1519
|
+
readonly limit: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>]>, undefined>;
|
|
1520
|
+
readonly team_id: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1521
|
+
}, undefined>;
|
|
1522
|
+
readonly output: v.LooseObjectSchema<{
|
|
1523
|
+
readonly error: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1524
|
+
readonly invite_requests: v.OptionalSchema<v.ArraySchema<v.UnknownSchema, undefined>, undefined>;
|
|
1525
|
+
readonly needed: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1526
|
+
readonly ok: v.BooleanSchema<undefined>;
|
|
1527
|
+
readonly provided: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1528
|
+
readonly response_metadata: v.OptionalSchema<v.UnknownSchema, undefined>;
|
|
1529
|
+
readonly warning: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1530
|
+
}, undefined>;
|
|
1531
|
+
};
|
|
1532
|
+
readonly listPinnedItems: {
|
|
1533
|
+
readonly id: "SLACK_LIST_PINNED_ITEMS";
|
|
1534
|
+
readonly label: "List pinned items in a channel";
|
|
1535
|
+
readonly description: "Retrieves all messages and files pinned to a specified channel; the caller must have access to this channel.";
|
|
1536
|
+
readonly version: "20260721_00";
|
|
1537
|
+
readonly input: v.ObjectSchema<{
|
|
1538
|
+
readonly channel: v.StringSchema<undefined>;
|
|
1539
|
+
}, undefined>;
|
|
1540
|
+
readonly output: v.LooseObjectSchema<{
|
|
1541
|
+
readonly error: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1542
|
+
readonly items: v.OptionalSchema<v.ArraySchema<v.UnknownSchema, undefined>, undefined>;
|
|
1543
|
+
readonly ok: v.BooleanSchema<undefined>;
|
|
1544
|
+
readonly warning: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1545
|
+
}, undefined>;
|
|
1546
|
+
};
|
|
1547
|
+
readonly listReminders: {
|
|
1548
|
+
readonly id: "SLACK_LIST_REMINDERS";
|
|
1549
|
+
readonly label: "List reminders";
|
|
1550
|
+
readonly description: "Lists all reminders with their details for the authenticated Slack user; returns an empty array if no reminders exist (valid state, not an error). Reminder text is not unique—perform client-side matching on returned objects before extracting a reminder ID for use with SLACK_DELETE_A_SLACK_REMINDER.";
|
|
1551
|
+
readonly version: "20260721_00";
|
|
1552
|
+
readonly input: v.ObjectSchema<{
|
|
1553
|
+
readonly team_id: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1554
|
+
}, undefined>;
|
|
1555
|
+
readonly output: v.LooseObjectSchema<{
|
|
1556
|
+
readonly arg: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1557
|
+
readonly error: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1558
|
+
readonly needed: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1559
|
+
readonly ok: v.BooleanSchema<undefined>;
|
|
1560
|
+
readonly provided: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1561
|
+
readonly reminders: v.OptionalSchema<v.ArraySchema<v.UnknownSchema, undefined>, undefined>;
|
|
1562
|
+
}, undefined>;
|
|
1563
|
+
};
|
|
1564
|
+
readonly listRemoteFiles: {
|
|
1565
|
+
readonly id: "SLACK_LIST_REMOTE_FILES";
|
|
1566
|
+
readonly label: "List remote files";
|
|
1567
|
+
readonly description: "Retrieve information about a team's remote files.";
|
|
1568
|
+
readonly version: "20260721_00";
|
|
1569
|
+
readonly input: v.ObjectSchema<{
|
|
1570
|
+
readonly channel: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1571
|
+
readonly cursor: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1572
|
+
readonly limit: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>]>, undefined>;
|
|
1573
|
+
readonly ts_from: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
|
|
1574
|
+
readonly ts_to: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
|
|
1575
|
+
}, undefined>;
|
|
1576
|
+
readonly output: v.LooseObjectSchema<{
|
|
1577
|
+
readonly error: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1578
|
+
readonly files: v.OptionalSchema<v.ArraySchema<v.UnknownSchema, undefined>, undefined>;
|
|
1579
|
+
readonly ok: v.BooleanSchema<undefined>;
|
|
1580
|
+
readonly response_metadata: v.OptionalSchema<v.UnknownSchema, undefined>;
|
|
1581
|
+
readonly warning: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1582
|
+
readonly warnings: v.OptionalSchema<v.ArraySchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
1583
|
+
}, undefined>;
|
|
1584
|
+
};
|
|
1585
|
+
readonly listRestrictedApps: {
|
|
1586
|
+
readonly id: "SLACK_LIST_RESTRICTED_APPS";
|
|
1587
|
+
readonly label: "List Restricted Apps";
|
|
1588
|
+
readonly description: "Tool to list restricted apps for an org or workspace. Use when you need to view apps that have been restricted from installation. Requires admin.apps:read scope and appropriate admin permissions.";
|
|
1589
|
+
readonly version: "20260721_00";
|
|
1590
|
+
readonly input: v.ObjectSchema<{
|
|
1591
|
+
readonly certified: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
1592
|
+
readonly cursor: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1593
|
+
readonly enterprise_id: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1594
|
+
readonly limit: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>]>, undefined>;
|
|
1595
|
+
readonly team_id: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1596
|
+
}, undefined>;
|
|
1597
|
+
readonly output: v.LooseObjectSchema<{
|
|
1598
|
+
readonly error: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1599
|
+
readonly needed: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1600
|
+
readonly ok: v.BooleanSchema<undefined>;
|
|
1601
|
+
readonly provided: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1602
|
+
readonly response_metadata: v.OptionalSchema<v.UnknownSchema, undefined>;
|
|
1603
|
+
readonly restricted_apps: v.OptionalSchema<v.ArraySchema<v.UnknownSchema, undefined>, undefined>;
|
|
1604
|
+
}, undefined>;
|
|
1605
|
+
};
|
|
1606
|
+
readonly listScheduledMessages: {
|
|
1607
|
+
readonly id: "SLACK_LIST_SCHEDULED_MESSAGES";
|
|
1608
|
+
readonly label: "List scheduled messages";
|
|
1609
|
+
readonly description: "Retrieves a list of pending (not yet delivered) messages scheduled in a specific Slack channel, or across all accessible channels if no channel ID is provided, optionally filtered by time and paginated.";
|
|
1610
|
+
readonly version: "20260721_00";
|
|
1611
|
+
readonly input: v.ObjectSchema<{
|
|
1612
|
+
readonly channel: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1613
|
+
readonly cursor: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1614
|
+
readonly latest: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1615
|
+
readonly limit: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>]>, undefined>;
|
|
1616
|
+
readonly oldest: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1617
|
+
readonly team_id: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1618
|
+
}, undefined>;
|
|
1619
|
+
readonly output: v.LooseObjectSchema<{
|
|
1620
|
+
readonly error: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1621
|
+
readonly needed: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1622
|
+
readonly ok: v.BooleanSchema<undefined>;
|
|
1623
|
+
readonly provided: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1624
|
+
readonly response_metadata: v.OptionalSchema<v.UnknownSchema, undefined>;
|
|
1625
|
+
readonly scheduled_messages: v.OptionalSchema<v.ArraySchema<v.UnknownSchema, undefined>, undefined>;
|
|
1626
|
+
}, undefined>;
|
|
1627
|
+
};
|
|
1628
|
+
readonly listSlackListItems: {
|
|
1629
|
+
readonly id: "SLACK_LIST_SLACK_LIST_ITEMS";
|
|
1630
|
+
readonly label: "List Slack List items";
|
|
1631
|
+
readonly description: "Lists the rows (items) in a Slack List via `slackLists.items.list`. Each row exposes `column_id`-keyed typed values (e.g. `rich_text`, `select`, `user`, `date`, `number`); the legacy `key`/`value` fields are deprecated. Results are cursor-paginated—you must paginate using `response_metadata.next_cursor` until it is empty, or rows are silently truncated to the first page. Set `archived=true` to return archived rows instead of active ones. Requires a user token with the `lists:read` scope.";
|
|
1632
|
+
readonly version: "20260721_00";
|
|
1633
|
+
readonly input: v.ObjectSchema<{
|
|
1634
|
+
readonly archived: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
1635
|
+
readonly cursor: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1636
|
+
readonly limit: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>]>, undefined>;
|
|
1637
|
+
readonly list_id: v.StringSchema<undefined>;
|
|
1638
|
+
}, undefined>;
|
|
1639
|
+
readonly output: v.LooseObjectSchema<{
|
|
1640
|
+
readonly error: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1641
|
+
readonly items: v.OptionalSchema<v.ArraySchema<v.UnknownSchema, undefined>, undefined>;
|
|
1642
|
+
readonly needed: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1643
|
+
readonly ok: v.BooleanSchema<undefined>;
|
|
1644
|
+
readonly provided: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1645
|
+
readonly response_metadata: v.OptionalSchema<v.UnknownSchema, undefined>;
|
|
1646
|
+
readonly warning: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1647
|
+
}, undefined>;
|
|
1648
|
+
};
|
|
1649
|
+
readonly listStarredItems: {
|
|
1650
|
+
readonly id: "SLACK_LIST_STARRED_ITEMS";
|
|
1651
|
+
readonly label: "List starred items";
|
|
1652
|
+
readonly description: "Lists items starred by a user. Returns classic starred items only — does not reflect Slack's 'saved for later' feature. Use SLACK_SEARCH_MESSAGES or SLACK_SEARCH_ALL for broader saved-content queries.";
|
|
1653
|
+
readonly version: "20260721_00";
|
|
1654
|
+
readonly input: v.ObjectSchema<{
|
|
1655
|
+
readonly count: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>]>, undefined>;
|
|
1656
|
+
readonly cursor: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1657
|
+
readonly limit: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>]>, undefined>;
|
|
1658
|
+
readonly page: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>]>, undefined>;
|
|
1659
|
+
readonly team_id: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1660
|
+
}, undefined>;
|
|
1661
|
+
readonly output: v.LooseObjectSchema<{
|
|
1662
|
+
readonly error: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1663
|
+
readonly items: v.OptionalSchema<v.ArraySchema<v.UnknownSchema, undefined>, undefined>;
|
|
1664
|
+
readonly ok: v.BooleanSchema<undefined>;
|
|
1665
|
+
readonly paging: v.OptionalSchema<v.UnknownSchema, undefined>;
|
|
1666
|
+
readonly response_metadata: v.OptionalSchema<v.UnknownSchema, undefined>;
|
|
1667
|
+
}, undefined>;
|
|
1668
|
+
};
|
|
1669
|
+
readonly listUnreadChannelMessages: {
|
|
1670
|
+
readonly id: "SLACK_LIST_UNREAD_CHANNEL_MESSAGES";
|
|
1671
|
+
readonly label: "List unread channel messages";
|
|
1672
|
+
readonly description: "Lists all unread messages in a specified Slack channel for the authenticated user. This action fetches messages that have been posted since the user's last read position in the channel. Use this action when you need to retrieve messages the user hasn't seen yet. The action determines the user's read position and returns all messages posted after that timestamp. Note: This only returns messages from the main channel timeline, not threaded replies. For threaded replies, use SLACK_FETCH_MESSAGE_TH…";
|
|
1673
|
+
readonly version: "20260721_00";
|
|
1674
|
+
readonly input: v.ObjectSchema<{
|
|
1675
|
+
readonly channel: v.StringSchema<undefined>;
|
|
1676
|
+
readonly cursor: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1677
|
+
readonly include_all_metadata: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
1678
|
+
readonly limit: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>]>, undefined>;
|
|
1679
|
+
}, undefined>;
|
|
1680
|
+
readonly output: v.LooseObjectSchema<{
|
|
1681
|
+
readonly error: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1682
|
+
readonly has_more: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
1683
|
+
readonly last_read: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1684
|
+
readonly messages: v.OptionalSchema<v.ArraySchema<v.UnknownSchema, undefined>, undefined>;
|
|
1685
|
+
readonly ok: v.BooleanSchema<undefined>;
|
|
1686
|
+
readonly response_metadata: v.OptionalSchema<v.UnknownSchema, undefined>;
|
|
1687
|
+
readonly unread_count_display: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>]>, undefined>;
|
|
1688
|
+
}, undefined>;
|
|
1689
|
+
};
|
|
1690
|
+
readonly listUserGroups: {
|
|
1691
|
+
readonly id: "SLACK_LIST_USER_GROUPS";
|
|
1692
|
+
readonly label: "List user groups";
|
|
1693
|
+
readonly description: "Lists user groups in a Slack workspace, including user-created and default groups; results for large workspaces may be paginated.";
|
|
1694
|
+
readonly version: "20260721_00";
|
|
1695
|
+
readonly input: v.ObjectSchema<{
|
|
1696
|
+
readonly include_count: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
1697
|
+
readonly include_disabled: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
1698
|
+
readonly include_users: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
1699
|
+
readonly team_id: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1700
|
+
}, undefined>;
|
|
1701
|
+
readonly output: v.LooseObjectSchema<{
|
|
1702
|
+
readonly error: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1703
|
+
readonly needed: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1704
|
+
readonly ok: v.BooleanSchema<undefined>;
|
|
1705
|
+
readonly provided: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1706
|
+
readonly response_metadata: v.OptionalSchema<v.UnknownSchema, undefined>;
|
|
1707
|
+
readonly usergroups: v.OptionalSchema<v.ArraySchema<v.UnknownSchema, undefined>, undefined>;
|
|
1708
|
+
}, undefined>;
|
|
1709
|
+
};
|
|
1710
|
+
readonly listUserGroupMembers: {
|
|
1711
|
+
readonly id: "SLACK_LIST_USER_GROUP_MEMBERS";
|
|
1712
|
+
readonly label: "List all users in a user group";
|
|
1713
|
+
readonly description: "Retrieves a list of all user IDs within a specified Slack user group, with an option to include users from disabled groups.";
|
|
1714
|
+
readonly version: "20260721_00";
|
|
1715
|
+
readonly input: v.ObjectSchema<{
|
|
1716
|
+
readonly include_disabled: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
1717
|
+
readonly team_id: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1718
|
+
readonly usergroup: v.StringSchema<undefined>;
|
|
1719
|
+
}, undefined>;
|
|
1720
|
+
readonly output: v.LooseObjectSchema<{
|
|
1721
|
+
readonly error: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1722
|
+
readonly ok: v.BooleanSchema<undefined>;
|
|
1723
|
+
readonly response_metadata: v.OptionalSchema<v.UnknownSchema, undefined>;
|
|
1724
|
+
readonly users: v.OptionalSchema<v.ArraySchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
1725
|
+
readonly warnings: v.OptionalSchema<v.ArraySchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
1726
|
+
}, undefined>;
|
|
1727
|
+
};
|
|
1728
|
+
readonly listUserReactions: {
|
|
1729
|
+
readonly id: "SLACK_LIST_USER_REACTIONS";
|
|
1730
|
+
readonly label: "List user reactions";
|
|
1731
|
+
readonly description: "Lists all reactions added by a specific user to messages, files, or file comments in Slack, useful for engagement analysis when the item content itself is not required. Results are paginated; check `response_metadata.next_cursor` and iterate with the `cursor` parameter to retrieve complete reaction history.";
|
|
1732
|
+
readonly version: "20260721_00";
|
|
1733
|
+
readonly input: v.ObjectSchema<{
|
|
1734
|
+
readonly count: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>]>, undefined>;
|
|
1735
|
+
readonly cursor: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1736
|
+
readonly full: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
1737
|
+
readonly limit: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>]>, undefined>;
|
|
1738
|
+
readonly page: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>]>, undefined>;
|
|
1739
|
+
readonly team_id: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1740
|
+
readonly user: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1741
|
+
}, undefined>;
|
|
1742
|
+
readonly output: v.LooseObjectSchema<{
|
|
1743
|
+
readonly error: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1744
|
+
readonly items: v.OptionalSchema<v.ArraySchema<v.UnknownSchema, undefined>, undefined>;
|
|
1745
|
+
readonly ok: v.BooleanSchema<undefined>;
|
|
1746
|
+
readonly paging: v.OptionalSchema<v.UnknownSchema, undefined>;
|
|
1747
|
+
readonly response_metadata: v.OptionalSchema<v.UnknownSchema, undefined>;
|
|
1748
|
+
readonly warning: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1749
|
+
}, undefined>;
|
|
1750
|
+
};
|
|
1751
|
+
readonly listWorkspaceAdmins: {
|
|
1752
|
+
readonly id: "SLACK_LIST_WORKSPACE_ADMINS";
|
|
1753
|
+
readonly label: "List workspace admins";
|
|
1754
|
+
readonly description: "Tool to list all admins on a given Slack workspace. Use when you need to identify workspace administrators. Requires Enterprise Grid organization and admin.teams:read scope.";
|
|
1755
|
+
readonly version: "20260721_00";
|
|
1756
|
+
readonly input: v.ObjectSchema<{
|
|
1757
|
+
readonly cursor: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1758
|
+
readonly limit: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>]>, undefined>;
|
|
1759
|
+
readonly team_id: v.StringSchema<undefined>;
|
|
1760
|
+
}, undefined>;
|
|
1761
|
+
readonly output: v.LooseObjectSchema<{
|
|
1762
|
+
readonly admin_ids: v.OptionalSchema<v.ArraySchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
1763
|
+
readonly error: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1764
|
+
readonly needed: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1765
|
+
readonly ok: v.BooleanSchema<undefined>;
|
|
1766
|
+
readonly provided: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1767
|
+
readonly response_metadata: v.OptionalSchema<v.UnknownSchema, undefined>;
|
|
1768
|
+
}, undefined>;
|
|
1769
|
+
};
|
|
1770
|
+
readonly listWorkspaceOwners: {
|
|
1771
|
+
readonly id: "SLACK_LIST_WORKSPACE_OWNERS";
|
|
1772
|
+
readonly label: "List workspace owners";
|
|
1773
|
+
readonly description: "Tool to list all owners on a given Slack workspace. Use when you need to identify workspace ownership or admin structure. Requires admin.teams:read scope.";
|
|
1774
|
+
readonly version: "20260721_00";
|
|
1775
|
+
readonly input: v.ObjectSchema<{
|
|
1776
|
+
readonly cursor: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1777
|
+
readonly limit: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>]>, undefined>;
|
|
1778
|
+
readonly team_id: v.StringSchema<undefined>;
|
|
1779
|
+
}, undefined>;
|
|
1780
|
+
readonly output: v.LooseObjectSchema<{
|
|
1781
|
+
readonly error: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1782
|
+
readonly needed: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1783
|
+
readonly ok: v.BooleanSchema<undefined>;
|
|
1784
|
+
readonly owner_ids: v.OptionalSchema<v.ArraySchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
1785
|
+
readonly provided: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1786
|
+
readonly response_metadata: v.OptionalSchema<v.UnknownSchema, undefined>;
|
|
1787
|
+
}, undefined>;
|
|
1788
|
+
};
|
|
1789
|
+
readonly listWorkspaceUsers: {
|
|
1790
|
+
readonly id: "SLACK_LIST_WORKSPACE_USERS";
|
|
1791
|
+
readonly label: "List admin users";
|
|
1792
|
+
readonly description: "Retrieves a paginated list of admin users for a specified Slack workspace.";
|
|
1793
|
+
readonly version: "20260721_00";
|
|
1794
|
+
readonly input: v.ObjectSchema<{
|
|
1795
|
+
readonly cursor: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1796
|
+
readonly include_deactivated_user_workspaces: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
1797
|
+
readonly is_active: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
1798
|
+
readonly limit: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>]>, undefined>;
|
|
1799
|
+
readonly only_guests: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
1800
|
+
readonly team_id: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1801
|
+
}, undefined>;
|
|
1802
|
+
readonly output: v.LooseObjectSchema<{
|
|
1803
|
+
readonly error: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1804
|
+
readonly needed: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1805
|
+
readonly ok: v.BooleanSchema<undefined>;
|
|
1806
|
+
readonly provided: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1807
|
+
readonly response_metadata: v.OptionalSchema<v.UnknownSchema, undefined>;
|
|
1808
|
+
readonly users: v.OptionalSchema<v.ArraySchema<v.UnknownSchema, undefined>, undefined>;
|
|
1809
|
+
}, undefined>;
|
|
1810
|
+
};
|
|
1811
|
+
readonly lookupCanvasSections: {
|
|
1812
|
+
readonly id: "SLACK_LOOKUP_CANVAS_SECTIONS";
|
|
1813
|
+
readonly label: "Lookup Canvas Sections";
|
|
1814
|
+
readonly description: "Looks up section IDs in a Slack Canvas for use with targeted edit operations. Section IDs are needed for insert_after, insert_before, delete, and section-specific replace operations.";
|
|
1815
|
+
readonly version: "20260721_00";
|
|
1816
|
+
readonly input: v.ObjectSchema<{
|
|
1817
|
+
readonly canvas_id: v.StringSchema<undefined>;
|
|
1818
|
+
readonly criteria: v.UnknownSchema;
|
|
1819
|
+
}, undefined>;
|
|
1820
|
+
readonly output: v.LooseObjectSchema<{
|
|
1821
|
+
readonly error: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1822
|
+
readonly needed: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1823
|
+
readonly ok: v.BooleanSchema<undefined>;
|
|
1824
|
+
readonly provided: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1825
|
+
readonly response_metadata: v.OptionalSchema<v.UnknownSchema, undefined>;
|
|
1826
|
+
readonly sections: v.OptionalSchema<v.ArraySchema<v.UnknownSchema, undefined>, undefined>;
|
|
1827
|
+
readonly warning: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1828
|
+
}, undefined>;
|
|
1829
|
+
};
|
|
1830
|
+
readonly openDm: {
|
|
1831
|
+
readonly id: "SLACK_OPEN_DM";
|
|
1832
|
+
readonly label: "Open DM";
|
|
1833
|
+
readonly description: "Opens or resumes a Slack direct message (DM) or multi-person direct message (MPIM) by providing either user IDs or an existing channel ID. Returns `already_open=true` when the DM exists — treat as success and reuse the returned `channel.id` (starts with 'D') for subsequent SLACK_SEND_MESSAGE calls; passing a username, email, or user ID directly to SLACK_SEND_MESSAGE causes `channel_not_found`. Avoid redundant calls when an existing DM channel ID is available.";
|
|
1834
|
+
readonly version: "20260721_00";
|
|
1835
|
+
readonly input: v.ObjectSchema<{
|
|
1836
|
+
readonly channel: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1837
|
+
readonly prevent_creation: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
1838
|
+
readonly return_im: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
1839
|
+
readonly users: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1840
|
+
}, undefined>;
|
|
1841
|
+
readonly output: v.LooseObjectSchema<{
|
|
1842
|
+
readonly already_open: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
1843
|
+
readonly channel: v.OptionalSchema<v.UnknownSchema, undefined>;
|
|
1844
|
+
readonly error: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1845
|
+
readonly needed: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1846
|
+
readonly no_op: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
1847
|
+
readonly ok: v.BooleanSchema<undefined>;
|
|
1848
|
+
readonly provided: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1849
|
+
readonly response_metadata: v.OptionalSchema<v.UnknownSchema, undefined>;
|
|
1850
|
+
readonly warning: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1851
|
+
}, undefined>;
|
|
1852
|
+
};
|
|
1853
|
+
readonly pinItem: {
|
|
1854
|
+
readonly id: "SLACK_PIN_ITEM";
|
|
1855
|
+
readonly label: "Pin an item to a channel";
|
|
1856
|
+
readonly description: "Pins a message to a specified Slack channel; the message must not already be pinned.";
|
|
1857
|
+
readonly version: "20260721_00";
|
|
1858
|
+
readonly input: v.ObjectSchema<{
|
|
1859
|
+
readonly channel: v.StringSchema<undefined>;
|
|
1860
|
+
readonly timestamp: v.StringSchema<undefined>;
|
|
1861
|
+
}, undefined>;
|
|
1862
|
+
readonly output: v.LooseObjectSchema<{
|
|
1863
|
+
readonly error: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1864
|
+
readonly ok: v.BooleanSchema<undefined>;
|
|
1865
|
+
readonly response_metadata: v.OptionalSchema<v.UnknownSchema, undefined>;
|
|
1866
|
+
readonly warning: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1867
|
+
readonly warnings: v.OptionalSchema<v.ArraySchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
1868
|
+
}, undefined>;
|
|
1869
|
+
};
|
|
1870
|
+
readonly readAuditLogs: {
|
|
1871
|
+
readonly id: "SLACK_READ_AUDIT_LOGS";
|
|
1872
|
+
readonly label: "Read Audit Logs";
|
|
1873
|
+
readonly description: "Read Slack Enterprise Grid Audit Logs (logins, admin changes, app installs, channel/privacy changes, etc.) with server-side filters and pagination. Requires Enterprise Grid organization with auditlogs:read scope and a user token (xoxp-...) from an owner/admin context.";
|
|
1874
|
+
readonly version: "20260721_00";
|
|
1875
|
+
readonly input: v.ObjectSchema<{
|
|
1876
|
+
readonly action: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1877
|
+
readonly actor: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1878
|
+
readonly cursor: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1879
|
+
readonly entity: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1880
|
+
readonly latest: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>]>, undefined>;
|
|
1881
|
+
readonly limit: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>]>, undefined>;
|
|
1882
|
+
readonly oldest: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>]>, undefined>;
|
|
1883
|
+
}, undefined>;
|
|
1884
|
+
readonly output: v.LooseObjectSchema<{
|
|
1885
|
+
readonly entries: v.OptionalSchema<v.ArraySchema<v.UnknownSchema, undefined>, undefined>;
|
|
1886
|
+
readonly error: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1887
|
+
readonly needed: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1888
|
+
readonly ok: v.BooleanSchema<undefined>;
|
|
1889
|
+
readonly provided: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1890
|
+
readonly response_metadata: v.OptionalSchema<v.UnknownSchema, undefined>;
|
|
1891
|
+
}, undefined>;
|
|
1892
|
+
};
|
|
1893
|
+
readonly removeCallParticipants: {
|
|
1894
|
+
readonly id: "SLACK_REMOVE_CALL_PARTICIPANTS";
|
|
1895
|
+
readonly label: "Remove call participants";
|
|
1896
|
+
readonly description: "Registers participants removed from a Slack call.";
|
|
1897
|
+
readonly version: "20260721_00";
|
|
1898
|
+
readonly input: v.ObjectSchema<{
|
|
1899
|
+
readonly id: v.StringSchema<undefined>;
|
|
1900
|
+
readonly users: v.StringSchema<undefined>;
|
|
1901
|
+
}, undefined>;
|
|
1902
|
+
readonly output: v.LooseObjectSchema<{
|
|
1903
|
+
readonly call: v.OptionalSchema<v.UnknownSchema, undefined>;
|
|
1904
|
+
readonly error: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1905
|
+
readonly needed: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1906
|
+
readonly ok: v.BooleanSchema<undefined>;
|
|
1907
|
+
readonly provided: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1908
|
+
readonly response_metadata: v.OptionalSchema<v.UnknownSchema, undefined>;
|
|
1909
|
+
readonly warning: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1910
|
+
}, undefined>;
|
|
1911
|
+
};
|
|
1912
|
+
readonly removeEmoji: {
|
|
1913
|
+
readonly id: "SLACK_REMOVE_EMOJI";
|
|
1914
|
+
readonly label: "Remove emoji";
|
|
1915
|
+
readonly description: "Tool to remove a custom emoji across an Enterprise Grid organization. Use when you need to delete a custom emoji from the entire organization.";
|
|
1916
|
+
readonly version: "20260721_00";
|
|
1917
|
+
readonly input: v.ObjectSchema<{
|
|
1918
|
+
readonly name: v.StringSchema<undefined>;
|
|
1919
|
+
}, undefined>;
|
|
1920
|
+
readonly output: v.LooseObjectSchema<{
|
|
1921
|
+
readonly error: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1922
|
+
readonly needed: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1923
|
+
readonly ok: v.BooleanSchema<undefined>;
|
|
1924
|
+
readonly provided: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1925
|
+
readonly response_metadata: v.OptionalSchema<v.UnknownSchema, undefined>;
|
|
1926
|
+
readonly warning: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1927
|
+
}, undefined>;
|
|
1928
|
+
};
|
|
1929
|
+
readonly removeReactionFromItem: {
|
|
1930
|
+
readonly id: "SLACK_REMOVE_REACTION_FROM_ITEM";
|
|
1931
|
+
readonly label: "Remove reaction from item";
|
|
1932
|
+
readonly description: "Removes an emoji reaction from a message, file, or file comment in Slack. Provide exactly one targeting method: channel+timestamp together, file, or file_comment. Mixing methods or omitting all returns invalid_arguments.";
|
|
1933
|
+
readonly version: "20260721_00";
|
|
1934
|
+
readonly input: v.ObjectSchema<{
|
|
1935
|
+
readonly channel: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1936
|
+
readonly file: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1937
|
+
readonly file_comment: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1938
|
+
readonly name: v.StringSchema<undefined>;
|
|
1939
|
+
readonly timestamp: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1940
|
+
}, undefined>;
|
|
1941
|
+
readonly output: v.LooseObjectSchema<{
|
|
1942
|
+
readonly error: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1943
|
+
readonly needed: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1944
|
+
readonly ok: v.BooleanSchema<undefined>;
|
|
1945
|
+
readonly provided: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1946
|
+
readonly response_metadata: v.OptionalSchema<v.UnknownSchema, undefined>;
|
|
1947
|
+
readonly warning: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1948
|
+
readonly warnings: v.OptionalSchema<v.ArraySchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
1949
|
+
}, undefined>;
|
|
1950
|
+
};
|
|
1951
|
+
readonly removeRemoteFile: {
|
|
1952
|
+
readonly id: "SLACK_REMOVE_REMOTE_FILE";
|
|
1953
|
+
readonly label: "Remove remote file";
|
|
1954
|
+
readonly description: "Removes the Slack reference to an external file (which must have been previously added via the remote files API), specified by either its `external_id` or `file` ID (one of which is required), without deleting the actual external file.";
|
|
1955
|
+
readonly version: "20260721_00";
|
|
1956
|
+
readonly input: v.ObjectSchema<{
|
|
1957
|
+
readonly external_id: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1958
|
+
readonly file: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1959
|
+
readonly token: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1960
|
+
}, undefined>;
|
|
1961
|
+
readonly output: v.LooseObjectSchema<{
|
|
1962
|
+
readonly error: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1963
|
+
readonly needed: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1964
|
+
readonly ok: v.BooleanSchema<undefined>;
|
|
1965
|
+
readonly provided: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1966
|
+
readonly response_metadata: v.OptionalSchema<v.UnknownSchema, undefined>;
|
|
1967
|
+
readonly warning: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1968
|
+
readonly warnings: v.OptionalSchema<v.ArraySchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
1969
|
+
}, undefined>;
|
|
1970
|
+
};
|
|
1971
|
+
readonly removeStar: {
|
|
1972
|
+
readonly id: "SLACK_REMOVE_STAR";
|
|
1973
|
+
readonly label: "Remove a star from an item";
|
|
1974
|
+
readonly description: "Removes a star from a previously starred Slack item (message, file, file comment, channel, group, or DM), requiring identification via `file`, `file_comment`, `channel` (for channel/group/DM), or both `channel` and `timestamp` (for a message).";
|
|
1975
|
+
readonly version: "20260721_00";
|
|
1976
|
+
readonly input: v.ObjectSchema<{
|
|
1977
|
+
readonly channel: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1978
|
+
readonly file: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1979
|
+
readonly file_comment: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1980
|
+
readonly timestamp: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1981
|
+
}, undefined>;
|
|
1982
|
+
readonly output: v.LooseObjectSchema<{
|
|
1983
|
+
readonly arg: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1984
|
+
readonly error: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1985
|
+
readonly needed: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1986
|
+
readonly ok: v.BooleanSchema<undefined>;
|
|
1987
|
+
readonly provided: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1988
|
+
readonly response_metadata: v.OptionalSchema<v.UnknownSchema, undefined>;
|
|
1989
|
+
readonly warning: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1990
|
+
readonly warnings: v.OptionalSchema<v.ArraySchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
1991
|
+
}, undefined>;
|
|
1992
|
+
};
|
|
1993
|
+
readonly removeUserFromConversation: {
|
|
1994
|
+
readonly id: "SLACK_REMOVE_USER_FROM_CONVERSATION";
|
|
1995
|
+
readonly label: "Remove user from conversation";
|
|
1996
|
+
readonly description: "Removes a specified user from a Slack conversation (channel); the caller must have permissions to remove users and cannot remove themselves using this action.";
|
|
1997
|
+
readonly version: "20260721_00";
|
|
1998
|
+
readonly input: v.ObjectSchema<{
|
|
1999
|
+
readonly channel: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2000
|
+
readonly user: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2001
|
+
}, undefined>;
|
|
2002
|
+
readonly output: v.LooseObjectSchema<{
|
|
2003
|
+
readonly error: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2004
|
+
readonly errors: v.OptionalSchema<v.UnknownSchema, undefined>;
|
|
2005
|
+
readonly ok: v.BooleanSchema<undefined>;
|
|
2006
|
+
}, undefined>;
|
|
2007
|
+
};
|
|
2008
|
+
readonly removeUserFromWorkspace: {
|
|
2009
|
+
readonly id: "SLACK_REMOVE_USER_FROM_WORKSPACE";
|
|
2010
|
+
readonly label: "Remove user from workspace";
|
|
2011
|
+
readonly description: "Tool to remove a user from a Slack workspace. Use when you need to revoke a user's access to a workspace.";
|
|
2012
|
+
readonly version: "20260721_00";
|
|
2013
|
+
readonly input: v.ObjectSchema<{
|
|
2014
|
+
readonly team_id: v.StringSchema<undefined>;
|
|
2015
|
+
readonly user_id: v.StringSchema<undefined>;
|
|
2016
|
+
}, undefined>;
|
|
2017
|
+
readonly output: v.LooseObjectSchema<{
|
|
2018
|
+
readonly error: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2019
|
+
readonly needed: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2020
|
+
readonly ok: v.BooleanSchema<undefined>;
|
|
2021
|
+
readonly provided: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2022
|
+
readonly warning: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2023
|
+
}, undefined>;
|
|
2024
|
+
};
|
|
2025
|
+
readonly renameConversation: {
|
|
2026
|
+
readonly id: "SLACK_RENAME_CONVERSATION";
|
|
2027
|
+
readonly label: "Rename a conversation";
|
|
2028
|
+
readonly description: "Renames a Slack channel, automatically adjusting the new name to meet naming conventions (e.g., converting to lowercase), which may affect integrations using the old name.";
|
|
2029
|
+
readonly version: "20260721_00";
|
|
2030
|
+
readonly input: v.ObjectSchema<{
|
|
2031
|
+
readonly channel: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2032
|
+
readonly name: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2033
|
+
}, undefined>;
|
|
2034
|
+
readonly output: v.LooseObjectSchema<{
|
|
2035
|
+
readonly channel: v.OptionalSchema<v.UnknownSchema, undefined>;
|
|
2036
|
+
readonly error: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2037
|
+
readonly needed: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2038
|
+
readonly ok: v.BooleanSchema<undefined>;
|
|
2039
|
+
readonly provided: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2040
|
+
readonly response_metadata: v.OptionalSchema<v.UnknownSchema, undefined>;
|
|
2041
|
+
readonly warning: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2042
|
+
}, undefined>;
|
|
2043
|
+
};
|
|
2044
|
+
readonly renameEmoji: {
|
|
2045
|
+
readonly id: "SLACK_RENAME_EMOJI";
|
|
2046
|
+
readonly label: "Rename an emoji";
|
|
2047
|
+
readonly description: "Renames an existing custom emoji in a Slack workspace, updating all its instances.";
|
|
2048
|
+
readonly version: "20260721_00";
|
|
2049
|
+
readonly input: v.ObjectSchema<{
|
|
2050
|
+
readonly name: v.StringSchema<undefined>;
|
|
2051
|
+
readonly new_name: v.StringSchema<undefined>;
|
|
2052
|
+
}, undefined>;
|
|
2053
|
+
readonly output: v.LooseObjectSchema<{
|
|
2054
|
+
readonly error: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2055
|
+
readonly needed: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2056
|
+
readonly ok: v.BooleanSchema<undefined>;
|
|
2057
|
+
readonly provided: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2058
|
+
readonly response_metadata: v.OptionalSchema<v.UnknownSchema, undefined>;
|
|
2059
|
+
readonly warning: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2060
|
+
}, undefined>;
|
|
2061
|
+
};
|
|
2062
|
+
readonly resetUserSessions: {
|
|
2063
|
+
readonly id: "SLACK_RESET_USER_SESSIONS";
|
|
2064
|
+
readonly label: "Reset user sessions";
|
|
2065
|
+
readonly description: "Tool to wipe all valid sessions on all devices for a given user. Use when you need to force a user to re-authenticate due to security concerns or account changes.";
|
|
2066
|
+
readonly version: "20260721_00";
|
|
2067
|
+
readonly input: v.ObjectSchema<{
|
|
2068
|
+
readonly mobile_only: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
2069
|
+
readonly user_id: v.StringSchema<undefined>;
|
|
2070
|
+
readonly web_only: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
2071
|
+
}, undefined>;
|
|
2072
|
+
readonly output: v.LooseObjectSchema<{
|
|
2073
|
+
readonly error: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2074
|
+
readonly needed: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2075
|
+
readonly ok: v.BooleanSchema<undefined>;
|
|
2076
|
+
readonly provided: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2077
|
+
}, undefined>;
|
|
2078
|
+
};
|
|
2079
|
+
readonly restrictAppInstallation: {
|
|
2080
|
+
readonly id: "SLACK_RESTRICT_APP_INSTALLATION";
|
|
2081
|
+
readonly label: "Restrict app installation";
|
|
2082
|
+
readonly description: "Restrict an app for installation on a workspace. Use when you need to prevent an app from being installed on a specific workspace or enterprise organization.";
|
|
2083
|
+
readonly version: "20260721_00";
|
|
2084
|
+
readonly input: v.ObjectSchema<{
|
|
2085
|
+
readonly app_id: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2086
|
+
readonly enterprise_id: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2087
|
+
readonly request_id: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2088
|
+
readonly team_id: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2089
|
+
}, undefined>;
|
|
2090
|
+
readonly output: v.LooseObjectSchema<{
|
|
2091
|
+
readonly error: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2092
|
+
readonly ok: v.BooleanSchema<undefined>;
|
|
2093
|
+
readonly warning: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2094
|
+
}, undefined>;
|
|
2095
|
+
};
|
|
2096
|
+
readonly retrieveAUserSIdentityDetails: {
|
|
2097
|
+
readonly id: "SLACK_RETRIEVE_A_USER_S_IDENTITY_DETAILS";
|
|
2098
|
+
readonly label: "Retrieve a user's identity details";
|
|
2099
|
+
readonly description: "Retrieves the authenticated user's and their team's identity, with details varying based on OAuth scopes (e.g., `identity.basic`, `identity.email`, `identity.avatar`).";
|
|
2100
|
+
readonly version: "20260721_00";
|
|
2101
|
+
readonly input: v.ObjectSchema<{}, undefined>;
|
|
2102
|
+
readonly output: v.LooseObjectSchema<{
|
|
2103
|
+
readonly error: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2104
|
+
readonly needed: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2105
|
+
readonly ok: v.BooleanSchema<undefined>;
|
|
2106
|
+
readonly provided: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2107
|
+
readonly team: v.OptionalSchema<v.UnknownSchema, undefined>;
|
|
2108
|
+
readonly user: v.OptionalSchema<v.UnknownSchema, undefined>;
|
|
2109
|
+
}, undefined>;
|
|
2110
|
+
};
|
|
2111
|
+
readonly retrieveConversationInformation: {
|
|
2112
|
+
readonly id: "SLACK_RETRIEVE_CONVERSATION_INFORMATION";
|
|
2113
|
+
readonly label: "Retrieve conversation information";
|
|
2114
|
+
readonly description: "Retrieves metadata for a Slack conversation by ID (e.g., name, purpose, creation date, with options for member count/locale), excluding message content. The `channel` parameter is effectively required. Private channels, DMs, or channels where the app lacks membership may return restricted data; check `is_archived` and `is_member` fields in the response to diagnose access issues. Bulk lookups may trigger HTTP 429 rate limiting; honor the `Retry-After` response header.";
|
|
2115
|
+
readonly version: "20260721_00";
|
|
2116
|
+
readonly input: v.ObjectSchema<{
|
|
2117
|
+
readonly channel: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2118
|
+
readonly include_locale: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
2119
|
+
readonly include_num_members: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
2120
|
+
}, undefined>;
|
|
2121
|
+
readonly output: v.LooseObjectSchema<{
|
|
2122
|
+
readonly channel: v.OptionalSchema<v.UnknownSchema, undefined>;
|
|
2123
|
+
readonly error: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2124
|
+
readonly ok: v.BooleanSchema<undefined>;
|
|
2125
|
+
}, undefined>;
|
|
2126
|
+
};
|
|
2127
|
+
readonly retrieveConversationMembersList: {
|
|
2128
|
+
readonly id: "SLACK_RETRIEVE_CONVERSATION_MEMBERS_LIST";
|
|
2129
|
+
readonly label: "Get conversation members";
|
|
2130
|
+
readonly description: "Retrieves a paginated list of active member IDs (not names, emails, or presence) for a specified Slack public channel, private channel, DM, or MPIM. Returns only user IDs; use a user-lookup tool to enrich member data.";
|
|
2131
|
+
readonly version: "20260721_00";
|
|
2132
|
+
readonly input: v.ObjectSchema<{
|
|
2133
|
+
readonly channel: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2134
|
+
readonly cursor: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2135
|
+
readonly limit: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>]>, undefined>;
|
|
2136
|
+
}, undefined>;
|
|
2137
|
+
readonly output: v.LooseObjectSchema<{
|
|
2138
|
+
readonly error: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2139
|
+
readonly members: v.OptionalSchema<v.ArraySchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
2140
|
+
readonly needed: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2141
|
+
readonly ok: v.BooleanSchema<undefined>;
|
|
2142
|
+
readonly provided: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2143
|
+
readonly response_metadata: v.OptionalSchema<v.UnknownSchema, undefined>;
|
|
2144
|
+
}, undefined>;
|
|
2145
|
+
};
|
|
2146
|
+
readonly retrieveCurrentUserDndStatus: {
|
|
2147
|
+
readonly id: "SLACK_RETRIEVE_CURRENT_USER_DND_STATUS";
|
|
2148
|
+
readonly label: "Retrieve user DND status";
|
|
2149
|
+
readonly description: "Retrieves a Slack user's current Do Not Disturb (DND) status to determine their availability before interaction; any specified user ID must be a valid Slack user ID.";
|
|
2150
|
+
readonly version: "20260721_00";
|
|
2151
|
+
readonly input: v.ObjectSchema<{
|
|
2152
|
+
readonly team_id: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2153
|
+
readonly user: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2154
|
+
}, undefined>;
|
|
2155
|
+
readonly output: v.LooseObjectSchema<{
|
|
2156
|
+
readonly dnd_enabled: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
2157
|
+
readonly error: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2158
|
+
readonly next_dnd_end_ts: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>]>, undefined>;
|
|
2159
|
+
readonly next_dnd_start_ts: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>]>, undefined>;
|
|
2160
|
+
readonly ok: v.BooleanSchema<undefined>;
|
|
2161
|
+
readonly snooze_enabled: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
2162
|
+
readonly snooze_endtime: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>]>, undefined>;
|
|
2163
|
+
readonly snooze_is_indefinite: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
2164
|
+
readonly snooze_remaining: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>]>, undefined>;
|
|
2165
|
+
}, undefined>;
|
|
2166
|
+
};
|
|
2167
|
+
readonly retrieveDetailedInformationAboutAFile: {
|
|
2168
|
+
readonly id: "SLACK_RETRIEVE_DETAILED_INFORMATION_ABOUT_A_FILE";
|
|
2169
|
+
readonly label: "Retrieve detailed file information";
|
|
2170
|
+
readonly description: "Retrieves detailed metadata and paginated comments for a specific Slack file ID; does not download file content.";
|
|
2171
|
+
readonly version: "20260721_00";
|
|
2172
|
+
readonly input: v.ObjectSchema<{
|
|
2173
|
+
readonly count: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>]>, undefined>;
|
|
2174
|
+
readonly cursor: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2175
|
+
readonly file: v.StringSchema<undefined>;
|
|
2176
|
+
readonly limit: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>]>, undefined>;
|
|
2177
|
+
readonly page: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>]>, undefined>;
|
|
2178
|
+
}, undefined>;
|
|
2179
|
+
readonly output: v.LooseObjectSchema<{
|
|
2180
|
+
readonly comments: v.OptionalSchema<v.ArraySchema<v.UnknownSchema, undefined>, undefined>;
|
|
2181
|
+
readonly error: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2182
|
+
readonly file: v.OptionalSchema<v.UnknownSchema, undefined>;
|
|
2183
|
+
readonly needed: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2184
|
+
readonly ok: v.BooleanSchema<undefined>;
|
|
2185
|
+
readonly paging: v.OptionalSchema<v.UnknownSchema, undefined>;
|
|
2186
|
+
readonly provided: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2187
|
+
readonly response_metadata: v.OptionalSchema<v.UnknownSchema, undefined>;
|
|
2188
|
+
readonly warning: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2189
|
+
}, undefined>;
|
|
2190
|
+
};
|
|
2191
|
+
readonly retrieveDetailedUserInformation: {
|
|
2192
|
+
readonly id: "SLACK_RETRIEVE_DETAILED_USER_INFORMATION";
|
|
2193
|
+
readonly label: "Retrieve detailed user information";
|
|
2194
|
+
readonly description: "Retrieves comprehensive information for a valid Slack user ID, excluding message history and channel memberships. Sensitive fields like `email` and `phone` require the `users:read.email` scope and may be silently omitted based on workspace privacy policies.";
|
|
2195
|
+
readonly version: "20260721_00";
|
|
2196
|
+
readonly input: v.ObjectSchema<{
|
|
2197
|
+
readonly include_locale: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
2198
|
+
readonly user: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2199
|
+
}, undefined>;
|
|
2200
|
+
readonly output: v.LooseObjectSchema<{
|
|
2201
|
+
readonly error: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2202
|
+
readonly ok: v.BooleanSchema<undefined>;
|
|
2203
|
+
readonly user: v.OptionalSchema<v.UnknownSchema, undefined>;
|
|
2204
|
+
}, undefined>;
|
|
2205
|
+
};
|
|
2206
|
+
readonly retrieveMessagePermalinkUrl: {
|
|
2207
|
+
readonly id: "SLACK_RETRIEVE_MESSAGE_PERMALINK_URL";
|
|
2208
|
+
readonly label: "Retrieve message permalink";
|
|
2209
|
+
readonly description: "Retrieves a permalink URL for a specific message in a Slack channel or conversation; the permalink respects Slack's privacy settings.";
|
|
2210
|
+
readonly version: "20260721_00";
|
|
2211
|
+
readonly input: v.ObjectSchema<{
|
|
2212
|
+
readonly channel: v.StringSchema<undefined>;
|
|
2213
|
+
readonly message_ts: v.StringSchema<undefined>;
|
|
2214
|
+
}, undefined>;
|
|
2215
|
+
readonly output: v.LooseObjectSchema<{
|
|
2216
|
+
readonly channel: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2217
|
+
readonly error: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2218
|
+
readonly needed: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2219
|
+
readonly ok: v.BooleanSchema<undefined>;
|
|
2220
|
+
readonly permalink: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2221
|
+
readonly provided: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2222
|
+
}, undefined>;
|
|
2223
|
+
};
|
|
2224
|
+
readonly retrieveUserProfileInformation: {
|
|
2225
|
+
readonly id: "SLACK_RETRIEVE_USER_PROFILE_INFORMATION";
|
|
2226
|
+
readonly label: "Retrieve user profile information";
|
|
2227
|
+
readonly description: "Retrieves profile information for a specified Slack user (defaults to the authenticated user if `user` ID is omitted); a provided `user` ID must be valid. Sensitive fields like email and phone may be silently omitted if required scopes (e.g., `users:read.email`) are not granted or workspace privacy policies restrict access.";
|
|
2228
|
+
readonly version: "20260721_00";
|
|
2229
|
+
readonly input: v.ObjectSchema<{
|
|
2230
|
+
readonly include_labels: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
2231
|
+
readonly user: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2232
|
+
}, undefined>;
|
|
2233
|
+
readonly output: v.LooseObjectSchema<{
|
|
2234
|
+
readonly error: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2235
|
+
readonly needed: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2236
|
+
readonly ok: v.BooleanSchema<undefined>;
|
|
2237
|
+
readonly profile: v.OptionalSchema<v.UnknownSchema, undefined>;
|
|
2238
|
+
readonly provided: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2239
|
+
readonly response_metadata: v.OptionalSchema<v.UnknownSchema, undefined>;
|
|
2240
|
+
readonly warnings: v.OptionalSchema<v.ArraySchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
2241
|
+
}, undefined>;
|
|
2242
|
+
};
|
|
2243
|
+
readonly revokeFilePublicSharing: {
|
|
2244
|
+
readonly id: "SLACK_REVOKE_FILE_PUBLIC_SHARING";
|
|
2245
|
+
readonly label: "Revoke a file's public url";
|
|
2246
|
+
readonly description: "Revokes a Slack file's public URL, making it private; this is a no-op if not already public and is irreversible.";
|
|
2247
|
+
readonly version: "20260721_00";
|
|
2248
|
+
readonly input: v.ObjectSchema<{
|
|
2249
|
+
readonly file: v.StringSchema<undefined>;
|
|
2250
|
+
}, undefined>;
|
|
2251
|
+
readonly output: v.LooseObjectSchema<{
|
|
2252
|
+
readonly error: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2253
|
+
readonly file: v.OptionalSchema<v.UnknownSchema, undefined>;
|
|
2254
|
+
readonly ok: v.BooleanSchema<undefined>;
|
|
2255
|
+
readonly response_metadata: v.OptionalSchema<v.UnknownSchema, undefined>;
|
|
2256
|
+
readonly warning: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2257
|
+
}, undefined>;
|
|
2258
|
+
};
|
|
2259
|
+
readonly rtmConnect: {
|
|
2260
|
+
readonly id: "SLACK_RTM_CONNECT";
|
|
2261
|
+
readonly label: "Start RTM session";
|
|
2262
|
+
readonly description: "Starts a Real Time Messaging session and returns a WebSocket URL. Use when you need to establish a persistent RTM connection to receive real-time events from Slack.";
|
|
2263
|
+
readonly version: "20260721_00";
|
|
2264
|
+
readonly input: v.ObjectSchema<{
|
|
2265
|
+
readonly batch_presence_aware: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
2266
|
+
readonly presence_sub: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
2267
|
+
}, undefined>;
|
|
2268
|
+
readonly output: v.LooseObjectSchema<{
|
|
2269
|
+
readonly error: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2270
|
+
readonly needed: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2271
|
+
readonly ok: v.BooleanSchema<undefined>;
|
|
2272
|
+
readonly provided: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2273
|
+
readonly self: v.OptionalSchema<v.UnknownSchema, undefined>;
|
|
2274
|
+
readonly team: v.OptionalSchema<v.UnknownSchema, undefined>;
|
|
2275
|
+
readonly url: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2276
|
+
}, undefined>;
|
|
2277
|
+
};
|
|
2278
|
+
readonly scheduleMessage: {
|
|
2279
|
+
readonly id: "SLACK_SCHEDULE_MESSAGE";
|
|
2280
|
+
readonly label: "Schedule message";
|
|
2281
|
+
readonly description: "Schedules a message to a Slack channel, DM, or private group for a future time (`post_at`), requiring `text`, `blocks`, or `attachments` for content; scheduling is limited to 120 days in advance.";
|
|
2282
|
+
readonly version: "20260721_00";
|
|
2283
|
+
readonly input: v.ObjectSchema<{
|
|
2284
|
+
readonly attachments: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2285
|
+
readonly blocks: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2286
|
+
readonly channel: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2287
|
+
readonly link_names: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
2288
|
+
readonly markdown_text: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2289
|
+
readonly parse: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2290
|
+
readonly post_at: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2291
|
+
readonly reply_broadcast: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
2292
|
+
readonly text: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2293
|
+
readonly thread_ts: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2294
|
+
readonly unfurl_links: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
2295
|
+
readonly unfurl_media: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
2296
|
+
}, undefined>;
|
|
2297
|
+
readonly output: v.LooseObjectSchema<{
|
|
2298
|
+
readonly channel: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2299
|
+
readonly error: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2300
|
+
readonly message: v.OptionalSchema<v.UnknownSchema, undefined>;
|
|
2301
|
+
readonly ok: v.BooleanSchema<undefined>;
|
|
2302
|
+
readonly post_at: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>]>, undefined>;
|
|
2303
|
+
readonly response_metadata: v.OptionalSchema<v.UnknownSchema, undefined>;
|
|
2304
|
+
readonly scheduled_message_id: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2305
|
+
readonly warning: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2306
|
+
}, undefined>;
|
|
2307
|
+
};
|
|
2308
|
+
readonly scimGetConfig: {
|
|
2309
|
+
readonly id: "SLACK_SCIM_GET_CONFIG";
|
|
2310
|
+
readonly label: "Get SCIM service provider configuration";
|
|
2311
|
+
readonly description: "Tool to retrieve SCIM service provider configuration from Slack. Use when you need to discover Slack's SCIM API capabilities including supported authentication schemes, bulk operations, filtering, and other service provider features.";
|
|
2312
|
+
readonly version: "20260721_00";
|
|
2313
|
+
readonly input: v.ObjectSchema<{}, undefined>;
|
|
2314
|
+
readonly output: v.LooseObjectSchema<{
|
|
2315
|
+
readonly authenticationSchemes: v.OptionalSchema<v.ArraySchema<v.UnknownSchema, undefined>, undefined>;
|
|
2316
|
+
readonly bulk: v.OptionalSchema<v.UnknownSchema, undefined>;
|
|
2317
|
+
readonly changePassword: v.OptionalSchema<v.UnknownSchema, undefined>;
|
|
2318
|
+
readonly documentationUri: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2319
|
+
readonly etag: v.OptionalSchema<v.UnknownSchema, undefined>;
|
|
2320
|
+
readonly filter: v.OptionalSchema<v.UnknownSchema, undefined>;
|
|
2321
|
+
readonly patch: v.OptionalSchema<v.UnknownSchema, undefined>;
|
|
2322
|
+
readonly schemas: v.OptionalSchema<v.ArraySchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
2323
|
+
readonly sort: v.OptionalSchema<v.UnknownSchema, undefined>;
|
|
2324
|
+
}, undefined>;
|
|
2325
|
+
};
|
|
2326
|
+
readonly searchAll: {
|
|
2327
|
+
readonly id: "SLACK_SEARCH_ALL";
|
|
2328
|
+
readonly label: "Search all content";
|
|
2329
|
+
readonly description: "Tool to search all messages and files. Use when you need unified content search across channels and files in one call. Results are scoped to content visible to the authenticated token; missing hits in private or restricted channels reflect permission/membership gaps. Response separates messages and files into distinct sections — explicitly read the files section for document results. Results are index-based and may lag several minutes behind real-time; use SLACK_FETCH_CONVERSATION_HISTORY for n…";
|
|
2330
|
+
readonly version: "20260721_00";
|
|
2331
|
+
readonly input: v.ObjectSchema<{
|
|
2332
|
+
readonly count: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>]>, undefined>;
|
|
2333
|
+
readonly highlight: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
2334
|
+
readonly page: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>]>, undefined>;
|
|
2335
|
+
readonly query: v.StringSchema<undefined>;
|
|
2336
|
+
readonly sort: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2337
|
+
readonly sort_dir: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2338
|
+
readonly team_id: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2339
|
+
}, undefined>;
|
|
2340
|
+
readonly output: v.LooseObjectSchema<{
|
|
2341
|
+
readonly composio_execution_message: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2342
|
+
readonly error: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2343
|
+
readonly files: v.OptionalSchema<v.UnknownSchema, undefined>;
|
|
2344
|
+
readonly messages: v.OptionalSchema<v.UnknownSchema, undefined>;
|
|
2345
|
+
readonly needed: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2346
|
+
readonly ok: v.BooleanSchema<undefined>;
|
|
2347
|
+
readonly provided: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2348
|
+
readonly query: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2349
|
+
}, undefined>;
|
|
2350
|
+
};
|
|
2351
|
+
readonly searchMessages: {
|
|
2352
|
+
readonly id: "SLACK_SEARCH_MESSAGES";
|
|
2353
|
+
readonly label: "Search messages";
|
|
2354
|
+
readonly description: "Workspace‑wide Slack message search with date ranges and filters. Use `query` modifiers (e.g., in:#channel, from:@user, before/after:YYYY-MM-DD), sorting (score/timestamp), and pagination.";
|
|
2355
|
+
readonly version: "20260721_00";
|
|
2356
|
+
readonly input: v.ObjectSchema<{
|
|
2357
|
+
readonly auto_paginate: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
2358
|
+
readonly count: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>]>, undefined>;
|
|
2359
|
+
readonly cursor: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2360
|
+
readonly highlight: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
2361
|
+
readonly page: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>]>, undefined>;
|
|
2362
|
+
readonly query: v.StringSchema<undefined>;
|
|
2363
|
+
readonly sort: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2364
|
+
readonly sort_dir: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2365
|
+
readonly team_id: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2366
|
+
}, undefined>;
|
|
2367
|
+
readonly output: v.LooseObjectSchema<{
|
|
2368
|
+
readonly error: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2369
|
+
readonly messages: v.OptionalSchema<v.UnknownSchema, undefined>;
|
|
2370
|
+
readonly ok: v.BooleanSchema<undefined>;
|
|
2371
|
+
readonly query: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2372
|
+
readonly response_metadata: v.OptionalSchema<v.UnknownSchema, undefined>;
|
|
2373
|
+
}, undefined>;
|
|
2374
|
+
};
|
|
2375
|
+
readonly sendEphemeralMessage: {
|
|
2376
|
+
readonly id: "SLACK_SEND_EPHEMERAL_MESSAGE";
|
|
2377
|
+
readonly label: "Send ephemeral message";
|
|
2378
|
+
readonly description: "Sends an ephemeral message visible only to the specified `user` in a channel; other channel members cannot see it. Both the bot and the target user must be members of the specified channel.";
|
|
2379
|
+
readonly version: "20260721_00";
|
|
2380
|
+
readonly input: v.ObjectSchema<{
|
|
2381
|
+
readonly as_user: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
2382
|
+
readonly attachments: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2383
|
+
readonly blocks: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2384
|
+
readonly channel: v.StringSchema<undefined>;
|
|
2385
|
+
readonly icon_emoji: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2386
|
+
readonly icon_url: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2387
|
+
readonly link_names: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
2388
|
+
readonly markdown_text: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2389
|
+
readonly parse: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2390
|
+
readonly text: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2391
|
+
readonly thread_ts: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2392
|
+
readonly user: v.StringSchema<undefined>;
|
|
2393
|
+
readonly username: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2394
|
+
}, undefined>;
|
|
2395
|
+
readonly output: v.LooseObjectSchema<{
|
|
2396
|
+
readonly error: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2397
|
+
readonly message_ts: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2398
|
+
readonly needed: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2399
|
+
readonly ok: v.BooleanSchema<undefined>;
|
|
2400
|
+
readonly provided: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2401
|
+
readonly response_metadata: v.OptionalSchema<v.UnknownSchema, undefined>;
|
|
2402
|
+
readonly warning: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2403
|
+
readonly warnings: v.OptionalSchema<v.ArraySchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
2404
|
+
}, undefined>;
|
|
2405
|
+
};
|
|
2406
|
+
readonly sendMessage: {
|
|
2407
|
+
readonly id: "SLACK_SEND_MESSAGE";
|
|
2408
|
+
readonly label: "Send message";
|
|
2409
|
+
readonly description: "Posts a message to a Slack channel, DM, or private group. Provide exactly one visible content mode: `markdown_text` for normal Markdown content, or `blocks` for raw Slack Block Kit layouts. Use `fallback_text` only with `blocks`; it maps to Slack's top-level `text` fallback. Fails with `not_in_channel`, `channel_not_found`, or `channel_is_archived` if the bot lacks access. Rate-limited at ~1 req/sec (HTTP 429, honor `Retry-After`). Not idempotent — duplicate calls post duplicate messages.";
|
|
2410
|
+
readonly version: "20260721_00";
|
|
2411
|
+
readonly input: v.ObjectSchema<{
|
|
2412
|
+
readonly blocks: v.OptionalSchema<v.ArraySchema<v.UnknownSchema, undefined>, undefined>;
|
|
2413
|
+
readonly channel: v.StringSchema<undefined>;
|
|
2414
|
+
readonly fallback_text: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2415
|
+
readonly markdown_text: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2416
|
+
readonly reply_broadcast: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
2417
|
+
readonly thread_ts: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2418
|
+
readonly unfurl_links: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
2419
|
+
readonly unfurl_media: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
2420
|
+
}, undefined>;
|
|
2421
|
+
readonly output: v.LooseObjectSchema<{
|
|
2422
|
+
readonly action: v.OptionalSchema<v.UnknownSchema, undefined>;
|
|
2423
|
+
readonly channel: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2424
|
+
readonly deprecated_argument: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2425
|
+
readonly error: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2426
|
+
readonly errors: v.OptionalSchema<v.ArraySchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
2427
|
+
readonly interactivity: v.OptionalSchema<v.UnknownSchema, undefined>;
|
|
2428
|
+
readonly message: v.OptionalSchema<v.UnknownSchema, undefined>;
|
|
2429
|
+
readonly message_context: v.OptionalSchema<v.UnknownSchema, undefined>;
|
|
2430
|
+
readonly message_link: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2431
|
+
readonly message_ts: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2432
|
+
readonly needed: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2433
|
+
readonly ok: v.BooleanSchema<undefined>;
|
|
2434
|
+
readonly provided: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2435
|
+
readonly response_metadata: v.OptionalSchema<v.UnknownSchema, undefined>;
|
|
2436
|
+
readonly ts: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2437
|
+
readonly warning: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2438
|
+
readonly warnings: v.OptionalSchema<v.ArraySchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
2439
|
+
}, undefined>;
|
|
2440
|
+
};
|
|
2441
|
+
readonly sendMeMessage: {
|
|
2442
|
+
readonly id: "SLACK_SEND_ME_MESSAGE";
|
|
2443
|
+
readonly label: "Share a me message in a channel";
|
|
2444
|
+
readonly description: "Sends a 'me message' (e.g., '/me is typing') to a Slack channel, where it's displayed as a third-person user action; messages are plain text and the channel must exist and be accessible.";
|
|
2445
|
+
readonly version: "20260721_00";
|
|
2446
|
+
readonly input: v.ObjectSchema<{
|
|
2447
|
+
readonly channel: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2448
|
+
readonly text: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2449
|
+
}, undefined>;
|
|
2450
|
+
readonly output: v.LooseObjectSchema<{
|
|
2451
|
+
readonly channel: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2452
|
+
readonly error: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2453
|
+
readonly ok: v.BooleanSchema<undefined>;
|
|
2454
|
+
readonly ts: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2455
|
+
}, undefined>;
|
|
2456
|
+
};
|
|
2457
|
+
readonly setAdminUser: {
|
|
2458
|
+
readonly id: "SLACK_SET_ADMIN_USER";
|
|
2459
|
+
readonly label: "Set admin user";
|
|
2460
|
+
readonly description: "Promotes an existing workspace member (guest, regular user, or owner) to admin status. Use when you need to grant admin privileges to a user.";
|
|
2461
|
+
readonly version: "20260721_00";
|
|
2462
|
+
readonly input: v.ObjectSchema<{
|
|
2463
|
+
readonly team_id: v.StringSchema<undefined>;
|
|
2464
|
+
readonly user_id: v.StringSchema<undefined>;
|
|
2465
|
+
}, undefined>;
|
|
2466
|
+
readonly output: v.LooseObjectSchema<{
|
|
2467
|
+
readonly error: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2468
|
+
readonly needed: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2469
|
+
readonly ok: v.BooleanSchema<undefined>;
|
|
2470
|
+
readonly provided: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2471
|
+
readonly response_metadata: v.OptionalSchema<v.UnknownSchema, undefined>;
|
|
2472
|
+
readonly warning: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2473
|
+
}, undefined>;
|
|
2474
|
+
};
|
|
2475
|
+
readonly setConversationPrefs: {
|
|
2476
|
+
readonly id: "SLACK_SET_CONVERSATION_PREFS";
|
|
2477
|
+
readonly label: "Set conversation preferences";
|
|
2478
|
+
readonly description: "Sets the posting permissions for a public or private channel in Slack. Use this to control who can post messages, start threads, use @channel/@here mentions, and initiate huddles in a specific channel.";
|
|
2479
|
+
readonly version: "20260721_00";
|
|
2480
|
+
readonly input: v.ObjectSchema<{
|
|
2481
|
+
readonly channel_id: v.StringSchema<undefined>;
|
|
2482
|
+
readonly prefs: v.StringSchema<undefined>;
|
|
2483
|
+
}, undefined>;
|
|
2484
|
+
readonly output: v.LooseObjectSchema<{
|
|
2485
|
+
readonly error: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2486
|
+
readonly needed: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2487
|
+
readonly ok: v.BooleanSchema<undefined>;
|
|
2488
|
+
readonly provided: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2489
|
+
readonly warning: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2490
|
+
}, undefined>;
|
|
2491
|
+
};
|
|
2492
|
+
readonly setConversationPurpose: {
|
|
2493
|
+
readonly id: "SLACK_SET_CONVERSATION_PURPOSE";
|
|
2494
|
+
readonly label: "Set a conversation's purpose";
|
|
2495
|
+
readonly description: "Sets the purpose (a short description of its topic/goal, displayed in the header) for a Slack conversation; the calling user must be a member.";
|
|
2496
|
+
readonly version: "20260721_00";
|
|
2497
|
+
readonly input: v.ObjectSchema<{
|
|
2498
|
+
readonly channel: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2499
|
+
readonly purpose: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2500
|
+
}, undefined>;
|
|
2501
|
+
readonly output: v.LooseObjectSchema<{
|
|
2502
|
+
readonly error: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2503
|
+
readonly needed: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2504
|
+
readonly ok: v.BooleanSchema<undefined>;
|
|
2505
|
+
readonly provided: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2506
|
+
readonly purpose: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2507
|
+
readonly response_metadata: v.OptionalSchema<v.UnknownSchema, undefined>;
|
|
2508
|
+
readonly warnings: v.OptionalSchema<v.ArraySchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
2509
|
+
}, undefined>;
|
|
2510
|
+
};
|
|
2511
|
+
readonly setDefaultChannels: {
|
|
2512
|
+
readonly id: "SLACK_SET_DEFAULT_CHANNELS";
|
|
2513
|
+
readonly label: "Set default channels";
|
|
2514
|
+
readonly description: "Tool to set the default channels of a workspace. Use when you need to configure which channels new members automatically join.";
|
|
2515
|
+
readonly version: "20260721_00";
|
|
2516
|
+
readonly input: v.ObjectSchema<{
|
|
2517
|
+
readonly channel_ids: v.UnknownSchema;
|
|
2518
|
+
readonly team_id: v.StringSchema<undefined>;
|
|
2519
|
+
}, undefined>;
|
|
2520
|
+
readonly output: v.LooseObjectSchema<{
|
|
2521
|
+
readonly error: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2522
|
+
readonly needed: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2523
|
+
readonly ok: v.BooleanSchema<undefined>;
|
|
2524
|
+
readonly provided: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2525
|
+
readonly response_metadata: v.OptionalSchema<v.UnknownSchema, undefined>;
|
|
2526
|
+
readonly warning: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2527
|
+
}, undefined>;
|
|
2528
|
+
};
|
|
2529
|
+
readonly setDndDuration: {
|
|
2530
|
+
readonly id: "SLACK_SET_DND_DURATION";
|
|
2531
|
+
readonly label: "Set DND duration";
|
|
2532
|
+
readonly description: "Turns on Do Not Disturb mode for the current user, or changes its duration.";
|
|
2533
|
+
readonly version: "20260721_00";
|
|
2534
|
+
readonly input: v.ObjectSchema<{
|
|
2535
|
+
readonly num_minutes: v.StringSchema<undefined>;
|
|
2536
|
+
}, undefined>;
|
|
2537
|
+
readonly output: v.UnknownSchema;
|
|
2538
|
+
};
|
|
2539
|
+
readonly setProfilePhoto: {
|
|
2540
|
+
readonly id: "SLACK_SET_PROFILE_PHOTO";
|
|
2541
|
+
readonly label: "Set profile photo";
|
|
2542
|
+
readonly description: "This method allows the user to set their profile image.";
|
|
2543
|
+
readonly version: "20260721_00";
|
|
2544
|
+
readonly input: v.ObjectSchema<{
|
|
2545
|
+
readonly crop_w: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>]>, undefined>;
|
|
2546
|
+
readonly crop_x: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>]>, undefined>;
|
|
2547
|
+
readonly crop_y: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>]>, undefined>;
|
|
2548
|
+
readonly image: v.ObjectSchema<{
|
|
2549
|
+
readonly mimetype: v.StringSchema<undefined>;
|
|
2550
|
+
readonly name: v.StringSchema<undefined>;
|
|
2551
|
+
readonly s3key: v.StringSchema<undefined>;
|
|
2552
|
+
}, undefined>;
|
|
2553
|
+
}, undefined>;
|
|
2554
|
+
readonly output: v.LooseObjectSchema<{
|
|
2555
|
+
readonly error: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2556
|
+
readonly ok: v.BooleanSchema<undefined>;
|
|
2557
|
+
readonly profile: v.OptionalSchema<v.UnknownSchema, undefined>;
|
|
2558
|
+
readonly warning: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2559
|
+
}, undefined>;
|
|
2560
|
+
};
|
|
2561
|
+
readonly setReadCursorInAConversation: {
|
|
2562
|
+
readonly id: "SLACK_SET_READ_CURSOR_IN_A_CONVERSATION";
|
|
2563
|
+
readonly label: "Set conversation read cursor";
|
|
2564
|
+
readonly description: "Marks a message, specified by its timestamp (`ts`), as the most recently read for the authenticated user in the given `channel`, provided the user is a member of the channel and the message exists within it.";
|
|
2565
|
+
readonly version: "20260721_00";
|
|
2566
|
+
readonly input: v.ObjectSchema<{
|
|
2567
|
+
readonly channel: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2568
|
+
readonly ts: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2569
|
+
}, undefined>;
|
|
2570
|
+
readonly output: v.LooseObjectSchema<{
|
|
2571
|
+
readonly error: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2572
|
+
readonly needed: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2573
|
+
readonly ok: v.BooleanSchema<undefined>;
|
|
2574
|
+
readonly provided: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2575
|
+
readonly response_metadata: v.OptionalSchema<v.UnknownSchema, undefined>;
|
|
2576
|
+
readonly warning: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2577
|
+
}, undefined>;
|
|
2578
|
+
};
|
|
2579
|
+
readonly setSlackListAccess: {
|
|
2580
|
+
readonly id: "SLACK_SET_SLACK_LIST_ACCESS";
|
|
2581
|
+
readonly label: "Set Slack List access";
|
|
2582
|
+
readonly description: "Grants or sets sharing access on a Slack List via `slackLists.access.set`. Grant `read`, `write`, or `owner` access to either channels (`channel_ids`) or users (`user_ids`) — exactly one of the two is required. The `owner` level is user-only and subject to additional server-side rules. Requires a user token with the `lists:write` scope.";
|
|
2583
|
+
readonly version: "20260721_00";
|
|
2584
|
+
readonly input: v.ObjectSchema<{
|
|
2585
|
+
readonly access_level: v.StringSchema<undefined>;
|
|
2586
|
+
readonly channel_ids: v.OptionalSchema<v.ArraySchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
2587
|
+
readonly list_id: v.StringSchema<undefined>;
|
|
2588
|
+
readonly user_ids: v.OptionalSchema<v.ArraySchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
2589
|
+
}, undefined>;
|
|
2590
|
+
readonly output: v.LooseObjectSchema<{
|
|
2591
|
+
readonly error: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2592
|
+
readonly failed_to_update_channel_ids: v.OptionalSchema<v.ArraySchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
2593
|
+
readonly failed_to_update_user_ids: v.OptionalSchema<v.ArraySchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
2594
|
+
readonly needed: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2595
|
+
readonly ok: v.BooleanSchema<undefined>;
|
|
2596
|
+
readonly provided: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2597
|
+
readonly response_metadata: v.OptionalSchema<v.UnknownSchema, undefined>;
|
|
2598
|
+
readonly warning: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2599
|
+
}, undefined>;
|
|
2600
|
+
};
|
|
2601
|
+
readonly setTheTopicOfAConversation: {
|
|
2602
|
+
readonly id: "SLACK_SET_THE_TOPIC_OF_A_CONVERSATION";
|
|
2603
|
+
readonly label: "Set conversation topic";
|
|
2604
|
+
readonly description: "Sets or updates the topic for a specified Slack conversation.";
|
|
2605
|
+
readonly version: "20260721_00";
|
|
2606
|
+
readonly input: v.ObjectSchema<{
|
|
2607
|
+
readonly channel: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2608
|
+
readonly topic: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2609
|
+
}, undefined>;
|
|
2610
|
+
readonly output: v.LooseObjectSchema<{
|
|
2611
|
+
readonly channel: v.OptionalSchema<v.UnknownSchema, undefined>;
|
|
2612
|
+
readonly error: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2613
|
+
readonly needed: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2614
|
+
readonly ok: v.BooleanSchema<undefined>;
|
|
2615
|
+
readonly provided: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2616
|
+
readonly response_metadata: v.OptionalSchema<v.UnknownSchema, undefined>;
|
|
2617
|
+
readonly warning: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2618
|
+
readonly warnings: v.OptionalSchema<v.ArraySchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
2619
|
+
}, undefined>;
|
|
2620
|
+
};
|
|
2621
|
+
readonly setUserPresence: {
|
|
2622
|
+
readonly id: "SLACK_SET_USER_PRESENCE";
|
|
2623
|
+
readonly label: "Set user presence";
|
|
2624
|
+
readonly description: "Manually sets a user's Slack presence, overriding automatic detection; this setting persists across connections but can be overridden by user actions or Slack's auto-away (e.g., after 10 mins of inactivity).";
|
|
2625
|
+
readonly version: "20260721_00";
|
|
2626
|
+
readonly input: v.ObjectSchema<{
|
|
2627
|
+
readonly presence: v.UnionSchema<[v.LiteralSchema<"auto", undefined>, v.LiteralSchema<"away", undefined>], undefined>;
|
|
2628
|
+
}, undefined>;
|
|
2629
|
+
readonly output: v.LooseObjectSchema<{
|
|
2630
|
+
readonly error: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2631
|
+
readonly needed: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2632
|
+
readonly ok: v.BooleanSchema<undefined>;
|
|
2633
|
+
readonly provided: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2634
|
+
readonly response_metadata: v.OptionalSchema<v.UnknownSchema, undefined>;
|
|
2635
|
+
}, undefined>;
|
|
2636
|
+
};
|
|
2637
|
+
readonly setUserProfile: {
|
|
2638
|
+
readonly id: "SLACK_SET_USER_PROFILE";
|
|
2639
|
+
readonly label: "Set Slack user profile information";
|
|
2640
|
+
readonly description: "Updates a Slack user's profile, setting either individual fields or multiple fields via a JSON object.";
|
|
2641
|
+
readonly version: "20260721_00";
|
|
2642
|
+
readonly input: v.ObjectSchema<{
|
|
2643
|
+
readonly name: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2644
|
+
readonly profile: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2645
|
+
readonly user: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2646
|
+
readonly value: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2647
|
+
}, undefined>;
|
|
2648
|
+
readonly output: v.LooseObjectSchema<{
|
|
2649
|
+
readonly data: v.UnknownSchema;
|
|
2650
|
+
}, undefined>;
|
|
2651
|
+
};
|
|
2652
|
+
readonly setWorkspacesForChannel: {
|
|
2653
|
+
readonly id: "SLACK_SET_WORKSPACES_FOR_CHANNEL";
|
|
2654
|
+
readonly label: "Set workspaces for channel";
|
|
2655
|
+
readonly description: "Set the workspaces in an Enterprise grid org that connect to a channel. Use when you need to share a public or private channel with specific workspaces in an Enterprise Grid organization.";
|
|
2656
|
+
readonly version: "20260721_00";
|
|
2657
|
+
readonly input: v.ObjectSchema<{
|
|
2658
|
+
readonly channel_id: v.StringSchema<undefined>;
|
|
2659
|
+
readonly org_channel: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
2660
|
+
readonly target_team_ids: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2661
|
+
readonly team_id: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2662
|
+
}, undefined>;
|
|
2663
|
+
readonly output: v.LooseObjectSchema<{
|
|
2664
|
+
readonly channel: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2665
|
+
readonly error: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2666
|
+
readonly ok: v.BooleanSchema<undefined>;
|
|
2667
|
+
readonly warning: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2668
|
+
}, undefined>;
|
|
2669
|
+
};
|
|
2670
|
+
readonly setWorkspaceDescription: {
|
|
2671
|
+
readonly id: "SLACK_SET_WORKSPACE_DESCRIPTION";
|
|
2672
|
+
readonly label: "Set workspace description";
|
|
2673
|
+
readonly description: "Set the description of a given workspace. Use when you need to update or change the description text displayed for a Slack workspace.";
|
|
2674
|
+
readonly version: "20260721_00";
|
|
2675
|
+
readonly input: v.ObjectSchema<{
|
|
2676
|
+
readonly description: v.StringSchema<undefined>;
|
|
2677
|
+
readonly team_id: v.StringSchema<undefined>;
|
|
2678
|
+
}, undefined>;
|
|
2679
|
+
readonly output: v.LooseObjectSchema<{
|
|
2680
|
+
readonly error: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2681
|
+
readonly needed: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2682
|
+
readonly ok: v.BooleanSchema<undefined>;
|
|
2683
|
+
readonly provided: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2684
|
+
readonly response_metadata: v.OptionalSchema<v.UnknownSchema, undefined>;
|
|
2685
|
+
readonly warning: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2686
|
+
}, undefined>;
|
|
2687
|
+
};
|
|
2688
|
+
readonly setWorkspaceIcon: {
|
|
2689
|
+
readonly id: "SLACK_SET_WORKSPACE_ICON";
|
|
2690
|
+
readonly label: "Set workspace icon";
|
|
2691
|
+
readonly description: "Sets the icon of a workspace. Use when you need to update or change the workspace icon image. The image must be publicly accessible and in a supported format (GIF, PNG, JPG, JPEG, HEIC, or HEIF).";
|
|
2692
|
+
readonly version: "20260721_00";
|
|
2693
|
+
readonly input: v.ObjectSchema<{
|
|
2694
|
+
readonly image_url: v.StringSchema<undefined>;
|
|
2695
|
+
readonly team_id: v.StringSchema<undefined>;
|
|
2696
|
+
}, undefined>;
|
|
2697
|
+
readonly output: v.LooseObjectSchema<{
|
|
2698
|
+
readonly error: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2699
|
+
readonly needed: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2700
|
+
readonly ok: v.BooleanSchema<undefined>;
|
|
2701
|
+
readonly provided: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2702
|
+
}, undefined>;
|
|
2703
|
+
};
|
|
2704
|
+
readonly setWorkspaceName: {
|
|
2705
|
+
readonly id: "SLACK_SET_WORKSPACE_NAME";
|
|
2706
|
+
readonly label: "Set workspace name";
|
|
2707
|
+
readonly description: "Set the name of a given Slack workspace. Use when you need to update the display name for a workspace in an Enterprise Grid organization.";
|
|
2708
|
+
readonly version: "20260721_00";
|
|
2709
|
+
readonly input: v.ObjectSchema<{
|
|
2710
|
+
readonly name: v.StringSchema<undefined>;
|
|
2711
|
+
readonly team_id: v.StringSchema<undefined>;
|
|
2712
|
+
}, undefined>;
|
|
2713
|
+
readonly output: v.LooseObjectSchema<{
|
|
2714
|
+
readonly error: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2715
|
+
readonly needed: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2716
|
+
readonly ok: v.BooleanSchema<undefined>;
|
|
2717
|
+
readonly provided: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2718
|
+
readonly response_metadata: v.OptionalSchema<v.UnknownSchema, undefined>;
|
|
2719
|
+
readonly warning: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2720
|
+
}, undefined>;
|
|
2721
|
+
};
|
|
2722
|
+
readonly setWorkspaceOwner: {
|
|
2723
|
+
readonly id: "SLACK_SET_WORKSPACE_OWNER";
|
|
2724
|
+
readonly label: "Set workspace owner";
|
|
2725
|
+
readonly description: "Set an existing guest, regular user, or admin user to be a workspace owner. Use when you need to promote a workspace member to owner status. Requires an Enterprise Grid workspace.";
|
|
2726
|
+
readonly version: "20260721_00";
|
|
2727
|
+
readonly input: v.ObjectSchema<{
|
|
2728
|
+
readonly team_id: v.StringSchema<undefined>;
|
|
2729
|
+
readonly user_id: v.StringSchema<undefined>;
|
|
2730
|
+
}, undefined>;
|
|
2731
|
+
readonly output: v.LooseObjectSchema<{
|
|
2732
|
+
readonly error: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2733
|
+
readonly needed: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2734
|
+
readonly ok: v.BooleanSchema<undefined>;
|
|
2735
|
+
readonly provided: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2736
|
+
readonly warning: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2737
|
+
}, undefined>;
|
|
2738
|
+
};
|
|
2739
|
+
readonly shareRemoteFile: {
|
|
2740
|
+
readonly id: "SLACK_SHARE_REMOTE_FILE";
|
|
2741
|
+
readonly label: "Share a remote file in channels";
|
|
2742
|
+
readonly description: "Shares a remote file, which must already be registered with Slack, into specified Slack channels or direct message conversations.";
|
|
2743
|
+
readonly version: "20260721_00";
|
|
2744
|
+
readonly input: v.ObjectSchema<{
|
|
2745
|
+
readonly channels: v.StringSchema<undefined>;
|
|
2746
|
+
readonly external_id: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2747
|
+
readonly file: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2748
|
+
}, undefined>;
|
|
2749
|
+
readonly output: v.LooseObjectSchema<{
|
|
2750
|
+
readonly error: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2751
|
+
readonly file: v.OptionalSchema<v.UnknownSchema, undefined>;
|
|
2752
|
+
readonly needed: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2753
|
+
readonly ok: v.BooleanSchema<undefined>;
|
|
2754
|
+
readonly provided: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2755
|
+
readonly response_metadata: v.OptionalSchema<v.UnknownSchema, undefined>;
|
|
2756
|
+
readonly warnings: v.OptionalSchema<v.ArraySchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
2757
|
+
}, undefined>;
|
|
2758
|
+
};
|
|
2759
|
+
readonly startCall: {
|
|
2760
|
+
readonly id: "SLACK_START_CALL";
|
|
2761
|
+
readonly label: "Start call";
|
|
2762
|
+
readonly description: "Registers a new call in Slack using `calls.add` for third-party call integration; `created_by` is required if not using a user-specific token.";
|
|
2763
|
+
readonly version: "20260721_00";
|
|
2764
|
+
readonly input: v.ObjectSchema<{
|
|
2765
|
+
readonly created_by: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2766
|
+
readonly date_start: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>]>, undefined>;
|
|
2767
|
+
readonly desktop_app_join_url: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2768
|
+
readonly external_display_id: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2769
|
+
readonly external_unique_id: v.StringSchema<undefined>;
|
|
2770
|
+
readonly join_url: v.StringSchema<undefined>;
|
|
2771
|
+
readonly title: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2772
|
+
readonly users: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2773
|
+
}, undefined>;
|
|
2774
|
+
readonly output: v.LooseObjectSchema<{
|
|
2775
|
+
readonly call: v.OptionalSchema<v.UnknownSchema, undefined>;
|
|
2776
|
+
readonly error: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2777
|
+
readonly needed: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2778
|
+
readonly ok: v.BooleanSchema<undefined>;
|
|
2779
|
+
readonly provided: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2780
|
+
readonly response_metadata: v.OptionalSchema<v.UnknownSchema, undefined>;
|
|
2781
|
+
readonly warning: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2782
|
+
}, undefined>;
|
|
2783
|
+
};
|
|
2784
|
+
readonly testAuth: {
|
|
2785
|
+
readonly id: "SLACK_TEST_AUTH";
|
|
2786
|
+
readonly label: "Test authentication";
|
|
2787
|
+
readonly description: "Checks authentication and tells you who you are. Use to verify Slack API authentication is functional and to retrieve identity information about the authenticated user or bot.";
|
|
2788
|
+
readonly version: "20260721_00";
|
|
2789
|
+
readonly input: v.ObjectSchema<{}, undefined>;
|
|
2790
|
+
readonly output: v.LooseObjectSchema<{
|
|
2791
|
+
readonly bot_id: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2792
|
+
readonly enterprise_id: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2793
|
+
readonly error: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2794
|
+
readonly is_enterprise_install: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
2795
|
+
readonly needed: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2796
|
+
readonly ok: v.BooleanSchema<undefined>;
|
|
2797
|
+
readonly provided: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2798
|
+
readonly team: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2799
|
+
readonly team_id: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2800
|
+
readonly url: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2801
|
+
readonly user: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2802
|
+
readonly user_id: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2803
|
+
}, undefined>;
|
|
2804
|
+
};
|
|
2805
|
+
readonly unarchiveChannel: {
|
|
2806
|
+
readonly id: "SLACK_UNARCHIVE_CHANNEL";
|
|
2807
|
+
readonly label: "Unarchive channel";
|
|
2808
|
+
readonly description: "Reverses conversation archival.";
|
|
2809
|
+
readonly version: "20260721_00";
|
|
2810
|
+
readonly input: v.ObjectSchema<{
|
|
2811
|
+
readonly channel: v.StringSchema<undefined>;
|
|
2812
|
+
}, undefined>;
|
|
2813
|
+
readonly output: v.LooseObjectSchema<{
|
|
2814
|
+
readonly error: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2815
|
+
readonly needed: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2816
|
+
readonly ok: v.BooleanSchema<undefined>;
|
|
2817
|
+
readonly provided: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2818
|
+
readonly response_metadata: v.OptionalSchema<v.UnknownSchema, undefined>;
|
|
2819
|
+
readonly warning: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2820
|
+
readonly warnings: v.OptionalSchema<v.ArraySchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
2821
|
+
}, undefined>;
|
|
2822
|
+
};
|
|
2823
|
+
readonly unpinItem: {
|
|
2824
|
+
readonly id: "SLACK_UNPIN_ITEM";
|
|
2825
|
+
readonly label: "Unpin message from channel";
|
|
2826
|
+
readonly description: "Unpins a message, identified by its timestamp, from a specified channel if the message is currently pinned there; this operation is destructive.";
|
|
2827
|
+
readonly version: "20260721_00";
|
|
2828
|
+
readonly input: v.ObjectSchema<{
|
|
2829
|
+
readonly channel: v.StringSchema<undefined>;
|
|
2830
|
+
readonly timestamp: v.StringSchema<undefined>;
|
|
2831
|
+
}, undefined>;
|
|
2832
|
+
readonly output: v.LooseObjectSchema<{
|
|
2833
|
+
readonly error: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2834
|
+
readonly needed: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2835
|
+
readonly ok: v.BooleanSchema<undefined>;
|
|
2836
|
+
readonly provided: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2837
|
+
readonly response_metadata: v.OptionalSchema<v.UnknownSchema, undefined>;
|
|
2838
|
+
readonly warning: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2839
|
+
}, undefined>;
|
|
2840
|
+
};
|
|
2841
|
+
readonly updatesASlackMessage: {
|
|
2842
|
+
readonly id: "SLACK_UPDATES_A_SLACK_MESSAGE";
|
|
2843
|
+
readonly label: "Update a Slack message";
|
|
2844
|
+
readonly description: "Updates a Slack message by timestamp. Provide exactly one visible content mode: `markdown_text` for normal Markdown content, or `blocks` for raw Slack Block Kit layouts. Use `fallback_text` only with `blocks`; it maps to Slack's top-level `text` fallback.";
|
|
2845
|
+
readonly version: "20260721_00";
|
|
2846
|
+
readonly input: v.ObjectSchema<{
|
|
2847
|
+
readonly as_user: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
2848
|
+
readonly blocks: v.OptionalSchema<v.ArraySchema<v.UnknownSchema, undefined>, undefined>;
|
|
2849
|
+
readonly channel: v.StringSchema<undefined>;
|
|
2850
|
+
readonly fallback_text: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2851
|
+
readonly file_ids: v.OptionalSchema<v.ArraySchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
2852
|
+
readonly markdown_text: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2853
|
+
readonly metadata: v.OptionalSchema<v.UnknownSchema, undefined>;
|
|
2854
|
+
readonly reply_broadcast: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
2855
|
+
readonly ts: v.StringSchema<undefined>;
|
|
2856
|
+
}, undefined>;
|
|
2857
|
+
readonly output: v.LooseObjectSchema<{
|
|
2858
|
+
readonly channel: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2859
|
+
readonly error: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2860
|
+
readonly message: v.OptionalSchema<v.UnknownSchema, undefined>;
|
|
2861
|
+
readonly ok: v.BooleanSchema<undefined>;
|
|
2862
|
+
readonly response_metadata: v.OptionalSchema<v.UnknownSchema, undefined>;
|
|
2863
|
+
readonly text: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2864
|
+
readonly ts: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2865
|
+
readonly warning: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2866
|
+
}, undefined>;
|
|
2867
|
+
};
|
|
2868
|
+
readonly updateCallInfo: {
|
|
2869
|
+
readonly id: "SLACK_UPDATE_CALL_INFO";
|
|
2870
|
+
readonly label: "Update call information";
|
|
2871
|
+
readonly description: "Updates the title, join URL, or desktop app join URL for an existing Slack call identified by its ID.";
|
|
2872
|
+
readonly version: "20260721_00";
|
|
2873
|
+
readonly input: v.ObjectSchema<{
|
|
2874
|
+
readonly desktop_app_join_url: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2875
|
+
readonly id: v.StringSchema<undefined>;
|
|
2876
|
+
readonly join_url: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2877
|
+
readonly title: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2878
|
+
}, undefined>;
|
|
2879
|
+
readonly output: v.UnknownSchema;
|
|
2880
|
+
};
|
|
2881
|
+
readonly updateRemoteFile: {
|
|
2882
|
+
readonly id: "SLACK_UPDATE_REMOTE_FILE";
|
|
2883
|
+
readonly label: "Update an existing remote file";
|
|
2884
|
+
readonly description: "Updates metadata or content details for an existing remote file in Slack; this action cannot upload new files or change the fundamental file type.";
|
|
2885
|
+
readonly version: "20260721_00";
|
|
2886
|
+
readonly input: v.ObjectSchema<{
|
|
2887
|
+
readonly external_id: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2888
|
+
readonly external_url: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2889
|
+
readonly file: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2890
|
+
readonly filetype: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2891
|
+
readonly indexable_file_contents: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2892
|
+
readonly preview_image: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2893
|
+
readonly title: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2894
|
+
readonly token: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2895
|
+
}, undefined>;
|
|
2896
|
+
readonly output: v.LooseObjectSchema<{
|
|
2897
|
+
readonly error: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2898
|
+
readonly file: v.OptionalSchema<v.UnknownSchema, undefined>;
|
|
2899
|
+
readonly ok: v.BooleanSchema<undefined>;
|
|
2900
|
+
}, undefined>;
|
|
2901
|
+
};
|
|
2902
|
+
readonly updateSlackList: {
|
|
2903
|
+
readonly id: "SLACK_UPDATE_SLACK_LIST";
|
|
2904
|
+
readonly label: "Update Slack List";
|
|
2905
|
+
readonly description: "Updates a Slack List's metadata via `slackLists.update`. Only the List's `name`, `description_blocks`, and `todo_mode` are editable here. The List to update is identified by its `id` (not `list_id`). Descriptions are rich text — a plain string is wrapped into a `rich_text` block automatically. Requires a user token with the `lists:write` scope.";
|
|
2906
|
+
readonly version: "20260721_00";
|
|
2907
|
+
readonly input: v.ObjectSchema<{
|
|
2908
|
+
readonly description_blocks: v.OptionalSchema<v.UnknownSchema, undefined>;
|
|
2909
|
+
readonly id: v.StringSchema<undefined>;
|
|
2910
|
+
readonly name: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2911
|
+
readonly todo_mode: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
2912
|
+
}, undefined>;
|
|
2913
|
+
readonly output: v.LooseObjectSchema<{
|
|
2914
|
+
readonly error: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2915
|
+
readonly list: v.OptionalSchema<v.UnknownSchema, undefined>;
|
|
2916
|
+
readonly needed: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2917
|
+
readonly ok: v.BooleanSchema<undefined>;
|
|
2918
|
+
readonly provided: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2919
|
+
readonly response_metadata: v.OptionalSchema<v.UnknownSchema, undefined>;
|
|
2920
|
+
readonly warning: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2921
|
+
}, undefined>;
|
|
2922
|
+
};
|
|
2923
|
+
readonly updateSlackListItem: {
|
|
2924
|
+
readonly id: "SLACK_UPDATE_SLACK_LIST_ITEM";
|
|
2925
|
+
readonly label: "Update Slack List item";
|
|
2926
|
+
readonly description: "Updates one or more cells in an EXISTING Slack List row via `slackLists.items.update`. Each cell is identified by `row_id` (an existing row ID matching `^Rec[A-Z0-9]{8,}$`) and `column_id` and carries a typed value; text columns require Block Kit `rich_text` (a plain string is wrapped automatically), and `select` takes the column's choice values (e.g. `[\"todo\"]`). Use it to UPDATE existing rows; the live API rejects `row_id_to_create` inside a cell (despite Slack's inline example), so to ADD a …";
|
|
2927
|
+
readonly version: "20260721_00";
|
|
2928
|
+
readonly input: v.ObjectSchema<{
|
|
2929
|
+
readonly cells: v.ArraySchema<v.UnknownSchema, undefined>;
|
|
2930
|
+
readonly list_id: v.StringSchema<undefined>;
|
|
2931
|
+
}, undefined>;
|
|
2932
|
+
readonly output: v.LooseObjectSchema<{
|
|
2933
|
+
readonly error: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2934
|
+
readonly needed: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2935
|
+
readonly ok: v.BooleanSchema<undefined>;
|
|
2936
|
+
readonly provided: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2937
|
+
readonly response_metadata: v.OptionalSchema<v.UnknownSchema, undefined>;
|
|
2938
|
+
readonly warning: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2939
|
+
}, undefined>;
|
|
2940
|
+
};
|
|
2941
|
+
readonly updateUserGroup: {
|
|
2942
|
+
readonly id: "SLACK_UPDATE_USER_GROUP";
|
|
2943
|
+
readonly label: "Update Slack user group";
|
|
2944
|
+
readonly description: "Updates an existing Slack User Group, which must be specified by an existing `usergroup` ID, with new optional details such as its name, description, handle, or default channels.";
|
|
2945
|
+
readonly version: "20260721_00";
|
|
2946
|
+
readonly input: v.ObjectSchema<{
|
|
2947
|
+
readonly additional_channels: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2948
|
+
readonly channels: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2949
|
+
readonly description: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2950
|
+
readonly enable_section: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
2951
|
+
readonly handle: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2952
|
+
readonly include_count: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
2953
|
+
readonly name: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2954
|
+
readonly team_id: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2955
|
+
readonly usergroup: v.StringSchema<undefined>;
|
|
2956
|
+
}, undefined>;
|
|
2957
|
+
readonly output: v.LooseObjectSchema<{
|
|
2958
|
+
readonly arg: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2959
|
+
readonly error: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2960
|
+
readonly needed: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2961
|
+
readonly ok: v.BooleanSchema<undefined>;
|
|
2962
|
+
readonly provided: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2963
|
+
readonly response_metadata: v.OptionalSchema<v.UnknownSchema, undefined>;
|
|
2964
|
+
readonly subteam: v.OptionalSchema<v.UnknownSchema, undefined>;
|
|
2965
|
+
readonly usergroup: v.OptionalSchema<v.UnknownSchema, undefined>;
|
|
2966
|
+
readonly warning: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2967
|
+
readonly warnings: v.OptionalSchema<v.ArraySchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
2968
|
+
}, undefined>;
|
|
2969
|
+
};
|
|
2970
|
+
readonly updateUserGroupMembers: {
|
|
2971
|
+
readonly id: "SLACK_UPDATE_USER_GROUP_MEMBERS";
|
|
2972
|
+
readonly label: "Update user group members";
|
|
2973
|
+
readonly description: "Replaces all members of an existing Slack User Group with a new list of valid user IDs.";
|
|
2974
|
+
readonly version: "20260721_00";
|
|
2975
|
+
readonly input: v.ObjectSchema<{
|
|
2976
|
+
readonly include_count: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
2977
|
+
readonly team_id: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2978
|
+
readonly usergroup: v.StringSchema<undefined>;
|
|
2979
|
+
readonly users: v.StringSchema<undefined>;
|
|
2980
|
+
}, undefined>;
|
|
2981
|
+
readonly output: v.LooseObjectSchema<{
|
|
2982
|
+
readonly error: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2983
|
+
readonly ok: v.BooleanSchema<undefined>;
|
|
2984
|
+
readonly response_metadata: v.OptionalSchema<v.UnknownSchema, undefined>;
|
|
2985
|
+
readonly usergroup: v.OptionalSchema<v.UnknownSchema, undefined>;
|
|
2986
|
+
readonly warning: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2987
|
+
}, undefined>;
|
|
2988
|
+
};
|
|
2989
|
+
readonly uploadOrCreateAFileInSlack: {
|
|
2990
|
+
readonly id: "SLACK_UPLOAD_OR_CREATE_A_FILE_IN_SLACK";
|
|
2991
|
+
readonly label: "Upload or create a file in Slack";
|
|
2992
|
+
readonly description: "Upload files, images, screenshots, documents, or any media to Slack channels or threads. Supports all file types including images (PNG, JPG, JPEG, GIF), documents (PDF, DOCX, TXT), code files, and more. Can share files publicly in channels or as thread replies with optional comments. Large files may fail with `upload_too_large`; use SLACK_ADD_A_REMOTE_FILE_FROM_A_SERVICE for large uploads. If the API returns `ok=false` with `method_deprecated`, fall back to SLACK_ADD_A_REMOTE_FILE_FROM_A_SERVIC…";
|
|
2993
|
+
readonly version: "20260721_00";
|
|
2994
|
+
readonly input: v.ObjectSchema<{
|
|
2995
|
+
readonly channels: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2996
|
+
readonly content: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2997
|
+
readonly file: v.OptionalSchema<v.UnknownSchema, undefined>;
|
|
2998
|
+
readonly filename: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2999
|
+
readonly filetype: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
3000
|
+
readonly initial_comment: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
3001
|
+
readonly thread_ts: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
3002
|
+
readonly title: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
3003
|
+
readonly token: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
3004
|
+
}, undefined>;
|
|
3005
|
+
readonly output: v.LooseObjectSchema<{
|
|
3006
|
+
readonly error: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
3007
|
+
readonly file: v.OptionalSchema<v.UnknownSchema, undefined>;
|
|
3008
|
+
readonly files: v.OptionalSchema<v.ArraySchema<v.UnknownSchema, undefined>, undefined>;
|
|
3009
|
+
readonly ok: v.BooleanSchema<undefined>;
|
|
3010
|
+
readonly response_metadata: v.OptionalSchema<v.UnknownSchema, undefined>;
|
|
3011
|
+
readonly warning: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
3012
|
+
}, undefined>;
|
|
3013
|
+
};
|
|
3014
|
+
}>;
|