mcp-adr-analysis-server
Version:
MCP server for analyzing Architectural Decision Records and project architecture
78 lines (77 loc) • 2.52 kB
JSON
{
"name": "mcp-adr-analysis-server",
"version": "2.0.13",
"description": "MCP server for analyzing Architectural Decision Records and project architecture",
"main": "dist/src/index.js",
"type": "module",
"engines": {
"node": ">=20.0.0",
"npm": ">=9.0.0"
},
"scripts": {
"build": "tsc && chmod +x dist/src/index.js",
"dev": "tsx src/index.ts",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"test:watch": "node --experimental-vm-modules node_modules/jest/bin/jest.js --watch",
"test:coverage": "node --experimental-vm-modules node_modules/jest/bin/jest.js --coverage",
"test:advanced": "./scripts/test-advanced-prompting.sh",
"test:unit": "./scripts/test-advanced-prompting.sh unit",
"test:integration": "./scripts/test-advanced-prompting.sh integration",
"test:performance": "./scripts/test-advanced-prompting.sh performance",
"test:quality": "./scripts/test-advanced-prompting.sh quality",
"lint": "npm run typecheck",
"lint:fix": "npm run typecheck",
"clean": "rm -rf dist coverage .mcp-adr-cache",
"prepare": "test -d src && npm run build || echo 'Skipping build - no src directory (likely packaging)'",
"prepublishOnly": "npm run build && npm test && npm run lint",
"start": "node dist/src/index.js",
"health": "node dist/src/index.js --test",
"format": "prettier --write src/**/*.ts tests/**/*.ts",
"format:check": "prettier --check src/**/*.ts tests/**/*.ts",
"typecheck": "tsc --noEmit",
"prebuild": "npm run clean",
"test:package": "./scripts/test-npm-package.sh"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.13.3",
"fast-glob": "^3.3.2",
"openai": "^5.8.2",
"tslib": "^2.8.1",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/jest": "^29.5.8",
"@types/node": "^20.9.0",
"jest": "^29.7.0",
"prettier": "^3.1.0",
"ts-jest": "^29.1.1",
"tsx": "^4.6.0",
"typescript": "^5.3.2"
},
"keywords": [
"mcp",
"architectural-decision-records",
"adr",
"architecture",
"analysis",
"typescript",
"model-context-protocol"
],
"author": "Tosin Akinosho <tosin@example.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/tosin2013/mcp-adr-analysis-server.git"
},
"bin": {
"mcp-adr-analysis-server": "./dist/src/index.js"
},
"files": [
"dist/src/",
"README.md",
"LICENSE"
],
"publishConfig": {
"access": "public"
}
}