package.json•2.61 kB
{
"name": "dbeaver-mcp-server",
"version": "1.1.7",
"description": "Production-ready Model Context Protocol server for universal database access through DBeaver connections - supports 200+ database types",
"main": "dist/index.js",
"type": "module",
"bin": {
"dbeaver-mcp-server": "dist/index.js"
},
"scripts": {
"build": "tsc && echo '#!/usr/bin/env node' > dist/index.js.tmp && cat dist/index.js >> dist/index.js.tmp && mv dist/index.js.tmp dist/index.js && shx chmod +x dist/index.js",
"dev": "tsc --watch",
"start": "node dist/index.js",
"clean": "rimraf dist",
"prepare": "npm run build",
"prepublish": "npm run clean && npm run build",
"watch": "tsc --watch",
"example": "node examples/example.js",
"bump": "bumpp",
"bump:patch": "bumpp patch",
"bump:minor": "bumpp minor",
"bump:major": "bumpp major",
"publish:patch": "npm version patch && npm publish",
"publish:minor": "npm version minor && npm publish",
"publish:major": "npm version major && npm publish",
"publish": "echo 'Use ./scripts/publish.sh or npm run publish:patch/minor/major instead'",
"prepublishOnly": "npm run clean && npm run build",
"test": "echo \"No tests specified\" && exit 0",
"lint": "echo \"No linter configured\" && exit 0"
},
"keywords": [
"mcp",
"model-context-protocol",
"dbeaver",
"database",
"sql",
"claude",
"anthropic",
"cursor",
"ai",
"postgresql",
"mysql",
"oracle",
"sqlserver",
"sqlite",
"mongodb",
"database-tools",
"ai-assistant",
"database-connectivity",
"universal-database"
],
"author": "Sarthak Jain",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "1.9.0",
"csv-parser": "^3.0.0",
"csv-stringify": "^6.4.6",
"xml2js": "^0.6.2"
},
"devDependencies": {
"@types/node": "^20.0.0",
"@types/xml2js": "^0.4.14",
"bumpp": "^10.2.3",
"rimraf": "^5.0.5",
"shx": "^0.4.0",
"typescript": "^5.8.3"
},
"engines": {
"node": ">=18.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/srthkdev/dbeaver-mcp-server.git"
},
"bugs": {
"url": "https://github.com/srthkdev/dbeaver-mcp-server/issues"
},
"homepage": "https://github.com/srthkdev/dbeaver-mcp-server#readme"
}