Awesome Agent Skills MCP Server
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| LOG_LEVEL | No | Logging level (debug, info, warn, error) | info |
| SKILLS_REPO_URL | No | Skills repository URL | https://github.com/VoltAgent/awesome-agent-skills.git |
| SKILLS_CACHE_DIR | No | Cache directory path | .cache |
| SKILLS_SYNC_INTERVAL | No | Auto-sync interval in minutes (0 to disable) | 60 |
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
} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| list_skillsA | List all available agent skills that can be invoked |
| get_skillA | Get detailed information and documentation for a specific skill |
| invoke_skillB | Invoke a skill with parameters to get formatted instructions |
| refresh_skillsA | Refresh skills cache from the repository |
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 4 tools
Each tool has a clear and distinct purpose: listing, getting details, invoking, and refreshing skills. No overlap in functionality.
All tool names follow a consistent verb_noun pattern with underscores (list_skills, get_skill, invoke_skill, refresh_skills), making them predictable.
Four tools is well-scoped for a skill management server, covering essential operations without unnecessary bloat.
The tool set covers the full lifecycle for the domain: discover (list), inspect (get), execute (invoke), and update cache (refresh). No obvious gaps.