Skip to main content
Glama
davidlinjiahao

notion-enhanced

get_self

Retrieve the bot user tied to the current token to confirm bot identity, name, type, and workspace info.

Instructions

Get the bot user associated with the current token.

Returns: Bot user object with name, type, and workspace info

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.2.0

TDQS

A3.9/5.0
Behavior3/5

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

No annotations are provided, so the description carries the burden. It discloses that the result is a bot user tied to the current auth token, which is useful, but omits any auth/permission requirements or failure modes (e.g., invalid token). No annotation contradiction.

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-loaded single sentence plus a brief Returns block. Every line earns its place; the Returns line is somewhat redundant with the output schema but is short.

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

Completeness4/5

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

Output schema exists, so the description needn't enumerate return fields in depth. Given zero params and existing output schema, the description is adequately complete for a simple self-lookup, though it could note token/identity context.

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

Parameters4/5

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 reflects a no-argument identity lookup and the return fields, adding no misleading parameter guidance.

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

Purpose5/5

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

States a specific verb (Get) and resource (the bot user associated with the current token), and distinguishes clearly from sibling user tools like get_users/get_user by scoping to 'the current token' rather than arbitrary users.

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

Usage Guidelines3/5

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

Usage is implied: 'associated with the current token' tells the agent this is for self-identity lookup, but the description never says when to prefer this over get_user/get_users nor states any exclusions.

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