Claude
entry.detail
Fetch a read-only HeyClaude registry entry detail payload by category and slug. By default (bodyMode='excerpt') the body markdown is trimmed to a short lead and large copyable fields are omitted to conserve context, with bodyChars/bodyTruncated/omittedFields describing what was dropped; pass bodyMode='full' for the complete content or 'none' to drop the body entirely. Use entry.asset to retrieve omitted install/script content.
Remote heyclaude/heyclaude
Remote (network-hosted)
Other tools also called entry.detail?
See providers with this name
Input Schema
{
"type": "object",
"properties": {
"slug": {
"type": "string",
"pattern": "^[a-z0-9-]+$",
"maxLength": 120,
"minLength": 1,
"description": "Slug of the entry to fetch."
},
"bodyMode": {
"enum": [
"none",
"excerpt",
"full"
],
"type": "string",
"description": "How much entry content to return. 'excerpt' (default) trims the body markdown to a short lead and omits large copyable fields (scriptBody, fullCopyableContent, copySnippet), reporting what was dropped via bodyChars/bodyTruncated/omittedFields; 'none' also drops the body; 'full' returns everything. Use entry.asset for omitted install/script content, and request 'full' only when you truly need the complete inline content — it can be tens of kilobytes."
},
"category": {
"type": "string",
"pattern": "^[a-z0-9-]+$",
"maxLength": 120,
"minLength": 1,
"description": "Category of the entry (e.g. 'mcp', 'skills', 'agents')."
}
}
}