read-file
Extract file contents by specifying the file path within React applications. Simplifies file reading in the react-mcp server to enhance app development workflows.
Instructions
Read the contents of a file
Input Schema
Name | Required | Description | Default |
---|---|---|---|
filePath | Yes | Path to the file to read |
Input Schema (JSON Schema)
{
"properties": {
"filePath": {
"description": "Path to the file to read",
"type": "string"
}
},
"required": [
"filePath"
],
"type": "object"
}