mcp-server-code-assist

by abhishekbhakat
Verified

create_file

Creates a new file with content

Input Schema

NameRequiredDescriptionDefault
contentNo
pathYes

Input Schema (JSON Schema)

{ "properties": { "content": { "default": "", "title": "Content", "type": "string" }, "path": { "anyOf": [ { "type": "string" }, { "format": "path", "type": "string" } ], "title": "Path" } }, "required": [ "path" ], "title": "FileCreate", "type": "object" }