@ship-safe/mcp 0.2.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.
Files changed (3) hide show
  1. package/README.md +90 -0
  2. package/dist/index.js +4508 -0
  3. package/package.json +56 -0
package/package.json ADDED
@@ -0,0 +1,56 @@
1
+ {
2
+ "name": "@ship-safe/mcp",
3
+ "version": "0.2.0",
4
+ "description": "ShipSafe MCP server — let your AI coding agent scan the code it writes for security vulnerabilities, in-loop",
5
+ "type": "module",
6
+ "license": "MIT",
7
+ "author": "ShipSafe <support@ship-safe.co>",
8
+ "homepage": "https://ship-safe.co",
9
+ "repository": {
10
+ "type": "git",
11
+ "url": "https://github.com/Tgoldi/shipsafe",
12
+ "directory": "apps/mcp"
13
+ },
14
+ "keywords": [
15
+ "mcp",
16
+ "model-context-protocol",
17
+ "security",
18
+ "scanner",
19
+ "vulnerability",
20
+ "ai",
21
+ "cursor",
22
+ "claude",
23
+ "vibe-coding"
24
+ ],
25
+ "engines": {
26
+ "node": ">=18"
27
+ },
28
+ "bin": {
29
+ "shipsafe-mcp": "./dist/index.js"
30
+ },
31
+ "files": [
32
+ "dist"
33
+ ],
34
+ "publishConfig": {
35
+ "access": "public",
36
+ "registry": "https://registry.npmjs.org/"
37
+ },
38
+ "dependencies": {
39
+ "@anthropic-ai/sdk": "^0.39",
40
+ "@modelcontextprotocol/sdk": "^1.12.0",
41
+ "ignore": "^7",
42
+ "zod": "^3.23"
43
+ },
44
+ "devDependencies": {
45
+ "@types/node": "^22",
46
+ "tsup": "^8",
47
+ "typescript": "^5.7",
48
+ "@shipsafe/scanner": "0.1.0",
49
+ "@shipsafe/shared": "0.1.0"
50
+ },
51
+ "scripts": {
52
+ "build": "tsup",
53
+ "dev": "tsup --watch",
54
+ "type-check": "tsc --noEmit"
55
+ }
56
+ }