@savvly/mcp-server 1.0.25 → 1.0.30

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/README.md CHANGED
@@ -54,16 +54,6 @@ Projection tools emit interactive MCP Apps chart widgets on hosts that support t
54
54
  - `savvly://product/payout-schedule`
55
55
  - `savvly://content/qa-library`
56
56
 
57
- ## Configuration
58
-
59
- | Env var | Default | Purpose |
60
- | --- | --- | --- |
61
- | `ADVISOR_FUNCTIONS_URL` | `https://savvly-estimator.azurewebsites.net` | Projection backend. |
62
- | `ADVISOR_FUNCTIONS_TIMEOUT_MS` | `15000` | Upstream request timeout. |
63
-
64
- Projection tools call Savvly's hosted estimator; the product/comparison/FAQ/Q&A
65
- content is bundled in the package and served offline.
66
-
67
57
  ## Remote alternative
68
58
 
69
59
  Prefer a hosted endpoint? Connect via Streamable HTTP at `https://api.savvly.com/mcp`.
@@ -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.25";
21707
+ var SERVER_VERSION = "1.0.30";
21708
21708
 
21709
21709
  // ../../src/mcp/ui/payout-chart.ts
21710
21710
  var PAYOUT_UI_URI = "ui://savvly/payout-chart.html";
@@ -22322,7 +22322,7 @@ var COMPARE_MATRIX_HTML = `<!DOCTYPE html>
22322
22322
  html,body { margin:0; padding:0; background:transparent; color:var(--fg);
22323
22323
  font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif; }
22324
22324
  .wrap { padding:12px 14px; }
22325
- .row-top { display:flex; justify-content:space-between; align-items:center; gap:10px; margin:0 0 10px; flex-wrap:wrap; }
22325
+ .row-top { display:flex; flex-direction:column; align-items:flex-start; gap:8px; margin:0 0 10px; }
22326
22326
  h1 { font-size:15px; font-weight:600; margin:0; }
22327
22327
  label.pick { font-size:12px; color:var(--muted); display:inline-flex; align-items:center; gap:6px; }
22328
22328
  select { font:inherit; font-size:12.5px; font-weight:600; padding:6px 28px 6px 10px; border-radius:6px;
@@ -27946,11 +27946,12 @@ function searchQaLibrary(opts) {
27946
27946
  }
27947
27947
  return out;
27948
27948
  }
27949
+ var MCP_SERVER_INSTRUCTIONS = "Savvly's MCP server. Do not use emojis or emoticons in any response. Present all figures as illustrative projections, not guarantees.";
27949
27950
  function createMcpServer() {
27950
- const server = new McpServer({
27951
- name: "savvly",
27952
- version: SERVER_VERSION
27953
- });
27951
+ const server = new McpServer(
27952
+ { name: "savvly", version: SERVER_VERSION },
27953
+ { instructions: MCP_SERVER_INSTRUCTIONS }
27954
+ );
27954
27955
  server.resource(
27955
27956
  "product-overview",
27956
27957
  "savvly://product/overview",
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.25";
21707
+ var SERVER_VERSION = "1.0.30";
21708
21708
 
21709
21709
  // ../../src/mcp/ui/payout-chart.ts
21710
21710
  var PAYOUT_UI_URI = "ui://savvly/payout-chart.html";
@@ -22322,7 +22322,7 @@ var COMPARE_MATRIX_HTML = `<!DOCTYPE html>
22322
22322
  html,body { margin:0; padding:0; background:transparent; color:var(--fg);
22323
22323
  font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif; }
22324
22324
  .wrap { padding:12px 14px; }
22325
- .row-top { display:flex; justify-content:space-between; align-items:center; gap:10px; margin:0 0 10px; flex-wrap:wrap; }
22325
+ .row-top { display:flex; flex-direction:column; align-items:flex-start; gap:8px; margin:0 0 10px; }
22326
22326
  h1 { font-size:15px; font-weight:600; margin:0; }
22327
22327
  label.pick { font-size:12px; color:var(--muted); display:inline-flex; align-items:center; gap:6px; }
22328
22328
  select { font:inherit; font-size:12.5px; font-weight:600; padding:6px 28px 6px 10px; border-radius:6px;
@@ -27946,11 +27946,12 @@ function searchQaLibrary(opts) {
27946
27946
  }
27947
27947
  return out;
27948
27948
  }
27949
+ var MCP_SERVER_INSTRUCTIONS = "Savvly's MCP server. Do not use emojis or emoticons in any response. Present all figures as illustrative projections, not guarantees.";
27949
27950
  function createMcpServer() {
27950
- const server = new McpServer({
27951
- name: "savvly",
27952
- version: SERVER_VERSION
27953
- });
27951
+ const server = new McpServer(
27952
+ { name: "savvly", version: SERVER_VERSION },
27953
+ { instructions: MCP_SERVER_INSTRUCTIONS }
27954
+ );
27954
27955
  server.resource(
27955
27956
  "product-overview",
27956
27957
  "savvly://product/overview",