skills-mcp
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| SKILLS_SOURCES | Yes | Comma-separated skill sources (required). Each entry is `owner/repo`, `owner/repo#ref`, or an absolute local path. | |
| SKILLS_CACHE_DIR | No | Cache directory for GitHub tarballs (default: OS tmpdir). | OS tmpdir |
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {
"listChanged": true
} |
| resources | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| list_skillsA | List all available agent skills with name, description, source, and bundled files. Call read_skill to load one. |
| read_skillA | Read a skill's SKILL.md instructions. Use the returned guidance for the current task; it may reference supporting files readable via read_skill_file. |
| read_skill_fileA | Read a supporting file bundled with a skill (paths are listed by list_skills and referenced from SKILL.md). |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 3 tools
Each tool has a distinct, non-overlapping role: listing skills, reading the main skill instructions, and reading supporting files. There is no ambiguity about which tool to use for a given step.
All tool names follow a consistent verb_noun pattern: list_skills, read_skill, read_skill_file. The verb and noun are clear and predictable.
Three tools is perfectly scoped for a skills management server. Each tool is necessary and there are no redundant or extraneous tools.
The tool surface covers the full workflow for accessing skills: discovery, reading the primary instructions, and accessing bundled files. No obvious gaps for the stated purpose.