read_file
Retrieve the complete contents of a specified file by providing its path. Enables Claude AI to access and process file data within allowed filesystem operations.
Instructions
Read complete contents of a file
Input Schema
Name | Required | Description | Default |
---|---|---|---|
path | Yes | Path to the file to read |
Input Schema (JSON Schema)
{
"properties": {
"path": {
"description": "Path to the file to read",
"type": "string"
}
},
"required": [
"path"
],
"type": "object"
}