Vertex AI MCP Server

by shariqriazz
Verified

read_multiple_files_content

Efficiently read and analyze multiple files simultaneously from a workspace, returning content with file paths. Partial failures do not disrupt the entire operation, ensuring reliable file processing.

Instructions

Read the contents of multiple files simultaneously from the workspace filesystem. This is more efficient than reading files one by one when you need to analyze or compare multiple files. Each file's content is returned with its path as a reference. Failed reads for individual files won't stop the entire operation.

Input Schema

NameRequiredDescriptionDefault
pathsYesAn array of file paths to read (relative to the workspace directory).

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "paths": { "description": "An array of file paths to read (relative to the workspace directory).", "items": { "type": "string" }, "type": "array" } }, "required": [ "paths" ], "type": "object" }
ID: 4flmun3tjc