package.json•793 B
{
"name": "mcp-cerebra-legal-server",
"version": "1.0.0",
"description": "Enterprise-grade MCP server for legal reasoning and analysis",
"main": "build/index.js",
"type": "module",
"scripts": {
"build": "tsc",
"postbuild": "chmod +x build/index.js",
"start": "node build/index.js",
"dev": "ts-node --esm src/index.ts",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"mcp",
"legal",
"reasoning",
"analysis",
"cerebra"
],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/node": "^20.11.24",
"@types/uuid": "^9.0.8",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.7.0",
"chalk": "^5.3.0",
"uuid": "^9.0.1"
}
}