Skip to main content
Glama

search_members

Locate properties, methods, fields, events, or constructors across loaded types using a name or keyword query. No network access required; results improve as more types load.

Instructions

Search for specific members (properties, methods, fields, events, constructors) across all types that have already been loaded. Fast — no network access required. Gets more useful over time as more types are fetched via get_type.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
kindNoFilter to a specific member kind
limitNoMaximum results (default: 20, max: 50)
queryYesMember name or summary keyword
namespaceNoRestrict to an exact namespace, e.g. "Dalamud.Plugin.Services"

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

A3.8/5.0
Behavior4/5

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

With no annotations present, the description carries the full load and does disclose two meaningful traits: no network access is required, and result usefulness is bounded by what has already been cached via get_type. This completeness caveat is exactly the kind of behavior a search-over-cache tool needs surfaced. It still omits anything about result shape or ordering.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Three short sentences, front-loaded with the core action and scoped immediately after. Every sentence contributes something (scope, performance, cache dependency), though it is slightly more clipped than it needs to be given the missing result-format detail.

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?

There is no output schema and no annotations, so the description is the only source of behavioral context. It covers invocation conditions and cache dependency but says nothing about what a result looks like or how hits are ranked, which is a real gap for a keyword search tool with four parameters.

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 query, kind, limit, and namespace are already documented in the schema, including the default/maximum for limit and an example namespace. The description adds no syntax, matching behavior, or keyword-scope detail beyond what the schema states, so the baseline 3 applies.

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 gives a specific verb (search) and resource (members), and enumerates what counts as a member (properties, methods, fields, events, constructors). It also scopes the search to 'all types that have already been loaded,' which separates it from get_type. It never explicitly contrasts itself with the sibling get_member, so the differentiation is implicit rather than stated.

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

Usage Guidelines4/5

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

It states the operative condition clearly: the tool is fast, needs no network, and improves as more types are pulled in via get_type — effectively telling the agent to populate the cache first. It stops short of naming a when-not case or pointing to get_member for exact-name lookups.

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