readfile
Access file contents from a specified path using the MCP File Server. This tool allows AI models to read local files efficiently through a standardized protocol.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
filePath | Yes | Path to the file to read |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"filePath": {
"description": "Path to the file to read",
"type": "string"
}
},
"required": [
"filePath"
],
"type": "object"
}