@savvly/mcp-server 1.0.0
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 +50 -0
- package/dist/cli.js +23253 -0
- package/dist/cli.js.map +1 -0
- package/package.json +40 -0
package/README.md
ADDED
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
# @savvly/mcp-server
|
|
2
|
+
|
|
3
|
+
Stdio MCP server for [Savvly](https://savvly.com) — gives AI agents direct access to product info, comparisons, projections, eligibility, and FAQ tools.
|
|
4
|
+
|
|
5
|
+
## Install
|
|
6
|
+
|
|
7
|
+
Use via `npx` (no install needed) or install globally.
|
|
8
|
+
|
|
9
|
+
```bash
|
|
10
|
+
npx @savvly/mcp-server
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
## Claude Desktop
|
|
14
|
+
|
|
15
|
+
Add to `claude_desktop_config.json`:
|
|
16
|
+
|
|
17
|
+
```json
|
|
18
|
+
{
|
|
19
|
+
"mcpServers": {
|
|
20
|
+
"savvly": {
|
|
21
|
+
"command": "npx",
|
|
22
|
+
"args": ["@savvly/mcp-server"]
|
|
23
|
+
}
|
|
24
|
+
}
|
|
25
|
+
}
|
|
26
|
+
```
|
|
27
|
+
|
|
28
|
+
## Tools
|
|
29
|
+
|
|
30
|
+
| Tool | Description |
|
|
31
|
+
|------|-------------|
|
|
32
|
+
| `get_savvly_product_info` | Complete product details |
|
|
33
|
+
| `compare_savvly_vs_alternative` | Comparison vs annuities / target-date funds / etc. |
|
|
34
|
+
| `project_savvly_lumpsum` | Lump-sum payout projection |
|
|
35
|
+
| `project_savvly_monthly` | Monthly contribution projection |
|
|
36
|
+
| `project_retirement_with_savvly` | Full retirement simulation |
|
|
37
|
+
| `check_savvly_eligibility` | Eligibility check |
|
|
38
|
+
| `get_savvly_faq` | FAQ filtered by topic |
|
|
39
|
+
| `search_savvly_content` | Audience-tagged Q&A library search |
|
|
40
|
+
|
|
41
|
+
## Resources
|
|
42
|
+
|
|
43
|
+
- `savvly://product/overview`
|
|
44
|
+
- `savvly://product/comparison-matrix`
|
|
45
|
+
- `savvly://product/payout-schedule`
|
|
46
|
+
- `savvly://content/qa-library`
|
|
47
|
+
|
|
48
|
+
## Remote alternative
|
|
49
|
+
|
|
50
|
+
Prefer remote? Connect via Streamable HTTP at `https://api.savvly.com/mcp`.
|