user_id
Retrieve the authenticated EduPage user's unique ID to identify the account in API calls.
Instructions
Return the logged-in user's Edupage user id.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| subdomain | No |
Retrieve the authenticated EduPage user's unique ID to identify the account in API calls.
Return the logged-in user's Edupage user id.
| Name | Required | Description | Default |
|---|---|---|---|
| subdomain | No |
Changes observed during successful MCP inspections.
v0.4.6Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the full burden of behavioral disclosure. It accurately indicates a read-only return of the current user's ID, but it does not mention error behavior when not logged in or any other operational details.
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?
The description is a single, front-loaded sentence with no filler or redundant information. It is appropriately sized for the tool's apparent simplicity.
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?
The description is too sparse for a tool with an undocumented optional parameter and no output schema. It omits subdomain semantics and auth-state behavior, leaving meaningful gaps even for a simple getter.
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?
Schema description coverage is 0%, and the description does not mention the 'subdomain' parameter at all. The agent gets no explanation of whether the parameter is required, what it controls, or how it affects the result.
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?
The description uses a specific verb and resource: 'Return the logged-in user's Edupage user id,' which makes the action unambiguous. It does not explicitly distinguish itself from sibling tools like auth_status, so it misses the top score.
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 provides no guidance on when to use this tool versus alternatives such as auth_status or login, nor does it state prerequisites like requiring an active session. Usage context is only implied by the phrase 'logged-in user.'
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.