-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathgemini-extension.json
More file actions
61 lines (61 loc) · 1.53 KB
/
gemini-extension.json
File metadata and controls
61 lines (61 loc) · 1.53 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
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "cloud-sql-sqlserver",
"version": "0.1.8",
"description": "Connect to Cloud SQL for SQL Server",
"mcpServers": {
"cloud_sql_sqlserver_admin": {
"command": "${extensionPath}${/}toolbox",
"args": [
"--prebuilt",
"cloud-sql-mssql-admin",
"--stdio"
]
},
"cloud_sql_sqlserver": {
"command": "${extensionPath}${/}toolbox",
"args": [
"--prebuilt",
"cloud-sql-mssql",
"--stdio"
]
}
},
"contextFileName": "CLOUD-SQL-SQLSERVER.md",
"settings": [
{
"name": "Project Name",
"description": "Name of the Google Cloud project",
"envVar": "CLOUD_SQL_MSSQL_PROJECT"
},
{
"name": "Region",
"description": "Region of the Cloud SQL instance",
"envVar": "CLOUD_SQL_MSSQL_REGION"
},
{
"name": "Instance ID",
"description": "ID of the Cloud SQL instance",
"envVar": "CLOUD_SQL_MSSQL_INSTANCE"
},
{
"name": "Database",
"description": "Name of the database",
"envVar": "CLOUD_SQL_MSSQL_DATABASE"
},
{
"name": "User",
"description": "Username of the database user",
"envVar": "CLOUD_SQL_MSSQL_USER"
},
{
"name": "Password",
"description": "Password of the database user",
"envVar": "CLOUD_SQL_MSSQL_PASSWORD"
},
{
"name": "Instance IP assignment",
"description": "(Optional) Type of the IP address: PUBLIC, PRIVATE, or PSC (Default: Public)",
"envVar": "CLOUD_SQL_MSSQL_IP_TYPE"
}
]
}