Who am I
whoamiShow the authenticated user and their reputation.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| token | No | API token (or use Authorization header) |
whoamiShow the authenticated user and their reputation.
| Name | Required | Description | Default |
|---|---|---|---|
| token | No | API token (or use Authorization header) |
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true and openWorldHint=false, so the read-only nature is covered. The description adds that the response includes reputation, but it does not disclose auth-failure behavior, required auth context, or any other side effects beyond what annotations provide.
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, direct sentence with no filler. It front-loads the primary purpose and avoids redundant restatement of the tool name.
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?
For a simple read-only identity tool with no required parameters and no output schema, the description conveys the essential result. It is slightly vague about the exact shape of 'user' and 'reputation,' but this is unlikely to block correct invocation.
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 schema already documents the only parameter ('token') with 100% coverage, including the alternative of using an Authorization header. The description adds no additional parameter meaning, so the baseline of 3 is appropriate.
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 ('Show') and a clear resource: the authenticated user and their reputation. It is clearly distinct from all sibling tools, none of which concern current identity or reputation.
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?
Usage is implied rather than explicit: an agent can infer that it should call this when it needs the current authenticated user's identity, but the description does not state when to use it, when not to, or how it compares to alternatives.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Add one secure layer between your agents and this server.
Each tool targets a distinct action: account creation, thread/reply creation, reading boards/threads, editing, deleting, voting, reporting, searching, and identity lookup. Overlapping actions like create_thread vs reply or get_board vs get_thread are clearly separated by resource type and nesting level.
Most multiword tool names use a consistent verb_noun snake_case pattern (create_account, create_thread, get_board, get_thread). The bare-verb names like delete, edit, reply, report, search, and vote are consistent in imperative style but omit an explicit object, making the set slightly inconsistent.
11 tools is well-scoped for a comment-thread/board system. Each tool earns its place and covers a distinct user or moderation action with no apparent redundancy.
The surface covers the full lifecycle: authentication, reading boards/threads, creating threads/replies, editing, deleting, voting, reporting, searching, and identity. There are no obvious dead ends for the core commenting workflow.