원클릭으로
help
Provides information about using the skill-to-mcp server and how to install additional skills
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Provides information about using the skill-to-mcp server and how to install additional skills
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
| name | help |
| description | Provides information about using the skill-to-mcp server and how to install additional skills |
This is the default skill loaded by the skill-to-mcp server when no skills directory is specified.
The skill-to-mcp server converts AI Skills (following Claude Skills format) into MCP server resources. This help skill provides basic information about using the server.
The server provides three core tools:
To use custom skills with this server, you need to:
skill_to_mcp --skills-dir /path/to/your/skills
Or with uvx:
uvx skill_to_mcp --skills-dir /path/to/your/skills
Set the SKILLS_DIR environment variable:
export SKILLS_DIR=/path/to/your/skills
skill_to_mcp
Configure your MCP client (e.g., Claude Desktop) to pass the skills directory:
{
"mcpServers": {
"my-skills": {
"command": "uvx",
"args": ["skill_to_mcp", "--skills-dir", "/path/to/your/skills"],
"env": {
"UV_PYTHON": "3.12"
}
}
}
}
Each skill must:
SKILL.md file with YAML frontmatter---
name: my-skill-name
description: Brief description of what this skill does and when to use it
---
# Skill Content
Your skill instructions and documentation go here...
my-skills/
├── skill-1/
│ ├── SKILL.md
│ ├── scripts/
│ │ └── example.py
│ └── references/
│ └── guidelines.md
└── skill-2/
└── SKILL.md
get_available_skills tool to discover what's availableget_skill_details and get_skill_related_fileFor more information, visit: