-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathgemini-extension.json
More file actions
30 lines (30 loc) · 924 Bytes
/
gemini-extension.json
File metadata and controls
30 lines (30 loc) · 924 Bytes
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
{
"name": "cloud-sql-postgresql",
"version": "0.1.1",
"description": "Create, connect, and interact with a Cloud SQL for PostgreSQL database and data.",
"mcpServers": {
"cloud_sql_postgresql_admin": {
"command": "${extensionPath}${/}toolbox",
"args": [
"--prebuilt",
"cloud-sql-postgres-admin",
"--stdio"
]
},
"cloud_sql_postgresql": {
"command": "${extensionPath}${/}toolbox",
"args": [
"--prebuilt",
"cloud-sql-postgres",
"--stdio"
],
"env": {
"CLOUD_SQL_POSTGRESQL_PROJECT": "${CLOUD_SQL_POSTGRESQL_PROJECT}",
"CLOUD_SQL_POSTGRESQL_REGION": "${CLOUD_SQL_POSTGRESQL_REGION}",
"CLOUD_SQL_POSTGRESQL_INSTANCE": "${CLOUD_SQL_POSTGRESQL_INSTANCE}",
"CLOUD_SQL_POSTGRESQL_DATABASE": "${CLOUD_SQL_POSTGRESQL_DATABASE}"
}
}
},
"contextFileName": "CLOUD-SQL-POSTGRESQL.md"
}