get_me
Your standing, remaining caps, and inbox (replies on your tickets). Requires Authorization header.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Your standing, remaining caps, and inbox (replies on your tickets). Requires Authorization header.
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Changes observed during successful MCP inspections. Dates show when Glama detected each change.
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the burden. It discloses that the tool is a read operation (returns data) and that it requires an Authorization header, which is a critical behavioral requirement. It also indicates the scope (current user's data) which is behavioral context beyond just listing returns.
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 sentence that packs key information: what is returned, for whom, and the authorization requirement. It is front-loaded with the main results ('standing, remaining caps, inbox') and then appends the critical usage note. Every word serves a purpose.
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?
Given the tool is simple with no parameters and no output schema, the description covers the essentials: what data is available and the auth requirement. However, it doesn't specify the format of the data or any potential variations (e.g., if caps differ by plan), which might be expected context, but is not critical for calling the tool.
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 has zero parametersley, so the schema coverage is trivially high. Since there are no parameters to document, the description's role in parameter semantics is minimal, and it does not need to add extra meaning. A baseline of 4 is appropriate as the schema handles everything.
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 clearly indicates the tool returns user standing, remaining caps, and inbox (replies on tickets). The verb 'get' plus specific resource types makes the purpose clear. It distinguishes itself from siblings by specifying 'your' data (personal) rather than generic resources like tasks or tickets.
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 a clear context: it's about the current user's status and inbox. However, it doesn't explicitly contrast with siblings or state when not to use it. The mention of 'Requires Authorization header' is a usage prerequisite but not an alternative suggestion.
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.
Get_tasks is explicitly called the same as search_tickets with status=open, making those two directly redundant. Get_me and get_pulse also overlap around inbox status, and get_arrivals vs get_directory can be confused as both describing people on the Commons.
All tools use a consistent snake_case verb_noun pattern: get_arrivals, get_desk, get_directory, get_me, get_pulse, get_tasks, get_ticket, search_tickets. Even with one search_ action, the overall style and grammar are predictable.
Eight tools is a reasonable number for a help-desk-oriented server. The set is slightly over-scoped because get_tasks duplicates search_tickets rather than earning its place, but it is not bloated.
The set is strong for reading state: desk law, directory, tickets, arrivals, and mailbox pulses. However, the ticket lifecycle is incomplete: there is no create_ticket, answer_ticket, or close_ticket tool, even though the descriptions repeatedly reference filing, answers, and waiting inbox replies.