@aikidosec/mcp 0.0.1 → 1.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,45 @@
1
1
  {
2
- "name": "@aikidosec/mcp",
3
- "version": "0.0.1",
4
- "description": "Coming soon.",
5
- "license": "SEE LICENSE IN LICENSE.md"
6
- }
2
+ "name": "@aikidosec/mcp",
3
+ "version": "1.0.1",
4
+ "description": "Aikido MCP server",
5
+ "author": "Aikido Security",
6
+ "license": "AGPL",
7
+ "keywords": [
8
+ "aikido",
9
+ "mcp",
10
+ "server",
11
+ "security"
12
+ ],
13
+ "main": "dist/index.js",
14
+ "bin": {
15
+ "aikido-mcp": "dist/index.js"
16
+ },
17
+ "engines": {
18
+ "node": ">=18.0.0"
19
+ },
20
+ "scripts": {
21
+ "prebuild": "rm -rf dist",
22
+ "build": "npm run format:whitespace && node build.js",
23
+ "watch": "tsc --watch",
24
+ "mcp-inspect": "npm run build && npx @modelcontextprotocol/inspector node dist/index.js",
25
+ "format:whitespace": "eslint --fix \"src/**/*.ts\""
26
+ },
27
+ "dependencies": {
28
+ "@modelcontextprotocol/sdk": "1.24.0",
29
+ "decompress": "4.2.1",
30
+ "isomorphic-fetch": "3.0.0",
31
+ "pino": "10.1.0",
32
+ "zod": "3.25.76"
33
+ },
34
+ "devDependencies": {
35
+ "@types/node": "^24.3.0",
36
+ "@typescript-eslint/eslint-plugin": "^8.48.0",
37
+ "@typescript-eslint/parser": "^8.48.0",
38
+ "esbuild": "^0.25.9",
39
+ "eslint": "^9.39.1",
40
+ "ts-node": "^10.9.2"
41
+ },
42
+ "files": [
43
+ "dist"
44
+ ]
45
+ }