readFile
Retrieve file contents by specifying the file path using this tool, designed for managing Expo-based React Native applications in the Expo MCP Server environment.
Instructions
Read the contents of a file
Input Schema
Name | Required | Description | Default |
---|---|---|---|
filePath | Yes | The path to the file to read |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"filePath": {
"description": "The path to the file to read",
"type": "string"
}
},
"required": [
"filePath"
],
"type": "object"
}