writeFile
Store content in a specified file path for Expo-based React Native projects, enabling efficient file manipulation and project management within the Expo MCP Server environment.
Instructions
Write content to a file
Input Schema
Name | Required | Description | Default |
---|---|---|---|
content | Yes | The content to write to the file | |
filePath | Yes | The path to the file to write |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"content": {
"description": "The content to write to the file",
"type": "string"
},
"filePath": {
"description": "The path to the file to write",
"type": "string"
}
},
"required": [
"filePath",
"content"
],
"type": "object"
}