Skip to main content
Glama
shopsapp-for-agents

ShopsApp MCP bridge

get_my_profile

Retrieve the authenticated account's alias and profile URL to identify the current user in the shopping-list service.

Instructions

Read the authenticated account's alias and profile URL.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A4.1/5.0
Behavior3/5

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

No annotations are provided, so the description carries the full burden. It indicates a read operation and mentions the 'authenticated account', implying authentication is required. However, it does not disclose error behavior, idempotency, or any side effects. For a simple read, this is adequate but not rich.

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 a single, clear sentence that front-loads the action and object. No extraneous words or redundancy. Perfectly concise.

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?

Given no parameters, an output schema that defines the return format, and a simple read operation, the description fully covers what the tool does. It specifies the exact data returned (alias and profile URL) and the scope (authenticated account). Nothing essential is 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 zero parameters, so the description needs no parameter-level detail. The schema is trivially complete. The description adds no parameter information but none is needed, so it meets the baseline for a zero-parameter tool.

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 states the verb 'Read' and the specific resource: the authenticated account's alias and profile URL. It distinguishes from siblings like get_public_profile by explicitly scoping to the authenticated account. No ambiguity.

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 description implies this is for the authenticated user's own profile, but it does not explicitly mention when to use this versus get_public_profile or other sibling tools. There is no explicit guidance on context or alternatives, leaving the agent to infer the intended use.

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