read_file
Retrieve the contents of a specified file within secure, restricted directories. Use to access file data safely on the Simple MCP Server, ensuring controlled and secure file handling.
Instructions
指定されたファイルの内容を読み込みます(許可されたディレクトリのみ)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
filepath | Yes | 読み込むファイルのパス |
Input Schema (JSON Schema)
{
"properties": {
"filepath": {
"description": "読み込むファイルのパス",
"type": "string"
}
},
"required": [
"filepath"
],
"type": "object"
}