Skip to main content
Glama

schoolpass_whoami

Read-onlyIdempotent

Identify the parent account currently authenticated, returning member ID, user type, and name. Initiates login bootstrap when authentication hasn't been established.

Instructions

Return the parent account this server is signed in as: member id, user type, and name. Runs the login bootstrap if it has not run yet.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed1 schema field changedv1.0.0
    • changedInput schema / $schema
      Previous value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
  2. First observedv0.2.0

TDQS

A4.5/5.0
Behavior4/5

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

The annotations already declare readOnly, idempotent, and openWorld hints, and the description does not contradict them. It adds meaningful behavioral context by disclosing that it may run the login bootstrap on first use, which an agent would not infer from the schema alone.

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

Conciseness5/5

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

The description is two tight sentences: the first states what is returned, and the second discloses the bootstrap side effect. No filler, no repetition of schema data, and the most important information is front-loaded.

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

Completeness5/5

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

For a no-parameter, read-only identity tool, the description is complete: it names the returned fields, references the authentication context, and covers the only relevant behavioral nuance (login bootstrap). The lack of an output schema is mitigated because the return values are explicitly listed.

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 has zero parameters, so the baseline is 4 and there is no parameter-description burden to meet. The description wisely focuses on return contents rather than inventing unnecessary parameter detail.

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?

The description clearly names the verb ('Return'), the resource ('the parent account this server is signed in as'), and the exact payload fields (member id, user type, name). This distinguishes it from siblings like get_profile or list_students, since it specifically targets the server's current authenticated identity.

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

Usage Guidelines4/5

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

The context is clear: this is the tool to call when you need the server's signed-in parent identity. It also hints at a bootstrap behavior ('Runs the login bootstrap if it has not run yet'), which gives useful sequencing context. However, it does not explicitly state when not to use it or mention an alternative sibling.

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