Files
israel-law-mcp/package.json
Mortalus 21aa81d2b0 chore: initial MCP preparation package
14-file blueprint including:
- sources.yml with data source provenance
- 12 golden contract tests with native-language search terms
- 5-6 drift detection anchors
- MCP Registry + npm package configs
- Vercel deployment config (SMALL tier)
- Security policies and issue templates

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-19 13:39:14 +01:00

77 lines
2.1 KiB
JSON

{
"name": "@ansvar/israel-law-mcp",
"version": "1.0.0",
"mcpName": "eu.ansvar/israel-law-mcp",
"description": "Israel law database covering Privacy Protection Law, Data Security Regulations, Computer Law, Companies Law, Electronic Signature Law, and Credit Data Law with full-text search",
"author": "Ansvar Systems <hello@ansvar.eu>",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/Ansvar-Systems/israel-law-mcp.git"
},
"homepage": "https://ansvar.eu",
"keywords": [
"mcp",
"model-context-protocol",
"israel-law",
"privacy-protection",
"data-security",
"computer-law",
"companies-law",
"electronic-signature",
"credit-data",
"legislation",
"legal",
"compliance",
"cybersecurity",
"ansvar"
],
"type": "module",
"main": "dist/server.js",
"bin": {
"israel-law-mcp": "dist/server.js"
},
"files": [
"dist/",
"data/database-free.db",
"sources.yml",
"fixtures/",
"LICENSE",
"README.md"
],
"scripts": {
"build": "tsc",
"test": "vitest run",
"test:contract": "vitest run __tests__/contract/",
"test:watch": "vitest",
"lint": "eslint src/",
"start": "node dist/server.js",
"start:stdio": "node dist/server.js --stdio",
"health": "curl -s http://localhost:3000/health | jq .",
"build:db": "tsx scripts/build-db.ts",
"build:db:free": "tsx scripts/build-db-free.ts",
"ingest": "tsx scripts/ingest.ts",
"drift:detect": "tsx scripts/drift-detect.ts",
"check:freshness": "tsx scripts/check-freshness.ts",
"validate": "npm run lint && npm run test && npm run test:contract"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.12.0",
"node-sqlite3-wasm": "^0.8.0",
"zod": "^3.23.0"
},
"devDependencies": {
"@types/node": "^22.0.0",
"eslint": "^9.0.0",
"prettier": "^3.4.0",
"tsx": "^4.19.0",
"typescript": "^5.7.0",
"vitest": "^3.0.0",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0"
},
"engines": {
"node": ">=18.0.0"
}
}