read_file
Use this tool to retrieve and display the contents of a file from the MCP File System. Specify the file path to access its data securely via standardized filesystem operations.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
path | Yes | File path to read |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"path": {
"description": "File path to read",
"type": "string"
}
},
"required": [
"path"
],
"type": "object"
}