read_content
Retrieve and display content from multiple specified files using a TypeScript-based MCP server designed for managing and summarizing text notes.
Instructions
Read content from multiple specified files.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
paths | Yes | Array of relative file paths to read. |
Input Schema (JSON Schema)
{
"properties": {
"paths": {
"description": "Array of relative file paths to read.",
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"paths"
],
"type": "object"
}