MCP Titan

by henryhawke
Verified
{ "name": "titan-memory-mcp", "version": "1.2.0", "description": "A neural memory system for LLMs that can learn and predict sequences while maintaining state", "main": "dist/index.js", "type": "module", "bin": { "titan-memory": "./index.js" }, "scripts": { "build": "tsc", "start": "node index.js", "dev": "tsc -w & nodemon index.js", "test": "jest", "lint": "eslint src/**/*.ts", "clean": "rimraf dist" }, "keywords": [ "mcp", "memory", "llm", "claude", "cursor", "tensorflow", "neural" ], "author": "", "license": "MIT", "dependencies": { "@modelcontextprotocol/sdk": "^0.1.0", "@tensorflow/tfjs-node": "^4.17.0", "ws": "^8.16.0", "zod": "^3.22.4" }, "devDependencies": { "@types/jest": "^29.5.12", "@types/node": "^20.11.19", "@types/ws": "^8.5.10", "eslint": "^8.56.0", "jest": "^29.7.0", "nodemon": "^3.0.3", "rimraf": "^5.0.5", "ts-jest": "^29.1.2", "typescript": "^5.3.3" }, "engines": { "node": ">=18.0.0" } }