write_file
Create or write text files directly to Proton Drive by specifying the file path and content using Proton Drive MCP server integration.
Instructions
Write or create a file in Proton Drive
Input Schema
Name | Required | Description | Default |
---|---|---|---|
content | Yes | Text content to write to the file | |
path | Yes | File path relative to Proton Drive root |
Input Schema (JSON Schema)
{
"properties": {
"content": {
"description": "Text content to write to the file",
"type": "string"
},
"path": {
"description": "File path relative to Proton Drive root",
"type": "string"
}
},
"required": [
"path",
"content"
],
"type": "object"
}