Skip to main content
Glama

skillmd

Server Details

Search, fetch, lint, and install Agent Skills (SKILL.md) from the SkillMD registry.

If you are the author of this connector, you can claim ownership with GitHub, an HTTP challenge, or a DNS record. Claimed connector authors can inspect health checks, view analytics, and manage their listing.
Status
Healthy
Last Tested
Transport
Streamable HTTP
URL
Repository
skillmds/skillmd
GitHub Stars
1
Server Listing
skillmds

Available Tools

5 tools
skillmd_downloadDownload skill filesA
Read-onlyIdempotent
Inspect

Return the full contents of any public skill by owner/name slug: the SKILL.md text plus every companion file for packs, ready to write to disk. Skills are plain-text instructions an agent reads on demand; nothing executes, and every listed skill has passed SkillMD's safety review.

ParametersJSON Schema
NameRequiredDescriptionDefault
slugYesSkill identifier as owner/name, e.g. anthropic/pdf

Output Schema

ParametersJSON Schema
NameRequiredDescription
slugYesowner/name of the skill
filesYesEvery file in the skill, SKILL.md first

TDQS

A4.1/5.0
Behavior4/5

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

Annotations already declare read-only, idempotent, and non-destructive. The description adds extra context that skills are 'plain-text instructions' and 'nothing executes', plus every listed skill has passed safety review, which goes beyond the annotations to explain the safe nature and content type.

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 concise, front-loaded with the primary purpose, and uses two clear sentences. No redundant or vague terminology, and every sentence contributes useful information.

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

Completeness5/5

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

Given the single parameter and the presence of an output schema, the description is complete: it explains what is returned (full contents and companion files), the format (plain-text), the safety aspect, and the intended use (ready to write to disk). No critical usage context is missing.

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?

The schema already provides a description and example for the slug parameter (100% coverage). The tool description merely repeats 'owner/name slug' without adding new parameter-specific semantics, so the baseline of 3 applies.

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 clearly states the specific action (return full contents), the resource (public skill by owner/name slug), and differentiates from siblings by emphasizing 'full contents' and 'every companion file for packs', which implies a complete download rather than a single item retrieval.

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 usage for downloading full skill packs (e.g., 'ready to write to disk') but does not explicitly contrast with alternatives like skillmd_get or provide when-to-use/when-not-to-use guidance. The context is implicit, not explicit.

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

skillmd_getGet skill detailsA
Read-onlyIdempotent
Inspect

Fetch one skill by owner/name slug: description, SKILL.md body, provenance (source repo and pinned commit), license, safety verdict and capability flags, plus companion file listing for packs.

ParametersJSON Schema
NameRequiredDescriptionDefault
slugYesSkill identifier as owner/name, e.g. anthropic/pdf

Output Schema

ParametersJSON Schema
NameRequiredDescription
slugYesowner/name identifier, e.g. anthropic/pdf
tagsNo
typeNosingle SKILL.md or a multi-file pack
filesNoCompanion files for packs
titleYesHuman-readable skill title
raw_mdNoVerbatim SKILL.md including frontmatter when stored
body_mdNoMarkdown body of SKILL.md
licenseNoSPDX license id when declared
categoryNoCategory name
verifiedNoPublished by a verified publisher
categoriesNo
commit_shaNoPinned upstream commit
owner_nameNoPublisher display name
repo_starsNoGitHub stars of the source repository
descriptionYesWhat the skill does and when an agent should use it
source_repoNoUpstream repository
owner_handleNoPublisher handle
security_flagsNoCapability flags: docs_only, network_calls, executes_scripts, reads_secrets, untrusted_install
install_snippetNoOne-line install command
ai_audit_verdictNoSafety review verdict: pass, caution, warning, fail or inconclusive

TDQS

A4.3/5.0
Behavior4/5

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

Annotations already declare the operation read-only, idempotent, and non-destructive. The description adds useful behavioral detail by listing exactly what data is returned, including provenance, license, safety verdict, capability flags, and companion files. No contradictions with annotations.

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, well-structured sentence that front-loads the action and then efficiently lists the returned fields. Every phrase contributes useful information and there is no redundant wording.

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

