package.json•3.3 kB
{
"name": "ainative-zerodb-mcp-server",
"version": "2.0.8",
"description": "AINative ZeroDB MCP Server - 60 operations for vector search, quantum compression, NoSQL, files, events, RLHF, and persistent memory for AI agents with enterprise security. Production-ready MCP integration for Claude, Windsurf, and other AI assistants.",
"main": "index.js",
"type": "commonjs",
"bin": {
"ainative-zerodb-mcp": "./index.js"
},
"scripts": {
"start": "node index.js",
"test": "jest --coverage --coverageThreshold='{\"global\":{\"branches\":82,\"functions\":65,\"lines\":82,\"statements\":82}}' --forceExit",
"test:watch": "jest --watch",
"test:ci": "jest --coverage --ci --maxWorkers=2",
"lint": "eslint *.js __tests__/**/*.js",
"lint:fix": "eslint *.js __tests__/**/*.js --fix",
"security:audit": "npm audit --audit-level=moderate",
"security:fix": "npm audit fix",
"prepublishOnly": "npm run lint && npm test && npm run security:audit",
"version": "npm run test && git add -A",
"postversion": "git push && git push --tags"
},
"keywords": [
"mcp",
"mcp-server",
"modelcontextprotocol",
"zerodb",
"ainative",
"vector-search",
"semantic-search",
"embeddings",
"rag",
"persistence",
"memory",
"agent-memory",
"database",
"postgresql",
"llm",
"ai",
"chatbot",
"claude",
"claude-desktop",
"claude-code",
"agent",
"typescript",
"local-first",
"context-window",
"conversation-history",
"knowledge-base",
"mcp-tools",
"windsurf",
"security",
"enterprise",
"openai",
"ada-002",
"text-embedding",
"1536-dimensions",
"automatic-token-renewal",
"session-management",
"namespace-isolation"
],
"author": {
"name": "AINative Studio",
"email": "support@ainative.studio",
"url": "https://ainative.studio"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/AINative-Studio/ainative-zerodb-mcp-server.git"
},
"bugs": {
"url": "https://github.com/AINative-Studio/ainative-zerodb-mcp-server/issues"
},
"homepage": "https://github.com/AINative-Studio/ainative-zerodb-mcp-server#readme",
"engines": {
"node": ">=18.0.0",
"npm": ">=9.0.0"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.0",
"axios": "^1.7.7",
"uuid": "^11.0.3"
},
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/node": "^22.10.1",
"eslint": "^8.57.1",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.6.0",
"jest": "^29.7.0",
"nock": "^13.5.6"
},
"files": [
"index.js",
"README.md",
"LICENSE",
"SECURITY.md",
"CHANGELOG.md",
"MIGRATION.md"
],
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"jest": {
"testEnvironment": "node",
"coverageDirectory": "coverage",
"collectCoverageFrom": [
"index.js",
"!node_modules/**",
"!coverage/**"
],
"coverageReporters": [
"text",
"lcov",
"html"
],
"testMatch": [
"**/__tests__/**/*.test.js"
],
"verbose": true
}
}