https://github.com/Streen9/react-mcp

by Streen9
Verified

edit-file

Create or edit a file

Input Schema

NameRequiredDescriptionDefault
contentYesContent to write to the file
filePathYesPath to the file to edit

Input Schema (JSON Schema)

{ "properties": { "content": { "description": "Content to write to the file", "type": "string" }, "filePath": { "description": "Path to the file to edit", "type": "string" } }, "required": [ "filePath", "content" ], "type": "object" }