Skip to main content
Glama

validate_skill

Check SKILL.md files for correct structure, naming conventions, and completeness to ensure they're ready for testing in AI agent development workflows.

Instructions

Validate a SKILL.md file for correct structure, naming conventions, and completeness. Call this after writing or editing a SKILL.md before running tests. Returns a list of issues found and whether the skill is valid.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
skill_pathYesPath to the SKILL.md file or directory containing skills (e.g. '.claude/skills/my-skill/SKILL.md')

Implementation Reference

  • The tool 'validate_skill' is implemented as a call to the 'evalview skill validate' CLI command within the MCP server's tool handler.
    elif name == "validate_skill":
        skill_path = os.path.normpath(args.get("skill_path", ""))
        if not skill_path:
            return "Error: 'skill_path' is required."
        cmd = ["evalview", "skill", "validate", skill_path]

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/hidai25/eval-view'

If you have feedback or need assistance with the MCP directory API, please join our Discord server