@savvly/mcp-server 1.0.23 → 1.0.25
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 +33 -8
- package/dist/cli.bundled.js +28350 -0
- package/dist/cli.js +1 -1
- package/dist/cli.js.map +1 -1
- package/package.json +3 -2
package/README.md
CHANGED
|
@@ -1,18 +1,25 @@
|
|
|
1
|
-
# @savvly/mcp-server
|
|
1
|
+
# @savvly/mcp-server (npm)
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
**Savvly Longevity Benefit Fund: product, comparisons, eligibility, and retirement projections.**
|
|
4
|
+
Stdio MCP server that gives Claude Desktop, Cursor, Windsurf, and other
|
|
5
|
+
MCP-compatible AI agents access to Savvly product info, eligibility checks,
|
|
6
|
+
Savvly-vs-alternative comparisons, an audience-tagged Q&A library, and
|
|
7
|
+
retirement / lump-sum / monthly projections (with inline MCP Apps chart
|
|
8
|
+
widgets).
|
|
4
9
|
|
|
5
|
-
|
|
10
|
+
This is the npm distribution of the same server also published to PyPI as
|
|
11
|
+
`savvly-mcp-server`, to NuGet as `Savvly.McpServer`, and to the official MCP
|
|
12
|
+
Registry as `com.savvly/savvly`.
|
|
6
13
|
|
|
7
|
-
|
|
14
|
+
## Install & run
|
|
8
15
|
|
|
9
16
|
```bash
|
|
10
17
|
npx @savvly/mcp-server
|
|
18
|
+
# or install globally:
|
|
19
|
+
npm install -g @savvly/mcp-server && savvly-mcp
|
|
11
20
|
```
|
|
12
21
|
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
Add to `claude_desktop_config.json`:
|
|
22
|
+
### Claude Desktop / Cursor config
|
|
16
23
|
|
|
17
24
|
```json
|
|
18
25
|
{
|
|
@@ -38,6 +45,8 @@ Add to `claude_desktop_config.json`:
|
|
|
38
45
|
| `get_savvly_faq` | FAQ filtered by topic |
|
|
39
46
|
| `search_savvly_content` | Audience-tagged Q&A library search |
|
|
40
47
|
|
|
48
|
+
Projection tools emit interactive MCP Apps chart widgets on hosts that support them.
|
|
49
|
+
|
|
41
50
|
## Resources
|
|
42
51
|
|
|
43
52
|
- `savvly://product/overview`
|
|
@@ -45,6 +54,22 @@ Add to `claude_desktop_config.json`:
|
|
|
45
54
|
- `savvly://product/payout-schedule`
|
|
46
55
|
- `savvly://content/qa-library`
|
|
47
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
|
+
|
|
48
67
|
## Remote alternative
|
|
49
68
|
|
|
50
|
-
Prefer
|
|
69
|
+
Prefer a hosted endpoint? Connect via Streamable HTTP at `https://api.savvly.com/mcp`.
|
|
70
|
+
|
|
71
|
+
## License
|
|
72
|
+
|
|
73
|
+
Apache-2.0.
|
|
74
|
+
|
|
75
|
+
<!-- mcp-name: com.savvly/savvly -->
|