|
4 | 4 | "name": "PostgreSQL", |
5 | 5 | "alias": "postgres", |
6 | 6 | "description": "Query PostgreSQL databases with read-only access. Execute SQL queries, inspect table schemas, and explore data in any PostgreSQL database.", |
7 | | - "icon": "https://avatars.githubusercontent.com/u/182288589?v=4", |
| 7 | + "icon": "https://www.postgresql.org/media/img/about/press/elephant.png", |
8 | 8 | "schema_version": "2.1", |
9 | | - "categories": ["database"], |
10 | | - "tags": ["postgres", "postgresql", "database", "sql", "query", "relational"], |
11 | | - |
| 9 | + "categories": [ |
| 10 | + "database" |
| 11 | + ], |
| 12 | + "tags": [ |
| 13 | + "postgres", |
| 14 | + "postgresql", |
| 15 | + "database", |
| 16 | + "sql", |
| 17 | + "query", |
| 18 | + "relational" |
| 19 | + ], |
12 | 20 | "transport": { |
13 | 21 | "type": "stdio", |
14 | 22 | "command": "npx", |
15 | | - "args": ["-y", "@modelcontextprotocol/server-postgres", "${input:POSTGRES_URL}"], |
| 23 | + "args": [ |
| 24 | + "-y", |
| 25 | + "@modelcontextprotocol/server-postgres", |
| 26 | + "${input:POSTGRES_URL}" |
| 27 | + ], |
16 | 28 | "metadata": { |
17 | 29 | "inputs": [ |
18 | 30 | { |
19 | 31 | "id": "POSTGRES_URL", |
20 | 32 | "label": "PostgreSQL Connection URL", |
21 | 33 | "description": "PostgreSQL connection string including host, port, database name, and credentials. All queries run in read-only transactions.", |
22 | | - "type": "password", |
| 34 | + "type": "text", |
23 | 35 | "required": true, |
24 | 36 | "secret": true, |
25 | 37 | "placeholder": "postgresql://username:password@localhost:5432/mydb" |
26 | 38 | } |
27 | 39 | ] |
28 | 40 | } |
29 | 41 | }, |
30 | | - |
31 | 42 | "auth": { |
32 | 43 | "type": "none" |
33 | 44 | }, |
34 | | - |
35 | 45 | "contributor": { |
36 | 46 | "name": "Model Context Protocol", |
37 | 47 | "github": "modelcontextprotocol", |
38 | 48 | "url": "https://modelcontextprotocol.io" |
39 | 49 | }, |
40 | | - |
41 | 50 | "links": { |
42 | 51 | "repository": "https://github.com/modelcontextprotocol/servers", |
43 | 52 | "homepage": "https://www.postgresql.org", |
44 | | - "documentation": "https://github.com/modelcontextprotocol/servers/blob/main/src/postgres/README.md" |
| 53 | + "documentation": "https://github.com/modelcontextprotocol/servers/tree/main/src/postgres#readme" |
45 | 54 | }, |
46 | | - |
47 | | - "platforms": ["all"], |
48 | | - |
| 55 | + "platforms": [ |
| 56 | + "all" |
| 57 | + ], |
49 | 58 | "capabilities": { |
50 | 59 | "tools": true, |
51 | 60 | "resources": true, |
|
0 commit comments