package.json•1.45 kB
{
"name": "postgres-connector",
"version": "1.0.0",
"mcpName": "io.github.martymarkenson/postgres-connector",
"description": "An MCP (Model Context Protocol) server for querying PostgreSQL databases. Execute SQL queries, view table details, and manage database connections through MCP-compatible clients.",
"author": {
"name": "Marty Markenson",
"email": "martyamark@gmail.com",
"url": "https://www.linkedin.com/in/marty-markenson-08b79058/"
},
"license": "MIT",
"keywords": [
"mcp",
"postgresql",
"postgres",
"database",
"sql",
"claude",
"model-context-protocol"
],
"repository": {
"type": "git",
"url": "https://github.com/martymarkenson/Postgres-Connector-MCP.git"
},
"homepage": "https://github.com/martymarkenson/Postgres-Connector-MCP",
"bugs": {
"url": "https://github.com/martymarkenson/Postgres-Connector-MCP/issues"
},
"main": "src/server.ts",
"bin": {
"postgres-connector": "src/server.ts"
},
"engines": {
"node": ">=18.0.0"
},
"files": [
"src/",
"server.json",
"manifest.json",
"icon.png",
"README.md",
"LICENSE"
],
"scripts": {
"start": "tsx src/server.ts"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.18.1",
"dotenv": "^17.2.2",
"postgres": "^3.4.7",
"zod": "^3.25.76"
},
"devDependencies": {
"@types/node": "^24.5.2",
"ajv-cli": "^5.0.0",
"tsx": "^4.20.5"
}
}