@savvly/mcp-server 1.0.5 → 1.0.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cli.js +10 -7
- package/dist/cli.js.map +1 -1
- package/package.json +1 -1
package/dist/cli.js
CHANGED
|
@@ -21704,7 +21704,7 @@ var PRODUCT_COMPARISON = {
|
|
|
21704
21704
|
var VALID_PRODUCT_TYPES = COMPARISONS.map((c) => c.product_type);
|
|
21705
21705
|
|
|
21706
21706
|
// ../../src/mcp/version.ts
|
|
21707
|
-
var SERVER_VERSION = "1.0.
|
|
21707
|
+
var SERVER_VERSION = "1.0.6";
|
|
21708
21708
|
|
|
21709
21709
|
// ../../src/data/faq.ts
|
|
21710
21710
|
var FAQ = [
|
|
@@ -22542,7 +22542,7 @@ var PayoutAgeRowSchema = external_exports.object({
|
|
|
22542
22542
|
savvly_upside_upper: external_exports.number().describe(
|
|
22543
22543
|
"USD. Upper bound for the incremental Savvly upside at this age. Tends to be large at 90/95 where the market alone portfolio is depleted."
|
|
22544
22544
|
)
|
|
22545
|
-
});
|
|
22545
|
+
}).passthrough();
|
|
22546
22546
|
var PayoutEnvelopeSchema = external_exports.object({
|
|
22547
22547
|
total_savvly_upside_lower: external_exports.number().describe(
|
|
22548
22548
|
"USD. Lower bound of the cumulative incremental upside Savvly provides vs. investing in the market alone, summed across all milestone payout ages."
|
|
@@ -22580,7 +22580,7 @@ var PayoutEnvelopeSchema = external_exports.object({
|
|
|
22580
22580
|
payout_age_dependent_values: external_exports.array(PayoutAgeRowSchema).describe(
|
|
22581
22581
|
"Per-milestone-age breakdown of the projection. Typically 4 rows for ages 80, 85, 90, 95. Each row contains the with Savvly payout, the market alone counterfactual, and the incremental Savvly upside for that age, each with `_lower`/`_upper` bounds."
|
|
22582
22582
|
)
|
|
22583
|
-
});
|
|
22583
|
+
}).passthrough();
|
|
22584
22584
|
var RetirementAgeRowSchema = external_exports.object({
|
|
22585
22585
|
age: external_exports.number().int().describe("Age (years) the row reports."),
|
|
22586
22586
|
retirement_savings_without_savvly_in_the_portfolio: external_exports.number().describe(
|
|
@@ -22595,7 +22595,7 @@ var RetirementAgeRowSchema = external_exports.object({
|
|
|
22595
22595
|
savvly_value_alone: external_exports.number().describe(
|
|
22596
22596
|
"USD. Standalone value attributable to the Savvly allocation at this age, excluding the rest of the retirement portfolio."
|
|
22597
22597
|
)
|
|
22598
|
-
});
|
|
22598
|
+
}).passthrough();
|
|
22599
22599
|
var RetirementEnvelopeSchema = external_exports.object({
|
|
22600
22600
|
gap_score: external_exports.number().describe(
|
|
22601
22601
|
"Server-computed score summarizing how well the projected retirement savings meet the desired monthly paycheck across the planning horizon."
|
|
@@ -22610,7 +22610,7 @@ var RetirementEnvelopeSchema = external_exports.object({
|
|
|
22610
22610
|
age_dependent_values: external_exports.array(RetirementAgeRowSchema).describe(
|
|
22611
22611
|
"Per-age timeline across the planning horizon (current_age \u2192 life_expectancy). One row per year."
|
|
22612
22612
|
)
|
|
22613
|
-
});
|
|
22613
|
+
}).passthrough();
|
|
22614
22614
|
var TopLevelDisclosureSchema = external_exports.object({
|
|
22615
22615
|
required: external_exports.literal(true).describe(
|
|
22616
22616
|
"Always true. Signals to the calling AI client that the `text` and `url` fields MUST be displayed to the end user whenever any number from this response is shown. Required by SEC Marketing Rule and FINRA Rule 2210."
|
|
@@ -22670,10 +22670,13 @@ var ProjectionResponseSchema = external_exports.object({
|
|
|
22670
22670
|
),
|
|
22671
22671
|
metadata: external_exports.object({
|
|
22672
22672
|
disclaimer: DisclaimerMetadataSchema,
|
|
22673
|
+
methodology: external_exports.string().describe(
|
|
22674
|
+
"Plain-English explanation of how the Savvly vs market-alone payout figures are computed (the matched-drawdown counterfactual). Present on lumpsum and monthly projections."
|
|
22675
|
+
),
|
|
22673
22676
|
field_descriptions: external_exports.record(external_exports.string()).describe(
|
|
22674
22677
|
"Flat `field_name -> short description` map covering every field in `result` and `result.payout_age_dependent_values[]`. Useful for MCP clients that don't surface outputSchema to the LLM."
|
|
22675
22678
|
)
|
|
22676
|
-
})
|
|
22679
|
+
}).passthrough()
|
|
22677
22680
|
});
|
|
22678
22681
|
var DisplayHintsSchema = external_exports.object({
|
|
22679
22682
|
chart: external_exports.object({
|
|
@@ -22718,7 +22721,7 @@ var RetirementResponseSchema = external_exports.object({
|
|
|
22718
22721
|
disclaimer: DisclaimerMetadataSchema,
|
|
22719
22722
|
field_descriptions: external_exports.record(external_exports.string()),
|
|
22720
22723
|
display_hints: DisplayHintsSchema
|
|
22721
|
-
})
|
|
22724
|
+
}).passthrough()
|
|
22722
22725
|
});
|
|
22723
22726
|
var PAYOUT_FIELD_DESCRIPTIONS = {
|
|
22724
22727
|
total_savvly_upside_lower: "USD. Lower bound of cumulative Savvly upside vs market alone.",
|