package.json•970 B
{
"name": "@modelcontextprotocol/server-memory-http",
"version": "0.6.3",
"description": "MCP memory server with HTTP streaming support using Hono.js",
"license": "MIT",
"author": "Anthropic, PBC (https://anthropic.com)",
"homepage": "https://modelcontextprotocol.io",
"bugs": "https://github.com/modelcontextprotocol/servers/issues",
"type": "module",
"bin": {
"mcp-server-memory-http": "dist/http-server.js"
},
"files": [
"dist"
],
"scripts": {
"build": "tsc && shx chmod +x dist/*.js",
"prepare": "npm run build",
"watch": "tsc --watch",
"start": "node dist/http-server.js",
"test": "tsx test-memory-server.ts",
"test:bash": "./test-memory-server.sh"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.12.0",
"hono": "^4.6.0",
"@hono/node-server": "^1.12.0"
},
"devDependencies": {
"@types/node": "^22.0.0",
"shx": "^0.3.4",
"tsx": "^4.0.0",
"typescript": "^5.6.2"
}
}