-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 1.97 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 1.97 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "finmap-mcp",
"version": "3.2.0",
"description": "MCP server providing financial market data from finmap.org",
"main": "./dist/stdio-server.js",
"type": "module",
"bin": {
"finmap-mcp": "./dist/stdio-server.js"
},
"files": [
"dist/core.js",
"dist/stdio-server.js",
"README.md",
"LICENSE"
],
"keywords": [
"agent",
"agentic",
"ai",
"financial-data",
"historical-data",
"llm",
"market-capitalization",
"market-data",
"market-sectors",
"market-value",
"mcp",
"mcp-server",
"modelcontextprotocol",
"stock-exchange",
"stock-market",
"stock-price-data",
"tickers"
],
"repository": {
"type": "git",
"url": "https://github.com/finmap-org/mcp-server.git"
},
"homepage": "https://github.com/finmap-org/mcp-server#readme",
"bugs": {
"url": "https://github.com/finmap-org/mcp-server/issues"
},
"author": {
"name": "finmap.org",
"email": "contact@finmap.org",
"url": "https://finmap.org"
},
"license": "LGPL-3.0-or-later",
"funding": [
{
"type": "patreon",
"url": "https://patreon.com/finmap"
},
"https://boosty.to/finmap"
],
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"clean": "rimraf dist",
"cf-typegen": "wrangler types",
"build": "npm run clean && npm run build:stdio && npm run build:worker",
"build:stdio": "npm run clean && tsc --project tsconfig.stdio.json",
"build:worker": "npm run cf-typegen && wrangler build",
"dev:stdio": "tsx src/stdio-server.ts",
"dev:worker": "wrangler dev",
"deploy": "wrangler deploy",
"format": "biome format --write",
"lint:fix": "biome lint --fix",
"start": "wrangler dev",
"type-check": "tsc --noEmit",
"prepublishOnly": "npm run build:stdio",
"package": "npm run build:stdio && npm pack --pack-destination dist"
},
"dependencies": {
"agents": "^0.11.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@biomejs/biome": "^2.4.12",
"@types/node": "^25.6.0",
"rimraf": "^6.1.3",
"tsx": "^4.21.0",
"typescript": "6.0.2",
"wrangler": "^4.83.0"
}
}