بنقرة واحدة
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: