{ "name": "epiphany-mcp", "version": "0.5.0", "type": "module", "description": "One private, local memory your AI tools share. Cross-model, on-device, never lose a session.", "license": "MIT", "mcpName": "io.github.GATSV-tech/epiphany", "keywords": [ "mcp", "model-context-protocol", "memory", "ai", "agent", "local-first", "claude", "cross-model", "embeddings" ], "homepage": "https://github.com/GATSV-tech/epiphany", "repository": { "type": "git", "url": "git+https://github.com/GATSV-tech/epiphany.git" }, "bugs": { "url": "https://github.com/GATSV-tech/epiphany/issues" }, "bin": { "epiphany": "./dist/cli.mjs", "epiphany-mcp": "./dist/mcp-server.mjs" }, "files": [ "dist", "README.md" ], "engines": { "node": ">=18" }, "scripts": { "build": "esbuild src/cli.ts --bundle --platform=node --format=esm --packages=external --outfile=dist/cli.mjs --banner:js='#!/usr/bin/env node' && esbuild src/mcp-server.ts --bundle --platform=node --format=esm --packages=external --outfile=dist/mcp-server.mjs --banner:js='#!/usr/bin/env node'", "prepublishOnly": "npm run build", "test": "tsx scripts/thread-test.ts && tsx scripts/mcp-test.ts", "thread-test": "tsx scripts/thread-test.ts", "mcp-test": "tsx scripts/mcp-test.ts" }, "dependencies": { "@huggingface/transformers": "^4.2.0", "@modelcontextprotocol/sdk": "^1.29.0", "better-sqlite3": "^13.0.1", "zod": "^3.25.76" }, "devDependencies": { "@types/better-sqlite3": "^7.6.13", "@types/node": "^26.1.1", "esbuild": "^0.28.1", "tsx": "^4.23.1", "typescript": "^7.0.2" } }