mcp-llm

generate_documentation

Generate documentation for code

Input Schema

NameRequiredDescriptionDefault
codeYesCode to document
formatNoDocumentation format (e.g., JSDoc, Markdown)
languageNoProgramming language of the code

Input Schema (JSON Schema)

{ "properties": { "code": { "description": "Code to document", "type": "string" }, "format": { "description": "Documentation format (e.g., JSDoc, Markdown)", "type": "string" }, "language": { "description": "Programming language of the code", "type": "string" } }, "required": [ "code" ], "type": "object" }