-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.47 KB
/
Copy pathpackage.json
File metadata and controls
81 lines (81 loc) · 2.47 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
{
"name": "@microsoft/github-advisory-mcp",
"version": "1.0.0",
"description": "MCP server for querying GitHub Security Advisories from local clone",
"type": "module",
"main": "dist/index.js",
"bin": {
"github-advisory-mcp": "dist/index.js"
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"start:stdio": "node dist/index.js",
"start:http": "node dist/http-server.js",
"test": "vitest run test/unit",
"test:all": "vitest run",
"test:coverage": "vitest run test/unit --coverage",
"test:e2e": "vitest run test/e2e",
"test:integration": "vitest run test/integration",
"test:watch": "vitest --watch",
"test:ui": "vitest --ui",
"clean": "rm -rf dist",
"semantic:build": "node dist/semantic/build-index.js",
"semantic:query": "node dist/semantic/query.js"
},
"keywords": [
"mcp",
"model-context-protocol",
"github",
"security",
"advisories",
"vulnerabilities",
"microsoft"
],
"author": "Microsoft",
"license": "MIT",
"dependencies": {
"@huggingface/transformers": "^3.8.1",
"@modelcontextprotocol/sdk": "^1.30.0",
"@opentelemetry/api": "^1.9.1",
"@opentelemetry/api-logs": "^0.222.0",
"@opentelemetry/auto-instrumentations-node": "^0.80.0",
"@opentelemetry/exporter-logs-otlp-http": "^0.222.0",
"@opentelemetry/exporter-metrics-otlp-http": "^0.222.0",
"@opentelemetry/exporter-trace-otlp-http": "^0.222.0",
"@opentelemetry/instrumentation": "^0.222.0",
"@opentelemetry/instrumentation-express": "^0.70.0",
"@opentelemetry/instrumentation-http": "^0.222.0",
"@opentelemetry/instrumentation-winston": "^0.66.0",
"@opentelemetry/resources": "^2.11.0",
"@opentelemetry/sdk-logs": "^0.222.0",
"@opentelemetry/sdk-metrics": "^2.11.0",
"@opentelemetry/sdk-node": "^0.222.0",
"@opentelemetry/sdk-trace-base": "^2.11.0",
"@opentelemetry/sdk-trace-node": "^2.11.0",
"@opentelemetry/semantic-conventions": "^1.43.0",
"cors": "^2.8.6",
"express": "^5.0.1",
"winston": "^3.18.3",
"zod": "^4.6.2"
},
"devDependencies": {
"@ai-sdk/azure": "^4.0.68",
"@azure/identity": "^4.13.2",
"@types/cors": "^2.8.17",
"@types/express": "^5.0.0",
"@types/node": "^26.5.1",
"@vitest/coverage-v8": "^4.1.11",
"ai": "^7.0.97",
"dotenv": "^17.4.2",
"typescript": "^5.9.3",
"vitest": "^4.1.11"
},
"overrides": {
"vite": "^7.1.12",
"sharp": ">=0.35.4"
},
"engines": {
"node": ">=18.0.0"
}
}