analyze-file
Process and extract relevant data from files to support mortgage rate analysis, enabling integration with RateSpot MCP Server for real-time rate comparisons and lending insights.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
path | Yes | Path to the file to analyze |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"path": {
"description": "Path to the file to analyze",
"type": "string"
}
},
"required": [
"path"
],
"type": "object"
}