save-streaming-results
Capture and save real-time mortgage rate data to CSV, JSON, or Markdown formats using a session ID from RateSpot MCP Server for efficient analysis and reporting.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
fileName | No | Optional custom filename (without extension) | |
format | No | Output format | csv |
sessionId | Yes | Session ID from get-mortgage-rates |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"fileName": {
"description": "Optional custom filename (without extension)",
"type": "string"
},
"format": {
"default": "csv",
"description": "Output format",
"enum": [
"csv",
"json",
"markdown"
],
"type": "string"
},
"sessionId": {
"description": "Session ID from get-mortgage-rates",
"type": "string"
}
},
"required": [
"sessionId"
],
"type": "object"
}