- Create stdio MCP server wrapping core memory functions (query, show, list, children, add, link) - Add CLAUDE.md with memory-querying instructions for Claude - Register MCP server in .mcp.json - Document MCP setup and tools in USAGE.md
37 lines
874 B
JSON
37 lines
874 B
JSON
{
|
|
"name": "cortex",
|
|
"version": "1.0.0",
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"dev": "tsc --watch",
|
|
"serve": "node dist/server/index.js"
|
|
},
|
|
"keywords": [],
|
|
"author": "",
|
|
"license": "ISC",
|
|
"description": "AI project memory - knowledge graph backed by SQLite + Ollama embeddings",
|
|
"bin": {
|
|
"memory": "./dist/cli/index.js",
|
|
"memory-mcp": "./dist/mcp/index.js"
|
|
},
|
|
"dependencies": {
|
|
"@modelcontextprotocol/sdk": "^1.25.3",
|
|
"better-sqlite3": "^12.6.2",
|
|
"chalk": "^4.1.2",
|
|
"commander": "^14.0.3",
|
|
"cors": "^2.8.6",
|
|
"express": "^5.2.1",
|
|
"uuid": "^13.0.0",
|
|
"zod": "^4.3.6"
|
|
},
|
|
"devDependencies": {
|
|
"@types/better-sqlite3": "^7.6.13",
|
|
"@types/cors": "^2.8.19",
|
|
"@types/express": "^5.0.6",
|
|
"@types/node": "^25.2.0",
|
|
"@types/uuid": "^10.0.0",
|
|
"typescript": "^5.9.3"
|
|
}
|
|
}
|