{ "name": "neemee-mcp", "version": "3.1.1", "description": "MCP client library and bridge for Neemee personal knowledge management system", "type": "module", "main": "dist/index.js", "types": "dist/index.d.ts", "bin": { "neemee-mcp": "dist/server.js" }, "scripts": { "build": "tsc", "dev": "NODE_ENV=development tsx src/server.ts", "start": "node dist/server.js", "prepublishOnly": "npm run build", "test": "npm run test:client && npm run test:legacy", "test:client": "npm run build && node test/client.test.js", "test:legacy": "npm run build && node test/legacy.test.js", "test:server": "npm run build && NODE_ENV=development NEEMEE_API_KEY=test-key node dist/server.js", "release:patch": "npm version patch && git push && git push --tags", "release:minor": "npm version minor && git push && git push --tags", "release:major": "npm version major && git push && git push --tags" }, "keywords": [ "mcp", "model-context-protocol", "neemee", "notes", "knowledge-management", "client", "typescript", "sdk" ], "author": "Paul Bonneville ", "license": "MIT", "mcpName": "io.github.pbonneville/neemee-mcp", "repository": { "type": "git", "url": "git+https://github.com/Paul-Bonneville-Labs/neemee-mcp.git" }, "homepage": "https://github.com/Paul-Bonneville-Labs/neemee-mcp#readme", "bugs": { "url": "https://github.com/Paul-Bonneville-Labs/neemee-mcp/issues" }, "engines": { "node": ">=18.0.0" }, "dependencies": { "@modelcontextprotocol/sdk": "^1.27.1", "zod": "^3.25.0" }, "devDependencies": { "@types/node": "^22", "tsx": "^4.19.4", "typescript": "^5" } }