auditai-mcp 0.1.0
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/LICENSE +17 -0
- package/README.md +53 -0
- package/dist/auditai-mcp.mjs +32232 -0
- package/package.json +37 -0
package/package.json
ADDED
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "auditai-mcp",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "MCP server for Claude Code and Cursor: scans a Next.js + Supabase app for cross-tenant reads, RLS gaps and service-role misuse, and lets your own coding agent confirm and fix what it finds. No API key, no account.",
|
|
5
|
+
"license": "Apache-2.0",
|
|
6
|
+
"type": "module",
|
|
7
|
+
"bin": {
|
|
8
|
+
"auditai-mcp": "dist/auditai-mcp.mjs"
|
|
9
|
+
},
|
|
10
|
+
"files": [
|
|
11
|
+
"dist",
|
|
12
|
+
"README.md",
|
|
13
|
+
"LICENSE"
|
|
14
|
+
],
|
|
15
|
+
"engines": {
|
|
16
|
+
"node": ">=22"
|
|
17
|
+
},
|
|
18
|
+
"dependencies": {
|
|
19
|
+
"typescript": "^5.8.0"
|
|
20
|
+
},
|
|
21
|
+
"homepage": "https://auditai.sh/docs/mcp",
|
|
22
|
+
"bugs": {
|
|
23
|
+
"email": "hello@auditai.sh"
|
|
24
|
+
},
|
|
25
|
+
"keywords": [
|
|
26
|
+
"mcp",
|
|
27
|
+
"model-context-protocol",
|
|
28
|
+
"claude-code",
|
|
29
|
+
"cursor",
|
|
30
|
+
"security",
|
|
31
|
+
"nextjs",
|
|
32
|
+
"supabase",
|
|
33
|
+
"rls",
|
|
34
|
+
"idor",
|
|
35
|
+
"authorization"
|
|
36
|
+
]
|
|
37
|
+
}
|