Node Omnibus MCP Server

create_documentation

Generate project documentation

Input Schema

NameRequiredDescriptionDefault
nameNoComponent or API name for specific documentation
pathYesProject directory path
typeYesDocumentation type

Input Schema (JSON Schema)

{ "properties": { "name": { "description": "Component or API name for specific documentation", "type": "string" }, "path": { "description": "Project directory path", "type": "string" }, "type": { "description": "Documentation type", "enum": [ "readme", "api", "component" ], "type": "string" } }, "required": [ "path", "type" ], "type": "object" }