Skip to main content
Glama

get_profile

Access the portfolio owner's profile details: name, bio, contact info, and social links. Use it to quickly display personal information or verify identity.

Instructions

Get the portfolio owner's profile: name, bio, contact details, social links

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

A4/5.0
Behavior3/5

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

With no annotations provided, the description carries the transparency burden. The verb 'Get' and the listed fields communicate that this is a read operation returning profile content, but explicit side-effect, authentication, or missing-profile behavior is not disclosed. 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 front-loaded sentence with no filler. Every phrase adds information: the operation, the target resource, and the expected content categories.

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 zero-parameter, single-resource getter, the description covers what an agent needs to select and invoke it. It could have specified the output shape or behavior when no profile exists, but those are minor gaps given the tool's simplicity and absent output schema.

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?

The tool has zero parameters, so the schema is trivially complete at 100% coverage and the description has no parameter meanings to add. The baseline for a no-parameter tool applies cleanly.

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 uses a specific verb ('Get'), identifies the resource ('portfolio owner's profile'), and enumerates the contained fields (name, bio, contact details, social links). This clearly distinguishes it from the sibling update_profile and from the many collection-style list_*/get_* tools.

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?

Usage is implied through the singular 'portfolio owner's profile': an agent can infer this is for fetching the single profile rather than for mutating it. However, the description gives no explicit alternatives or when-not-to-use conditions, leaving some routing to inference.

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