Tool tree
Templates, agents, and integrations for Claude Code
get-catalog-statsAnswer
Returns aggregate statistics for the aitmpl.com catalog: number of components per type and global download totals.
View tool JSON
{
"name": "get-catalog-stats",
"kind": "answer",
"impl": "imperative",
"description": "Returns aggregate statistics for the aitmpl.com catalog: number of components per type and global download totals.",
"inputSchema": {
"type": "object",
"properties": {}
}
}get-component-detailsAnswer
Returns the full catalog entry for one component from aitmpl.com, including its description, category, install command and page URL. Requires the component name (as returned by search-components) and its type.
View tool JSON
{
"name": "get-component-details",
"kind": "answer",
"impl": "imperative",
"description": "Returns the full catalog entry for one component from aitmpl.com, including its description, category, install command and page URL. Requires the component name (as returned by search-components) and its type.",
"inputSchema": {
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "The component name or catalog path."
},
"type": {
"type": "string",
"enum": [
"agent",
"command",
"mcp",
"setting",
"hook",
"skill",
"loop",
"mod",
"template"
],
"description": "The component type."
}
},
"required": [
"name",
"type"
]
}
}get-install-commandAnswer
Returns the exact npx command to install a Claude Code component from aitmpl.com (e.g. "npx claude-code-templates@latest --agent developer-team/frontend-developer").
View tool JSON
{
"name": "get-install-command",
"kind": "answer",
"impl": "imperative",
"description": "Returns the exact npx command to install a Claude Code component from aitmpl.com (e.g. \"npx claude-code-templates@latest --agent developer-team/frontend-developer\").",
"inputSchema": {
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "The component name or catalog path."
},
"type": {
"type": "string",
"enum": [
"agent",
"command",
"mcp",
"setting",
"hook",
"skill",
"loop",
"mod",
"template"
],
"description": "The component type."
}
},
"required": [
"name",
"type"
]
}
}search-componentsAnswer
Searches the aitmpl.com catalog of Claude Code components (agents, commands, MCPs, settings, hooks, skills, loops, mods, templates) by free-text query. Returns up to 20 matches with name, type, category, description and the npx install command.
View tool JSON
{
"name": "search-components",
"kind": "answer",
"impl": "imperative",
"description": "Searches the aitmpl.com catalog of Claude Code components (agents, commands, MCPs, settings, hooks, skills, loops, mods, templates) by free-text query. Returns up to 20 matches with name, type, category, description and the npx install command.",
"inputSchema": {
"type": "object",
"properties": {
"query": {
"type": "string",
"description": "Free-text search over component name, description and category."
},
"type": {
"type": "string",
"enum": [
"agent",
"command",
"mcp",
"setting",
"hook",
"skill",
"loop",
"mod",
"template"
],
"description": "Optional: restrict results to one component type."
}
},
"required": [
"query"
]
}
}