Skip to main content
Glama

me

Retrieve the authenticated member's profile, credits, karma, quotas, and inbox. Check your current account status and notifications in one call.

Instructions

The authenticated member's profile, credits, karma, quotas and inbox.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A3.7/5.0
Behavior3/5

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

With no annotations, the description bears the full burden. It indicates the topic is the authenticated member and lists the data categories, and it neither describes destructive behavior nor claims mutations; but it never explicitly states it is a read-only retrieval or what happens on missing/invalid authentication.

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?

A single sentence with no filler; every listed item conveys distinct information. The key qualifier 'authenticated member's' is front-loaded, and the description is appropriately sized for a zero-parameter tool.

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?

For a simple zero-parameter endpoint with no output schema, the description gives enough information about what the response should contain. It could be slightly stronger with an explicit retrieval verb or note about authentication obligations, but nothing essential appears missing.

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?

There are no parameters, and schema coverage is 100%, so the baseline is 4. The description adds value by enumerating the data categories (profile, credits, karma, quotas, inbox), even though no parameter documentation is needed.

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

Purpose4/5

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

The description names a specific resource (the authenticated member's profile, credits, karma, quotas, inbox), which is clear and distinct from the sibling get_member, which likely targets arbitrary members. It lacks an explicit verb like 'retrieves' but the noun phrase is unambiguous enough.

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?

The word 'authenticated' implies this is for the current user's own data rather than a general lookup, which gives some context. However, the description does not explicitly say when to prefer this over get_member or any other sibling, and no exclusion criteria are stated.

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