Skip to main content
Glama
davidlinjiahao

notion-enhanced

get_users

List users in a Notion workspace with optional page size and pagination cursor. Retrieve user objects for workspace membership or mention handling.

Instructions

List all users in the workspace.

Args: page_size: Number of results per page (max 100) start_cursor: Cursor for pagination

Returns: List of user objects

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
page_sizeNo
start_cursorNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.2.0

TDQS

C2.9/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description carries the full behavioral burden. It discloses scope ('workspace') and return type, but says nothing about permissions required, whether pagination terminates, result ordering, or rate limits for an operation that enumerates all users.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Front-loads the one-line purpose and uses an Args/Returns layout that is easy to scan. No wasted sentences, though the Returns block is redundant with the existing output schema.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Covers both parameters and the operation's scope, and the output schema handles return values, so the core is present. It still lacks the pagination loop semantics and any access requirements that an agent enumerating an entire workspace would want.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 0%, so the description must compensate. It adds a meaningful constraint ('max 100') and clarifies start_cursor is for pagination, but omits the default values and does not explain that start_cursor is null-typed on the first call.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

States a specific verb and resource with scope: 'List all users in the workspace.' An agent can distinguish it from the singular get_user and get_self siblings, though the description never explicitly contrasts them.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

No guidance on when to use this versus alternatives like get_user (single user) or get_self (current user), nor any prerequisites for listing the full workspace directory. Usage must be inferred from the name alone.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.