工具 API

notion-get-users

Retrieves a list of users in the current workspace. Shows workspace members and guests with their IDs, names, emails (if available), and types (person or bot). Supports cursor-based pagination to iterate through all users in the workspace. <examples> 1. List all users (first page): {} 2. Search for users by name or email: {"query": "john"} 3. Get next page of results: {"start_cursor": "abc123"} 4. Set custom page size: {"page_size": 20} 5. Fetch a specific user by ID: {"user_id": "00000000-0000-4000-8000-000000000000"} 6. Fetch the current user: {"user_id": "self"} </examples>

productivityOAuth1 积分

调用信息

工具标识
notion-mcp-server.notion-get-users
服务提供方
Notion
平均响应
2686 ms
近 7 天调用
1

输入参数

query

Optional search query to filter users by name or email (case-insensitive).

start_cursor

Cursor for pagination. Use the next_cursor value from the previous response to get the next page.

page_size

Number of users to return per page (default: 100, max: 100).

user_id

Return only the user matching this ID. Pass "self" to fetch the current user.