mcp-rtfm

customize_template

Create or update a custom documentation template

Input Schema

NameRequiredDescriptionDefault
contentYesTemplate content with {title} placeholder
metadataNoDefault metadata for the template
templateNameYesName of the template

Input Schema (JSON Schema)

{ "properties": { "content": { "description": "Template content with {title} placeholder", "type": "string" }, "metadata": { "description": "Default metadata for the template", "properties": { "category": { "type": "string" }, "tags": { "items": { "type": "string" }, "type": "array" } }, "type": "object" }, "templateName": { "description": "Name of the template", "type": "string" } }, "required": [ "templateName", "content" ], "type": "object" }