You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"List all users in the Notion workspace. **Note:** This function requires upgrading to the Notion Enterprise plan and using an Organization API key to avoid permission errors.",
216
+
inputSchema: {
217
+
type: "object",
218
+
properties: {
219
+
start_cursor: {
220
+
type: "string",
221
+
description: "Pagination start cursor for listing users",
222
+
},
223
+
page_size: {
224
+
type: "number",
225
+
description: "Number of users to retrieve (max 100)",
226
+
},
227
+
},
228
+
},
229
+
};
230
+
231
+
constretrieveUserTool: Tool={
232
+
name: "notion_retrieve_user",
233
+
description:
234
+
"Retrieve a specific user by user_id in Notion. **Note:** This function requires upgrading to the Notion Enterprise plan and using an Organization API key to avoid permission errors.",
235
+
inputSchema: {
236
+
type: "object",
237
+
properties: {
238
+
user_id: {
239
+
type: "string",
240
+
description:
241
+
"The ID of the user to retrieve. It should be a 32-character string (excluding hyphens) formatted as 8-4-4-4-12 with hyphens (-).",
242
+
},
243
+
},
244
+
required: ["user_id"],
245
+
},
246
+
};
247
+
248
+
constretrieveBotUserTool: Tool={
249
+
name: "notion_retrieve_bot_user",
250
+
description:
251
+
"Retrieve the bot user associated with the current token in Notion",
0 commit comments