package.json•861 B
{
"name": "aws-postgress-mcp-server",
"version": "1.0.0",
"description": "MCP server for AWS PostgreSQL database that provides read-only SQL query capabilities",
"main": "build/index.js",
"type": "module",
"bin": {
"aws-pg-mcp": "./build/index.js"
},
"repository": {
"type": "git",
"url": "https://github.com/T1nker-1220/aws-postgress-mcp-server.git"
},
"homepage": "https://github.com/T1nker-1220/aws-postgress-mcp-server",
"scripts": {
"build": "tsc",
"start": "node build/index.js",
"dev": "ts-node --esm src/index.ts"
},
"keywords": ["mcp", "postgresql", "aws"],
"author": "",
"license": "ISC",
"packageManager": "pnpm@10.8.1",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.10.2",
"@types/pg": "^8.11.13",
"pg": "^8.15.1",
"ts-node": "^10.9.2",
"typescript": "^5.8.3"
}
}