-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.06 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.06 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
{
"name": "vin-mcp",
"version": "1.0.2",
"type": "module",
"description": "Free VIN decoder MCP server — NHTSA, EPA, safety ratings, recalls, fuel economy, vehicle photos",
"main": "server.mjs",
"bin": {
"vin-mcp": "server.mjs"
},
"files": [
"server.mjs",
"lib/",
"public/",
"LICENSE",
"README.md"
],
"scripts": {
"start": "node server.mjs --http --port 3200",
"dev": "node --watch server.mjs --http --port 3200"
},
"keywords": [
"vin",
"vin-decoder",
"mcp",
"mcp-server",
"nhtsa",
"vehicle",
"car",
"recall",
"safety-ratings",
"model-context-protocol"
],
"author": "keptlive",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/keptlive/vin-mcp.git"
},
"homepage": "https://mcp.vin",
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.27.1",
"better-sqlite3": "^12.6.2",
"cors": "^2.8.6",
"dotenv": "^17.3.1",
"express": "^5.2.1",
"zod": "^3.25.0 || ^4.0.0"
}
}