-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
172 lines (172 loc) · 5.9 KB
/
package.json
File metadata and controls
172 lines (172 loc) · 5.9 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
{
"name": "vscode-codeql-development-mcp-server",
"displayName": "CodeQL Development MCP Server",
"description": "LLM-assisted development of CodeQL queries, libraries, and tests via #ql-mcp prompts, resources, and tools.",
"version": "2.24.2",
"publisher": "advanced-security",
"license": "SEE LICENSE IN LICENSE",
"icon": "media/codeql-icon.png",
"repository": {
"type": "git",
"url": "git+https://github.com/advanced-security/codeql-development-mcp-server.git"
},
"type": "module",
"homepage": "https://github.com/advanced-security/codeql-development-mcp-server#readme",
"bugs": {
"url": "https://github.com/advanced-security/codeql-development-mcp-server/issues"
},
"engines": {
"vscode": "^1.109.0",
"node": ">=24.13.0"
},
"categories": [
"AI",
"Programming Languages",
"Other"
],
"keywords": [
"codeql",
"mcp",
"model-context-protocol",
"static-analysis",
"security"
],
"activationEvents": [
"onStartupFinished"
],
"main": "./dist/extension.cjs",
"extensionDependencies": [
"GitHub.vscode-codeql"
],
"contributes": {
"mcpServerDefinitionProviders": [
{
"id": "ql-mcp",
"label": "CodeQL Development MCP Server"
}
],
"configuration": {
"title": "CodeQL MCP Server",
"properties": {
"codeql-mcp.autoInstall": {
"type": "boolean",
"default": true,
"description": "Automatically install and update the CodeQL Development MCP Server on activation."
},
"codeql-mcp.serverVersion": {
"type": "string",
"default": "latest",
"description": "The npm version of codeql-development-mcp-server to install. Use 'latest' for the most recent release."
},
"codeql-mcp.serverCommand": {
"type": "string",
"default": "node",
"description": "Command to launch the MCP server. The default 'node' runs the bundled server. Override to 'npx' to download from npm, or provide a custom path."
},
"codeql-mcp.serverArgs": {
"type": "array",
"items": {
"type": "string"
},
"default": [],
"description": "Custom arguments for the MCP server command. When empty, the bundled server entry point is used automatically. Set to e.g. ['/path/to/server/dist/codeql-development-mcp-server.js'] for local development."
},
"codeql-mcp.watchCodeqlExtension": {
"type": "boolean",
"default": true,
"description": "Watch for CodeQL databases and query results created by the CodeQL extension."
},
"codeql-mcp.additionalEnv": {
"type": "object",
"default": {},
"description": "Additional environment variables to pass to the MCP server process.",
"additionalProperties": {
"type": "string"
}
},
"codeql-mcp.additionalDatabaseDirs": {
"type": "array",
"items": {
"type": "string"
},
"default": [],
"description": "Additional directories to search for CodeQL databases. Appended to CODEQL_DATABASES_BASE_DIRS alongside the vscode-codeql storage paths."
},
"codeql-mcp.additionalMrvaRunResultsDirs": {
"type": "array",
"items": {
"type": "string"
},
"default": [],
"description": "Additional directories containing MRVA run result subdirectories. Appended to CODEQL_MRVA_RUN_RESULTS_DIRS alongside the vscode-codeql variant analysis storage path."
},
"codeql-mcp.additionalQueryRunResultsDirs": {
"type": "array",
"items": {
"type": "string"
},
"default": [],
"description": "Additional directories containing query run result subdirectories. Appended to CODEQL_QUERY_RUN_RESULTS_DIRS alongside the vscode-codeql query storage path."
}
}
},
"commands": [
{
"command": "codeql-mcp.reinstallServer",
"title": "Reinstall MCP Server",
"category": "CodeQL MCP"
},
{
"command": "codeql-mcp.reinstallPacks",
"title": "Reinstall CodeQL Tool Query Packs",
"category": "CodeQL MCP"
},
{
"command": "codeql-mcp.showStatus",
"title": "Show Status",
"category": "CodeQL MCP"
},
{
"command": "codeql-mcp.showLogs",
"title": "Show Logs",
"category": "CodeQL MCP"
}
]
},
"scripts": {
"build": "npm run clean && npm run lint && npm run bundle",
"bundle": "node esbuild.config.js",
"bundle:server": "node scripts/bundle-server.js",
"clean": "rm -rf dist server *.vsix",
"lint": "eslint src/ test/",
"lint:fix": "eslint src/ test/ --fix",
"package": "vsce package --no-dependencies --out codeql-development-mcp-server-v$(node -e 'process.stdout.write(require(`./package.json`).version)').vsix",
"test": "npm run test:coverage && npm run test:integration",
"test:coverage": "vitest --run --coverage",
"test:integration": "vscode-test",
"test:integration:label": "vscode-test --label",
"test:watch": "vitest --watch",
"vscode:prepublish": "npm run clean && npm run lint && npm run bundle && npm run bundle:server",
"watch": "node esbuild.config.js --watch"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/mocha": "^10.0.10",
"@types/node": "^25.3.3",
"@types/vscode": "^1.109.0",
"@vitest/coverage-v8": "^4.0.18",
"@vscode/test-cli": "^0.0.12",
"@vscode/test-electron": "^2.5.2",
"@vscode/vsce": "^3.7.1",
"esbuild": "^0.27.3",
"eslint": "^10.0.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"glob": "^13.0.6",
"mocha": "^11.7.5",
"prettier": "^3.8.1",
"typescript": "^5.9.3",
"typescript-eslint": "^8.56.1",
"vitest": "^4.0.18"
}
}