write_file
Write text to specified files within secure directories using the Simple MCP Server, ensuring controlled and authorized file operations.
Instructions
指定されたファイルにテキストを書き込みます(許可されたディレクトリのみ)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
content | Yes | 書き込む内容 | |
filepath | Yes | 書き込むファイルのパス |
Input Schema (JSON Schema)
{
"properties": {
"content": {
"description": "書き込む内容",
"type": "string"
},
"filepath": {
"description": "書き込むファイルのパス",
"type": "string"
}
},
"required": [
"filepath",
"content"
],
"type": "object"
}