Completeness5/5

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

For a simple read-only tool with one parameter, a rich output schema, and safety annotations, the description covers all necessary context: what it fetches, how it is identified, and what the result includes. Nothing essential is missing.

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% and already documents the slug as an owner/name identifier with an example. The description's 'owner/name slug' phrasing repeats this meaning without adding new format or validation information, so the baseline of 3 applies.

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 states a specific verb ('Fetch'), a specific resource ('one skill by owner/name slug'), and enumerates the returned content, distinguishing it clearly from sibling tools like skillmd_search or skillmd_download. The scope is unambiguous.

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 phrase 'Fetch one skill by owner/name slug' clearly implies this tool is for retrieving a known skill by its identifier, while the sibling names suggest alternatives for searching, recommendation, and trending. It does not explicitly state when not to use it, but the context is clear enough.

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

skillmd_recommendRecommend skillsA
Read-onlyIdempotent
Inspect

Recommend skills. With based_on set to a skill's owner/name slug, returns the top skills in that skill's category (excluding itself); without it, returns what is trending over the last 30 days.

ParametersJSON Schema
NameRequiredDescriptionDefault
limitNoMaximum number of results (default 10)
based_onNoSkill slug (owner/name) to base recommendations on

Output Schema

ParametersJSON Schema
NameRequiredDescription
itemsYesMatching skills, best first

TDQS

A4.5/5.0
Behavior4/5

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

Annotations already declare readOnlyHint, idempotentHint, and destructiveHint, so the safety profile is covered. The description adds meaningful behavioral context: based_on restricts results to the skill's category, excludes the skill itself, and the no-argument fallback returns trending over the last 30 days. No contradictions with annotations.

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 sentences carry all essential information with no filler. The primary action is front-loaded, and the conditional modes are described compactly in one sentence each.

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

Completeness5/5

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

With only two optional parameters, an output schema present, and annotations covering safety, the description is complete. It explains both parameter modes and the default behavior, so an agent has enough context to select and invoke the tool correctly.

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

Parameters4/5

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

Schema coverage is 100%, so the baseline is 3. The description adds real semantic value beyond the schema by explaining what based_on means in practice (category-based recommendations, excluding itself, falling back to trending). Limit is not described in the description, but the schema fully documents its constraints and default.

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 states a specific action ('Recommend skills') and precisely defines two modes of behavior: category-based recommendations when based_on is present, and 30-day trending when it is absent. This clearly distinguishes it from sibling tools like skillmd_get, skillmd_search, and skillmd_trending by describing the selection criteria and behavior.

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 conditional usage: set based_on for skill-category recommendations, omit it for trending results. It does not explicitly name alternatives or state when not to use this tool, but the conditional logic provides clear guidance for the two supported modes.

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

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. 5 tool updates
    • First observedskillmd_download
    • First observedskillmd_get
    • First observedskillmd_recommend
    • First observedskillmd_search
    • First observedskillmd_trending

Frequently Asked Questions

Discussions

No comments yet. Be the first to start the discussion!

Related MCP Connectors

Related MCP Servers

  • A
    license
    Not graded
    quality
    C
    maintenance
    Enables AI agents to discover, install, and manage SKILL.md skills from a Git-backed registry via MCP tools for search, install, and list operations.
    17
    1
    MIT
  • A
    license
    A
    quality
    B
    maintenance
    Enables AI agents to autonomously search, evaluate, and install skills from the skills.sh catalog.
    2
    4
    5
    ISC
  • A
    license
    A
    quality
    C
    maintenance
    Enables discovery and installation of agent skills from curated GitHub repositories, allowing users to search large collections and inspect skill contents directly. It supports downloading skills locally and provides grounded scaffolds for creating new skills based on existing patterns.
    5
    2
    MIT
  • A
    license
    A
    quality
    B
    maintenance
    Enables MCP hosts to discover, browse, and load Agent Skills from one or many SKILL.md libraries over the Model Context Protocol, with namespaced libraries, search/list/get tools, progressive disclosure, and a digest-verified pull client for syncing skills to disk.
    7
    1
    MIT
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.