@memory-bank/mcp
Version:
Memory-enabled Co-Pilot (MCP) server for managing project documentation and context
66 lines (65 loc) • 1.87 kB
JSON
{
"name": "@memory-bank/mcp",
"version": "3.0.0",
"description": "Memory-enabled Co-Pilot (MCP) server for managing project documentation and context",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"files": [
"dist",
"README.md",
"LICENSE"
],
"bin": {
"memory-bank-mcp-server": "./dist/server.js"
},
"scripts": {
"build": "rm -f tsconfig.tsbuildinfo && tsc -p tsconfig.json",
"clean": "rm -rf dist",
"dev": "ts-node-dev --respawn --transpile-only src/index.ts",
"start": "node dist/index.js",
"test:unit": "vitest run",
"test:integration": "vitest run -c tests/integration/vitest.config.ts",
"test:e2e": "LOG_LEVEL=debug NODE_OPTIONS='--experimental-vm-modules --no-warnings' vitest run --config tests/e2e/vitest.config.ts",
"test": "yarn test:unit && yarn test:integration && yarn test:e2e",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"format": "prettier --write 'src/**/*.ts'"
},
"keywords": [
"memory-bank",
"mcp",
"co-pilot",
"documentation",
"context-management"
],
"author": "",
"license": "MIT",
"dependencies": {
"@memory-bank/schemas": "1.0.0",
"@modelcontextprotocol/sdk": "^1.9.0",
"fs-extra": "^11.3.0",
"rfc6902": "^5.1.2",
"uuid": "^11.1.0",
"yargs": "^17.7.2",
"zod": "^3.24.2",
"tmp-promise": "^3.0.3"
},
"devDependencies": {
"@t3ta/mcp-test": "^0.2.0",
"@types/fs-extra": "^11.0.4",
"@types/node": "^22.13.10",
"@types/tmp": "^0.2.6",
"@types/uuid": "^9.0.8",
"@types/yargs": "^17.0.33",
"awilix": "^10.0.2",
"ts-node-dev": "^2.0.0",
"typescript": "^5.8.2"
},
"publishConfig": {
"access": "public"
}
}