search_skills
Full-text search over the Skill of Skills directory (AI coding skills, plugins, MCP servers across Claude Code, Cursor, Codex, Windsurf, Cline). Results are ranked by the quality-first composite score, not popularity. By default only tools with quality ≥ 40 and risk below high are returned. Scores are evidence, not endorsements.
Parameters5
| query | string | required | What capability you need, e.g. "postgres migrations" |
| platform | string | optional | Restrict to one client platform |
| limit | integer | optional | |
| min_tier | string | optional | Quality floor: curated ≥120, promising ≥80, experimental ≥40 |
| include_high_risk | boolean | optional | Also return tools assessed high/critical risk (off by default) |
Raw schema
{
"type": "object",
"properties": {
"query": {
"type": "string",
"minLength": 2,
"maxLength": 200,
"description": "What capability you need, e.g. \"postgres migrations\""
},
"platform": {
"description": "Restrict to one client platform",
"type": "string",
"enum": [
"claude_code",
"cursor",
"codex",
"ai_studio",
"windsurf",
"cline",
"generic",
"multi_platform"
]
},
"limit": {
"default": 10,
"type": "integer",
"minimum": 1,
"maximum": 20
},
"min_tier": {
"default": "experimental",
"description": "Quality floor: curated ≥120, promising ≥80, experimental ≥40",
"type": "string",
"enum": [
"curated",
"promising",
"experimental"
]
},
"include_high_risk": {
"default": false,
"description": "Also return tools assessed high/critical risk (off by default)",
"type": "boolean"
}
},
"required": [
"query"
],
"$schema": "http://json-schema.org/draft-07/schema#"
}