Postgres Analytics MCP Server
Postgres Analytics MCP Server
AI 어시스턴트(Claude, Cursor 및 기타 MCP 호환 클라이언트)가 PostgreSQL 데이터베이스를 안전하게 검사하고 쿼리할 수 있게 해주는 Model Context Protocol(MCP) 서버입니다 - 읽기 전용 강제, 행/시간 초과 제한, 전체 감사 로깅을 갖추고 있습니다.
간단한 질문에 답하기 위해 만들어졌습니다: AI 에이전트가 아무것도 망가뜨릴 능력 없이 실제 데이터베이스를 다루게 하려면 어떻게 해야 할까요?
기능
연결되면 AI 클라이언트는 다음과 같은 질문을 할 수 있습니다:
"내 데이터베이스에 어떤 테이블이 있나요?"
"가장 최근 주문 10개를 보여주세요."
"이 쿼리가 왜 느린가요?"
"어떤 테이블에 인덱스가 없나요?"
서버는 MCP를 통해 5개의 도구를 제공합니다:
Tool | Purpose |
list_schemas | 모든 비시스템 스키마 나열 |
list_tables | 지정된 스키마의 테이블 나열 |
run_query | 읽기 전용 SQL 쿼리 실행(SELECT/WITH만) |
explain_query | 쿼리 실행 계획 반환 및 느린 경우 플래그 표시 |
get_table_stats | 테이블의 행 추정치와 인덱스/순차 스캔 횟수 반환 |
Related MCP server: PostgreSQL MCP Server
존재 이유
기업들은 점점 더 AI 에이전트를 내부 시스템(데이터베이스, Kubernetes, API)에 연결하고 있으며, 어려운 부분은 이를 안전하게 수행하는 것입니다. 이 프로젝트는 그에 대한 작고 구체적인 예입니다: AI 클라이언트와 프로덕션 스타일 데이터베이스 사이의 보호된 브리지입니다.
설계 결정
기본적으로 이중으로 읽기 전용: 모든 쿼리는 차단 목록에 대해 검증되며 SELECT, WITH 또는 EXPLAIN으로 시작해야 합니다. 데이터베이스 연결 자체도 두 번째 방어선으로 읽기 전용 모드로 열립니다.
행 제한 및 쿼리 시간 초과: 모든 쿼리는 구성 가능한 행 제한과 문 시간 초과로 제한되어 무제한 데이터를 반환하거나 서버를 중단시킬 수 없습니다.
인증은 채팅이 아닌 프로세스 환경에 있습니다: API 키는 MCP 클라이언트 구성을 통해 환경 변수로 설정되므로 AI 모델이 이를 직접 보거나 처리하지 않습니다.
감사 로깅: 모든 도구 호출은 타임스탬프, 도구 이름, 인수 및 결과와 함께 기록됩니다.
설정
요구 사항: Python 3.11+, PostgreSQL
가상 환경을 만들고 종속성을 설치합니다: python -m venv venv venv\Scripts\Activate.ps1 pip install -r requirements.txt
데이터베이스를 만들고 샘플 스키마를 로드합니다: psql -U postgres -c "CREATE DATABASE sampledb;" psql -U postgres -d sampledb -f seed.sql
.env.example을 .env로 복사하고 자신의 값으로 채웁니다.
직접 실행하여 정상 동작을 확인합니다: python -m server.main
Claude Desktop에 연결
claude_desktop_config.json에 추가합니다 (Claude Desktop -> Settings -> Developer -> Edit Config):
"mcpServers": {
"postgres-analytics": {
"command": "C:\\path\\to\\venv\\Scripts\\python.exe",
"args": ["-m", "server.main"],
"env": {
"PYTHONPATH": "C:\\path\\to\\project",
"MCP_API_KEY": "same-value-as-in-.env"
}
}
}기술 스택
Python, PostgreSQL, MCP Python SDK, psycopg2
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseNot gradedqualityDmaintenanceEnables AI assistants to safely interact with PostgreSQL databases through read-only operations, providing schema discovery, table inspection, and query execution capabilities with structured context awareness.MIT
- AlicenseNot gradedqualityDmaintenanceProvides read-only access to PostgreSQL databases, enabling users to list tables, view table structures and statistics, and execute SELECT queries safely through natural language.225MIT
- FlicenseAqualityDmaintenanceEnables AI agents to inspect and query PostgreSQL databases safely, with features like listing tables, retrieving schemas, and running read-only SQL queries.3
- FlicenseNot gradedqualityDmaintenanceEnables AI assistants to safely interact with PostgreSQL databases, perform queries, inspect schemas, and analyze query performance.2
Related MCP Connectors
Query PostgreSQL databases in plain English — LLM-generated, safety-validated SQL.
Comprehensive PostgreSQL documentation and best practices, including ecosystem tools
Explore, query, and inspect SQLite databases with ease. List tables, preview results, and view det…
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/krishamehta09/pg-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server