create
Generate and write files with specific content to designated paths using structured input, ensuring controlled and secure file creation on the MCP server.
Instructions
Create a new file with specified content
Input Schema
Name | Required | Description | Default |
---|---|---|---|
file_text | Yes | Content to write to the file | |
path | Yes | Absolute path where file should be created |
Input Schema (JSON Schema)
{
"properties": {
"file_text": {
"description": "Content to write to the file",
"type": "string"
},
"path": {
"description": "Absolute path where file should be created",
"type": "string"
}
},
"required": [
"path",
"file_text"
],
"type": "object"
}