package.json•1.04 kB
{
"name": "@couchbasedatabase/couchbase-mcp",
"version": "1.2.4",
"description": "A Couchbase MCP server for LLMs",
"repository": {
"type": "git",
"url": "https://github.com/Aniket310101/MCP-Server-Couchbase.git"
},
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"start": "tsc && node dist/index.js",
"postinstall": "node dist/bin/cli.js",
"release": "npm run build && npm publish --access public"
},
"keywords": [
"mcp",
"couchbase",
"llm"
],
"publishConfig": {
"access": "public"
},
"bin": {
"couchbase-mcp": "dist/bin/cli.js"
},
"files": [
"dist",
"README.md"
],
"author": "aniket-purkayastha",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.7.0",
"couchbase": "^4.2.0",
"dotenv": "^16.0.3",
"zod": "^3.24.2"
},
"devDependencies": {
"@types/jest": "^29.5.0",
"@types/node": "^18.0.0",
"jest": "^29.5.0",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
}
}