Skip to main content
Glama

capabilities_search

Read-only

Search capabilities. Action results use canonical names; copy the exact returned name into capabilities_get, capabilities_preflight, and capabilities_execute.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
modeNoSearch mode (default: hybrid)
limitNoMax results (default: 20)
queryNoSingle search query
scopeNo
typesNoFilter by type (default: all capabilities). Use action for integration-backed Actions.
offsetNoPagination offset (default: 0)
queriesNoBatch search queries
skillTypeNo@deprecated Prefer types: ["action"] or types: ["skill"]. Deprecated persisted values are accepted.
targetEnvNoTarget environment (default: current)
bypassCacheNoBypass cache and force fresh search (default: false)
enabledOnlyNoFilter integrations by enabled status (default: true)
skillStatusNoFilter skills by status (default: active)
allowLeadingWildcardNoAllow leading wildcards (default: false)
allowedIntegrationIdsNoSecurity boundary: only return skills where required_integration_ids are a subset

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

TDQS

A3.8/5.0
Behavior3/5

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

With readOnlyHint=true annotation, the safety profile is already established. The description adds a useful behavioral detail about canonical names being returned, which is beyond the annotations. However, it does not elaborate on caching, pagination limits, or result filtering behavior, which are covered in the schema but not synthesized for the agent.

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 two short sentences, with the primary action first ('Search capabilities') and a focused secondary sentence about using results. Every word serves a purpose; there is no filler or repetition.

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?

The tool has a rich output schema and detailed parameter descriptions, so the description does not need to explain return values. It effectively captures the core workflow (search, then use canonical name in related tools) and is complete for a search tool given the supporting schemas. Minor gap: it does not mention batching behavior via 'queries' vs 'query', but that is available in the schema.

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 93%, so parameters are well-documented in the input schema. The description itself does not add extra meaning to any parameters; its only added value is the canonical name tip, which relates to output rather than input. This meets the baseline for schema-heavy tools.

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 states the tool's function as 'Search capabilities,' which is a clear verb+resource pairing. It also implies a distinction from sibling tools by mentioning that results should be fed into capabilities_get, capabilities_preflight, and capabilities_execute, though it does not explicitly name the alternative to avoid.

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?

The description gives explicit downstream usage guidance: 'copy the exact returned name into capabilities_get, capabilities_preflight, and capabilities_execute.' This tells the agent when to use the search results and how to connect to related tools. It stops short of saying when not to use search or when to prefer another tool, but the context is fairly clear.

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

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

A3.8/5.0
Disambiguation5/5

Each tool owns a distinct resource/action pair (e.g., search/get/preflight/execute for capabilities, read/feedback for skills, status/connect/disconnect for vault), and detailed descriptions make boundaries explicit. No two tools appear to do the same thing, and the preflight/execute separation is clearly delineated.

Naming Consistency2/5

Naming mixes bare nouns (auth, billing, vault), prefixed subject-verb pairs (capabilities_execute, skills_feedback), and the outlier 'loadout_bug_submit' with inconsistent pluralization (capabilities vs skills vs loadout). Although all tokens are lowercase and underscore-separated, there is no single predictable pattern, and some tools (e.g., 'billing') are action containers while others are single-action functions.

Tool Count5/5

Thirteen tools is well within the ideal 3–15 range, and each tool serves a clearly separable domain (authentication, billing, capabilities, skills, vault, audit, feedback, bug reporting). No tool feels redundant, and the count is appropriate for the breadth of functionality offered.

Completeness4/5

The surface covers the full lifecycle for capabilities (search/get/preflight/execute/feedback) and handles account, billing, vault, audit, and support needs. The only gap is lack of a general skill search or listing capability—skills can only be read by exact canonical identity, which may impede discovery—but core workflows are otherwise complete.

Resources