getFiles
Retrieve file content and metadata by specifying multiple file paths, enabling efficient access and analysis of stored files through the MCP File Context Server.
Instructions
Retrieve multiple files by their paths, returning content and metadata for each file
Input Schema
Name | Required | Description | Default |
---|---|---|---|
filePathList | Yes | The list of file paths for the file content to return. |
Input Schema (JSON Schema)
{
"properties": {
"filePathList": {
"description": "The list of file paths for the file content to return.",
"items": {
"properties": {
"fileName": {
"description": "Path and file name for the file to be retrieved.",
"type": "string"
}
},
"required": [
"fileName"
],
"type": "object"
},
"minItems": 1,
"type": "array"
}
},
"required": [
"filePathList"
],
"type": "object"
}