Claude
registry.recommend
Answer 'what should I use to do X' in one call. Given a plain-language task (and optional platform/category), returns the best-match HeyClaude entries ranked by fit — each with why it fits, trust summary, disclosed safety/privacy notes, and an inline install block — plus a topPick and a consolidated installPlan. Unlike workflow.plan it does not force category diversity; it returns the genuinely best matches. Collapses the search → compare → detail → asset loop into a single answer-shaped response.
Remote heyclaude/heyclaude
Remote (network-hosted)
Other tools also called registry.recommend?
See providers with this name
Input Schema
{
"type": "object",
"properties": {
"task": {
"type": "string",
"maxLength": 240,
"minLength": 2,
"description": "Plain-language description of what you want to accomplish, e.g. 'review pull requests in Claude Code' or 'connect to a Postgres database'."
},
"limit": {
"type": "integer",
"maximum": 5,
"minimum": 1,
"description": "Maximum recommendations to return (default 3)."
},
"category": {
"type": "string",
"pattern": "^[a-z0-9-]+$",
"maxLength": 120,
"minLength": 1,
"description": "Restrict recommendations to a single category."
},
"platform": {
"type": "string",
"maxLength": 80,
"minLength": 1,
"description": "Restrict to entries compatible with this platform."
}
}
}