Vertex AI MCP Server

by shariqriazz
Verified

write_file_content

Create or overwrite files in a workspace filesystem with specified content. Use to manage text files accurately, ensuring proper encoding. Ideal for file management in Vertex AI environments.

Instructions

Create a new file or completely overwrite an existing file in the workspace filesystem with new content. Use with caution as it will overwrite existing files without warning. Handles text content with proper encoding.

Input Schema

NameRequiredDescriptionDefault
contentYesThe full content to write to the file.
pathYesThe path of the file to write (relative to the workspace directory).

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "content": { "description": "The full content to write to the file.", "type": "string" }, "path": { "description": "The path of the file to write (relative to the workspace directory).", "type": "string" } }, "required": [ "path", "content" ], "type": "object" }
ID: 4flmun3tjc