read_file
View and access file contents from your local development projects directory to examine code, configuration files, and documentation.
Instructions
Read the contents of a file from the local file system. Use this to view existing code files.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| path | Yes | Path to the file (relative to projects directory or absolute) |
Input Schema (JSON Schema)
{
"properties": {
"path": {
"description": "Path to the file (relative to projects directory or absolute)",
"type": "string"
}
},
"required": [
"path"
],
"type": "object"
}