dj-postgres-mcp
Version:
Model Context Protocol (MCP) server for PostgreSQL database operations with centralized configuration via dj-config-mcp
80 lines (79 loc) • 2.47 kB
JSON
{
"name": "dj-postgres-mcp",
"version": "0.9.1",
"description": "Model Context Protocol (MCP) server for PostgreSQL database operations with centralized configuration via dj-config-mcp",
"private": false,
"publishConfig": {
"access": "public"
},
"type": "module",
"bin": {
"dj-postgres-mcp": "build/index.js"
},
"files": [
"build",
"README.md",
"LICENSE",
"CHANGELOG.md",
"API.md",
"QUICK_START.md"
],
"repository": {
"type": "git",
"url": "git+https://github.com/devjoy-digital/dj-postgres-mcp.git"
},
"homepage": "https://github.com/devjoy-digital/dj-postgres-mcp#readme",
"bugs": {
"url": "https://github.com/devjoy-digital/dj-postgres-mcp/issues"
},
"author": "devjoy.digital",
"license": "MIT",
"keywords": [
"mcp",
"model-context-protocol",
"postgresql",
"postgres",
"database",
"sql",
"ai",
"claude",
"ai-assistant",
"database-tools",
"configuration",
"server",
"docker",
"integration-testing"
],
"scripts": {
"build": "tsc && node -e \"require('fs').chmodSync('build/index.js', '755')\"",
"dev": "tsc --watch",
"start": "node build/index.js",
"prepare": "npm run build",
"clean": "rm -rf build",
"inspector": "npx @modelcontextprotocol/inspector build/index.js",
"test": "npm run test:integration",
"test:watch": "jest --config jest.config.cjs --watch",
"test:coverage": "jest --config jest.config.cjs --coverage",
"test:integration": "node run-integration-tests.js",
"test:unit": "jest --config jest.config.cjs --testMatch='**/*.test.ts' --verbose",
"test:basic": "jest --config jest.config.cjs --testMatch='**/errors.test.ts' --testMatch='**/smoke.test.ts'",
"test:setup": "node scripts/test-setup.js",
"test:ci": "npm run test:setup && npm run test:integration",
"test:docker:up": "docker-compose -f docker-compose.test.yml up -d",
"test:docker:down": "docker-compose -f docker-compose.test.yml down",
"prepublishOnly": "npm run build && npm run test"
},
"dependencies": {
"@modelcontextprotocol/sdk": "0.6.0",
"dj-config-mcp": "^0.9.12",
"pg": "^8.16.3"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^20.11.24",
"@types/pg": "^8.15.4",
"jest": "^29.7.0",
"ts-jest": "^29.1.2",
"typescript": "^5.3.3"
}
}