Skip to main content
Glama

get_member

Fetch full documentation for a specific member on a Dalamud type; loads the type's members first if they are not already available.

Instructions

Get full documentation for a specific member on a Dalamud type. Fetches the type's members if not already loaded.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
typeYesType name, e.g. "IClientState" or "Dalamud.Plugin.Services.IClientState"
memberYesMember name (case-insensitive), e.g. "LocalPlayer"

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

B3.3/5.0
Behavior3/5

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

With no annotations, the description carries the full behavioral burden. It usefully discloses a non-obvious side effect: it fetches the type's members if not already loaded. However, it does not state read-only status, error behavior, or return format, leaving significant gaps.

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?

Two concise sentences, front-loaded with the core purpose and followed by a relevant caching detail. Every sentence earns its place with no filler.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a simple two-parameter documentation lookup with no output schema, the description is adequate but not complete. It does not explain what 'full documentation' includes or how errors are surfaced, though the purpose and caching behavior are covered.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, so the schema already documents both parameters fully. The description adds no additional parameter meaning or syntax beyond what the schema provides, making a baseline 3 appropriate.

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?

States a specific verb and resource: 'Get full documentation for a specific member on a Dalamud type.' This clearly distinguishes it from search_members or list_* siblings, though it does not explicitly name an alternative tool, so it stops short of a 5.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description gives no explicit when-to-use guidance, no conditions for choosing this over search_members or get_type, and no prerequisites. The phrase 'for a specific member' implies a use case but does not constitute real usage guidance.

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