-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.11 KB
/
Copy pathpackage.json
File metadata and controls
73 lines (73 loc) · 2.11 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "lit-forge-mcp",
"version": "0.20.0",
"mcpName": "io.github.noblabs/lit-forge-mcp",
"description": "MCP server (19 tools): NISA/iDeCo/retirement simulation, 28-indicator market snapshot, economic release calendars (BEA/NY Fed/FRB/BLS/JOLTS/DOL-ETA/S&P Global/Cabinet Office/BOJ), central bank speakers (Fed/BOJ/ECB, live), latest BLS macro values (7 series), and geopolitical calendar + pulse.",
"type": "module",
"license": "MIT",
"homepage": "https://github.com/noblabs/lit-forge-mcp",
"repository": {
"type": "git",
"url": "git+https://github.com/noblabs/lit-forge-mcp.git"
},
"bugs": {
"url": "https://github.com/noblabs/lit-forge-mcp/issues"
},
"keywords": [
"mcp",
"model-context-protocol",
"claude",
"finance",
"investment",
"nisa",
"ideco",
"retirement",
"compound-interest",
"market-data",
"stock-quote",
"forex",
"economic-calendar",
"dividend",
"analyst",
"geopolitical",
"bls",
"macro",
"japan"
],
"bin": {
"lit-forge-mcp": "dist/index.js"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc && chmod 755 dist/index.js",
"start": "node dist/index.js",
"dev": "tsc --watch",
"test": "vitest run",
"test:watch": "vitest",
"verify:cb": "node scripts/verify-central-bank-events.mjs",
"verify:us-macro": "node scripts/verify-us-macro-events.mjs",
"verify:jp-macro": "node scripts/verify-jp-macro-events.mjs",
"verify:geopolitical": "node scripts/verify-geopolitical-events.mjs",
"verify:all": "npm run verify:cb && npm run verify:us-macro && npm run verify:jp-macro && npm run verify:geopolitical",
"update:pfei": "npm run build && node scripts/update-pfei-schedule.mjs",
"prepare": "npm run build",
"prepublishOnly": "npm run build && npm run verify:all"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.29.0",
"yahoo-finance2": "^3.14.0",
"zod": "^3.25.0"
},
"devDependencies": {
"@types/node": "^22.0.0",
"typescript": "^5.6.0",
"vitest": "^4.1.0"
},
"engines": {
"node": ">=18"
}
}