Skip to content

Commit c38e2e2

Browse files
committed
first commit
0 parents  commit c38e2e2

15 files changed

+7294
-0
lines changed

.gitignore

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
node_modules/
2+
build/
3+
*.log
4+
.env*

LICENSE

+663
Large diffs are not rendered by default.

README.md

+141
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,141 @@
1+
# PostgreSQL MCP Server
2+
3+
A Model Context Protocol (MCP) server that provides PostgreSQL database management capabilities. This server assists with analyzing existing PostgreSQL setups, providing implementation guidance, and debugging database issues.
4+
5+
## Features
6+
7+
### 1. Database Analysis (`analyze_database`)
8+
Analyzes PostgreSQL database configuration and performance metrics:
9+
- Configuration analysis
10+
- Performance metrics
11+
- Security assessment
12+
- Recommendations for optimization
13+
14+
```typescript
15+
// Example usage
16+
{
17+
"connectionString": "postgresql://user:password@localhost:5432/dbname",
18+
"analysisType": "performance" // Optional: "configuration" | "performance" | "security"
19+
}
20+
```
21+
22+
### 2. Setup Instructions (`get_setup_instructions`)
23+
Provides step-by-step PostgreSQL installation and configuration guidance:
24+
- Platform-specific installation steps
25+
- Configuration recommendations
26+
- Security best practices
27+
- Post-installation tasks
28+
29+
```typescript
30+
// Example usage
31+
{
32+
"platform": "linux", // Required: "linux" | "macos" | "windows"
33+
"version": "15", // Optional: PostgreSQL version
34+
"useCase": "production" // Optional: "development" | "production"
35+
}
36+
```
37+
38+
### 3. Database Debugging (`debug_database`)
39+
Debug common PostgreSQL issues:
40+
- Connection problems
41+
- Performance bottlenecks
42+
- Lock conflicts
43+
- Replication status
44+
45+
```typescript
46+
// Example usage
47+
{
48+
"connectionString": "postgresql://user:password@localhost:5432/dbname",
49+
"issue": "performance", // Required: "connection" | "performance" | "locks" | "replication"
50+
"logLevel": "debug" // Optional: "info" | "debug" | "trace"
51+
}
52+
```
53+
54+
## Prerequisites
55+
56+
- Node.js >= 18.0.0
57+
- PostgreSQL server (for target database operations)
58+
- Network access to target PostgreSQL instances
59+
60+
## Installation
61+
62+
1. Clone the repository
63+
2. Install dependencies:
64+
```bash
65+
npm install
66+
```
67+
3. Build the server:
68+
```bash
69+
npm run build
70+
```
71+
4. Add to MCP settings file:
72+
```json
73+
{
74+
"mcpServers": {
75+
"postgresql-mcp": {
76+
"command": "node",
77+
"args": ["/path/to/postgresql-mcp-server/build/index.js"],
78+
"disabled": false,
79+
"alwaysAllow": []
80+
}
81+
}
82+
}
83+
```
84+
85+
## Development
86+
87+
- `npm run dev` - Start development server with hot reload
88+
- `npm run lint` - Run ESLint
89+
- `npm test` - Run tests
90+
91+
## Security Considerations
92+
93+
1. Connection Security
94+
- Uses connection pooling
95+
- Implements connection timeouts
96+
- Validates connection strings
97+
- Supports SSL/TLS connections
98+
99+
2. Query Safety
100+
- Validates SQL queries
101+
- Prevents dangerous operations
102+
- Implements query timeouts
103+
- Logs all operations
104+
105+
3. Authentication
106+
- Supports multiple authentication methods
107+
- Implements role-based access control
108+
- Enforces password policies
109+
- Manages connection credentials securely
110+
111+
## Best Practices
112+
113+
1. Always use secure connection strings with proper credentials
114+
2. Follow production security recommendations for sensitive environments
115+
3. Regularly monitor and analyze database performance
116+
4. Keep PostgreSQL version up to date
117+
5. Implement proper backup strategies
118+
6. Use connection pooling for better resource management
119+
7. Implement proper error handling and logging
120+
8. Regular security audits and updates
121+
122+
## Error Handling
123+
124+
The server implements comprehensive error handling:
125+
- Connection failures
126+
- Query timeouts
127+
- Authentication errors
128+
- Permission issues
129+
- Resource constraints
130+
131+
## Contributing
132+
133+
1. Fork the repository
134+
2. Create a feature branch
135+
3. Commit your changes
136+
4. Push to the branch
137+
5. Create a Pull Request
138+
139+
## License
140+
141+
This project is licensed under the AGPLv3 License - see LICENSE file for details.

0 commit comments

Comments
 (0)