Skip to content

Commit df6d68e

Browse files
Add two postgres tiles
1 parent 8623bdb commit df6d68e

File tree

3 files changed

+29
-0
lines changed

3 files changed

+29
-0
lines changed

prompts/catalog.yaml

+13
Original file line numberDiff line numberDiff line change
@@ -2187,3 +2187,16 @@ registry:
21872187
description: retrieves transcripts for given YouTube video URLs
21882188
ref: github:docker/labs-ai-tools-for-devs?path=prompts/mcp/youtube_transcript.md
21892189
icon: https://cdn.jsdelivr.net/npm/simple-icons@v7/icons/youtube.svg
2190+
postgres readonly:
2191+
description: provides read-only access to PostgreSQL databases. This server enables LLMs to inspect database schemas and execute read-only queries.
2192+
ref: github:docker/labs-ai-tools-for-devs?path=prompts/mcp/postgres.md
2193+
icon: https://img.icons8.com/ios/50/postgreesql.png
2194+
secrets:
2195+
- name: postgres.url
2196+
postgres:
2197+
description: |
2198+
provides PostgreSQL database management capabilities.
2199+
This server assists with analyzing existing PostgreSQL setups, providing implementation guidance, debugging database issues, managing schemas, migrating data, and monitoring database performance.
2200+
ref: github:docker/labs-ai-tools-for-devs?path=prompts/mcp/postgresql.md
2201+
icon: https://img.icons8.com/ios/50/postgreesql.png
2202+

prompts/mcp/postgres.md

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
---
2+
mcp:
3+
container:
4+
image: mcp/postgres:latest
5+
workdir: /app
6+
secrets:
7+
postgres.url: POSTGRES_URL
8+
command:
9+
$POSTGRES_URL
10+
---

prompts/mcp/postgresql.md

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
mcp:
3+
container:
4+
image: vonwig/postgresql:latest
5+
workdir: /app
6+
---

0 commit comments

Comments
 (0)