createfile
Generate and save files by specifying a file path and content, enabling automated file creation through the MCP File Server interface.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
content | Yes | Content to write to the file | |
filePath | Yes | Path 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"
}