AiDD MCP Server

write_file

Create a new file or overwrite an existing file with new content. Use this to save changes, create new files, or update existing ones. Use with caution as it will overwrite existing files without warning. Path must be relative to the allowed directory. Creates parent directories if needed. Example: Path='notes.txt', Content='Meeting notes for project X'

Input Schema

NameRequiredDescriptionDefault
contentYesContent to write to the file
pathYesPath where to write the file

Input Schema (JSON Schema)

{ "properties": { "content": { "description": "Content to write to the file", "type": "string" }, "path": { "description": "Path where to write the file", "type": "string" } }, "required": [ "path", "content" ], "type": "object" }