MCP Documentation Service

by alekspetrov
Verified

create_folder

Create a new folder in the docs directory. Optionally creates a README.md file in the new folder with basic frontmatter.

Input Schema

NameRequiredDescriptionDefault
createReadmeNo
pathYes

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "createReadme": { "default": true, "type": "boolean" }, "path": { "type": "string" } }, "required": [ "path" ], "type": "object" }