{ "name": "@waggle/hive-mind-mcp-server", "version": "0.1.0", "description": "MCP server exposing hive-mind memory (21 tools + 4 resources) over stdio for Claude Code, Claude Desktop, Codex, and any MCP-compatible client", "license": "Apache-2.0", "type": "module", "main": "dist/index.js", "bin": { "hive-mind-memory-mcp": "dist/index.js" }, "exports": { ".": { "types": "./dist/index.d.ts", "import": "./dist/index.js" }, "./scope": { "types": "./dist/scope.d.ts", "import": "./dist/scope.js" } }, "scripts": { "build": "tsc --build", "clean": "tsc --build --clean", "start": "node dist/index.js", "test": "node ../../node_modules/vitest/vitest.mjs run --root ../.. --config vitest.config.ts packages/hive-mind-mcp-server/tests/scope.test.ts packages/hive-mind-mcp-server/src/integration.test.ts packages/hive-mind-mcp-server/tests/runtime.test.ts" }, "dependencies": { "@modelcontextprotocol/sdk": "^1.25.3", "@waggle/hive-mind-core": "*", "@waggle/hive-mind-wiki-compiler": "*", "zod": "^3.23.0" }, "publishConfig": { "access": "public" }, "repository": { "type": "git", "url": "git+https://github.com/marolinik/waggle-os.git", "directory": "packages/hive-mind-mcp-server" }, "homepage": "https://github.com/marolinik/waggle-os/tree/main/packages/hive-mind-mcp-server#readme", "bugs": { "url": "https://github.com/marolinik/waggle-os/issues" }, "author": "Egzakta Group d.o.o. (https://egzakta.com)", "keywords": [ "mcp", "model-context-protocol", "claude", "claude-code", "codex", "memory", "ai", "hive-mind" ], "engines": { "node": ">=20" }, "types": "dist/index.d.ts" }