notion_get_me
Retrieve the current Notion bot user to verify authentication and identify the integration account for your workspace.
Instructions
Get current bot user
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Retrieve the current Notion bot user to verify authentication and identify the integration account for your workspace.
Get current bot user
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Changes observed during successful MCP inspections.
v1.6.1Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full behavioral burden, and it discloses nothing beyond the verb: no indication that this is a safe read-only, idempotent call, no auth/permission notes, and no statement of what the response contains. For a low-risk zero-param get this is tolerable but still an unexplained gap.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
A single four-word phrase that is front-loaded and wastes nothing. It is appropriately sized for a trivial zero-parameter tool, though it is terse enough that it borders on under-specification rather than true conciseness.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
With no output schema and no annotations, the description never says what is returned (a bot user object / its fields) or how it behaves. For a trivial identity lookup this is minimally sufficient, but one clause about the return value would close the gap.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The tool takes zero parameters, so the baseline is 4. The description correctly conveys that no input (such as a user ID) is required, since it targets the current bot.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
States a specific verb (Get) and resource (current bot user), and the word 'current' meaningfully distinguishes it from notion_get_user and notion_list_users, which require an ID or return a list. It is clear without opening the schema, though sibling differentiation is only implicit rather than stated.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description offers no when-to-use guidance, no prerequisites, and does not point to notion_get_user or notion_list_users as alternatives. An agent must infer from the name alone that this returns the authenticated bot's own identity.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.