@modular-intelligence/checkov 1.0.0 → 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/README.md CHANGED
@@ -295,7 +295,7 @@ The following dangerous Checkov flags are blocked:
295
295
 
296
296
  1. Clone or navigate to the checkov directory:
297
297
  ```bash
298
- cd /Users/ehenry/Documents/code/mcp-servers/checkov
298
+ cd /path/to/mi-mcp-servers/packages/checkov
299
299
  ```
300
300
 
301
301
  2. Install dependencies:
@@ -322,7 +322,7 @@ Add to your MCP client configuration (e.g., Claude Desktop):
322
322
  "mcpServers": {
323
323
  "checkov": {
324
324
  "command": "bun",
325
- "args": ["run", "/Users/ehenry/Documents/code/mcp-servers/checkov/src/index.ts"],
325
+ "args": ["run", "/path/to/mi-mcp-servers/packages/checkov/src/index.ts"],
326
326
  "env": {
327
327
  "BC_API_KEY": "your-api-key-here"
328
328
  }
package/dist/index.js CHANGED
File without changes
package/package.json CHANGED
@@ -1,9 +1,18 @@
1
1
  {
2
2
  "name": "@modular-intelligence/checkov",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "MCP server wrapping checkov for Infrastructure-as-Code security scanning",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
7
+ "bin": {
8
+ "mcp-checkov": "./dist/index.js"
9
+ },
10
+ "scripts": {
11
+ "build": "bun build src/index.ts --outdir dist --target bun",
12
+ "start": "bun run src/index.ts",
13
+ "typecheck": "tsc --noEmit",
14
+ "clean": "rm -rf dist"
15
+ },
7
16
  "dependencies": {
8
17
  "@modelcontextprotocol/sdk": "^1.12.1",
9
18
  "zod": "^3.24.2",
@@ -25,11 +34,5 @@
25
34
  "url": "https://github.com/modularintelligence/mcp-servers.git",
26
35
  "directory": "packages/checkov"
27
36
  },
28
- "license": "MIT",
29
- "scripts": {
30
- "build": "bun build src/index.ts --outdir dist --target bun",
31
- "start": "bun run src/index.ts",
32
- "typecheck": "tsc --noEmit",
33
- "clean": "rm -rf dist"
34
- }
35
- }
37
+ "license": "MIT"
38
+ }