MCP Server Semgrep

{ "name": "semgrep-server", "version": "1.0.0", "description": "MCP Server for Semgrep Integration", "main": "build/index.js", "type": "module", "scripts": { "build": "tsc && chmod +x build/index.js", "start": "node build/index.js", "dev": "ts-node --esm src/index.ts", "test": "vitest run", "test:watch": "vitest", "lint": "eslint 'src/**/*.ts'", "postinstall": "node scripts/check-semgrep.js" }, "keywords": [ "mcp", "semgrep", "static-analysis", "security", "code-quality" ], "author": "", "license": "ISC", "devDependencies": { "@modelcontextprotocol/sdk": "^1.6.1", "@types/node": "^20.0.0", "@types/which": "^3.0.1", "@typescript-eslint/eslint-plugin": "^8.25.0", "@typescript-eslint/parser": "^8.25.0", "eslint": "^9.21.0", "ts-node": "^10.9.2", "typescript": "^4.9.5", "vitest": "^3.0.7" }, "dependencies": { "axios": "^1.0.0", "which": "^3.0.1", "zod": "^3.24.2" }, "optionalDependencies": { "semgrep": "^1.110.0" }, "engines": { "node": ">=18.0.0" }, "bin": { "semgrep-mcp": "./build/index.js" }, "pnpm": { "onlyBuiltDependencies": [ "esbuild" ] } }