read-file
Access and retrieve file content by specifying the file path, enabling integration with RateSpot MCP Server for mortgage rate APIs and lending information.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| path | Yes | Path to the file to read |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"path": {
"description": "Path to the file to read",
"type": "string"
}
},
"required": [
"path"
],
"type": "object"
}