read_multiple_files
Read content from multiple files simultaneously using the MCP File System. Input an array of file paths to retrieve data efficiently.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
paths | Yes | Array of file paths to read |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"paths": {
"description": "Array of file paths to read",
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"paths"
],
"type": "object"
}