MCP File Server

createfile

Input Schema

NameRequiredDescriptionDefault
contentYesContent to write to the file
filePathYesPath where the file should be created

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "content": { "description": "Content to write to the file", "type": "string" }, "filePath": { "description": "Path where the file should be created", "type": "string" } }, "required": [ "filePath", "content" ], "type": "object" }

You must be authenticated.

Other Tools