Skip to main content
Glama

List Skills

list_skills

List available skills by returning qualified names and descriptions with pagination. Browse skills to locate and manage them.

Instructions

List qualified names and descriptions with pagination.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
limitNo
offsetNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

B3.4/5.0
Behavior3/5

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

With no annotations, the description carries the behavioral burden. It discloses that the operation returns names/descriptions and supports pagination, implying a read-only list operation. However, it does not explicitly state lack of side effects, ordering behavior, or whether the list spans all stores or a current context.

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. It conveys the resource, the returned data, and the pagination capability efficiently.

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 list operation with an output schema present, the description covers the core purpose. However, it lacks explicit guidance on when to use this tool over sibling list/use/write tools, and omits context about scope or limitations, leaving some gaps for an agent to infer.

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

Parameters2/5

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

Schema description coverage is 0%, so the description must compensate for limit and offset. It merely says 'with pagination,' which hints at the parameters but does not explain their meaning, defaults, maximum values, or interaction. The parameter names are somewhat self-evident, but the description adds minimal value beyond the schema.

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 ('List'), identifies the resource ('skills'), and states the exact payload ('qualified names and descriptions'). It clearly differentiates from siblings like list_stores by the resource type and from mutating siblings like write_skill/use_skill by the read-only list action.

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?

No usage context is provided beyond pagination. The description does not say when to call list_skills versus alternatives such as list_stores, use_skill, or write_skill, nor does it mention any prerequisites or exclusions.

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