-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathgemini-extension.json
More file actions
48 lines (48 loc) · 1.12 KB
/
gemini-extension.json
File metadata and controls
48 lines (48 loc) · 1.12 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
{
"name": "postgres",
"version": "0.2.2",
"description": "Connect and interact with a PostgreSQL database and data",
"mcpServers": {
"postgresql": {
"command": "${extensionPath}${/}toolbox",
"args": [
"--prebuilt",
"postgres",
"--stdio"
]
}
},
"contextFileName": "POSTGRESQL.md",
"settings": [
{
"name": "Host",
"description": "Host or IP address of the PostgreSQL server",
"envVar": "POSTGRES_HOST"
},
{
"name": "Port",
"description": "Port number of the PostgreSQL server",
"envVar": "POSTGRES_PORT"
},
{
"name": "Database",
"description": "Name of the database",
"envVar": "POSTGRES_DATABASE"
},
{
"name": "User",
"description": "Username of the database user",
"envVar": "POSTGRES_USER"
},
{
"name": "Password",
"description": "Password of the database user",
"envVar": "POSTGRES_PASSWORD"
},
{
"name": "Query Params",
"description": "(Optional) Connection String Parameters",
"envVar": "POSTGRES_QUERY_PARAMS"
}
]
}