← ClaudeAtlas

skillsmp-searchlisted

Use when finding, browsing, or installing community skills, or when a needed capability might exist as a marketplace skill. Triggers on "find a skill", "search skills", "install skill", "skillsmp", or "marketplace".
Lu1sDV/skillsmd · ★ 1 · Data & Documents · score 62
Install: claude install-skill Lu1sDV/skillsmd
# SkillsMP Search & Installer Search 11,000+ community skills and install them locally. ## When to Use - User asks to find/search/install a skill - User needs a capability that likely exists as a community skill **Not for:** Project-specific conventions (CLAUDE.md), already-installed skills. ## Quick Reference | Step | Action | |------|--------| | Search | `GET https://skillsmp.com/api/skills?q=<query>&sortBy=recent` | | Present | Show top 3-5 results with name, author, description, install count | | Install | `npx skills add <author>/<repo>` or copy to `~/.claude/skills/` | | Verify | Ask Claude "What skills are available?" | ## API Config - **Base**: `https://skillsmp.com/api/v1/skills` - **Key**: `$SKILLSMP_API_KEY` environment variable - **Auth**: `Authorization: Bearer $SKILLSMP_API_KEY` | **Limit**: 500/day ## Search **Keyword** (fast, ~500ms) - specific terms, sort by stars: ```bash curl -s "https://skillsmp.com/api/v1/skills/search?q=QUERY&limit=30&sortBy=stars" \ -H "Authorization: Bearer $SKILLSMP_API_KEY" ``` Response: `data.skills[]` → `id`, `name`, `author`, `description`, `githubUrl`, `stars`, `updatedAt` **AI Semantic** (smart, ~5s) - natural language, conceptual queries: ```bash curl -s "https://skillsmp.com/api/v1/skills/ai-search?q=QUERY" \ -H "Authorization: Bearer $SKILLSMP_API_KEY" ``` Response: `data.data[]` → `score` (0-1) + `skill` object. **Skip entries with `skill: null`.** | Query type | Mode | |------------|------| | Specific tech (