Skip to main content
Glama

skillmd

Search skills

skillmd_search
Read-onlyIdempotent

Search the SkillMD registry of Agent Skills (SKILL.md files) by task, name or keywords. Returns matching skills with their owner/name slug, description, category, safety verdict and install snippet, best match first.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
typeNoRestrict to single-file skills or multi-file packs
limitNoMaximum number of results (default 20)
queryYesNatural-language query or keywords describing the task or skill
categoryNoRestrict to one category slug, e.g. coding, devops, data, security
min_ratingNoMinimum average rating, 0 to 5
verified_onlyNoReturn only skills from verified publishers (default false)

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
itemsYesMatching skills, best first

Schema Changelog

Changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. First observed

TDQS

A3.6/5.0
Behavior3/5

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

Annotations already establish this as safe, read-only, and idempotent. The description adds useful behavioral context such as 'best match first' and the specific returned fields, but does not disclose deeper operational behavior like result count limits, empty-result handling, or ranking caveats.

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 one tight sentence that front-loads the action and resource, clearly states search dimensions, and lists the useful return fields. There is no filler or redundant repetition of the schema.

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?

Given the rich input schema, output schema, and safety annotations, the description is largely sufficient for an agent to call the tool correctly. The main gap is the lack of explicit guidance on how this search tool relates to sibling tools such as recommend and trending.

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 every parameter is already documented. The description adds little param-specific semantics beyond confirming that the query can be a natural-language task, name, or keyword, which aligns with the query parameter.

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 names a specific verb ('Search'), a specific resource ('SkillMD registry of Agent Skills'), and the search dimensions (task, name, keywords). It clearly conveys what the tool does, though it does not explicitly contrast with sibling tools like skillmd_get or skillmd_recommend.

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?

The description implies that this tool should be used when an agent needs to find matching skills in the registry, and it mentions the returned result fields. However, it does not explicitly state when to prefer this over siblings or when not to use it, leaving usage guidance mostly implicit.

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

A4/5.0
Disambiguation4/5

Each tool targets a distinct workflow: search and trending discover skills, recommend provides context-based suggestions, get returns metadata and body, download retrieves full files. There is mild overlap between get and download since both expose the SKILL.md body, but the descriptions clearly separate inspection from file retrieval.

Naming Consistency4/5

All tools share the skillmd_ prefix and lowercase snake_case style, giving the set a cohesive feel. Most names use clear actions (download, get, recommend, search), though trend is a noun rather than a verb, making it a slight deviation from the otherwise action-oriented pattern.

Tool Count5/5

Five tools is well-scoped for a skill registry server covering discovery, recommendation, metadata lookup, and full content download. Each tool earns its place and the set is neither bloated nor too thin.

Completeness4/5

The consumer-facing workflow is well covered: an agent can search, see trends, get skill details, and download full contents ready to use. Publishing or managing registry entries is not covered, but that appears to be outside the stated purpose of reading public skills.