-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathgemini-extension.json
More file actions
38 lines (38 loc) · 950 Bytes
/
gemini-extension.json
File metadata and controls
38 lines (38 loc) · 950 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
31
32
33
34
35
36
37
38
{
"name": "spanner",
"version": "0.2.6",
"description": "Connect and interact with Spanner data using natural language.",
"mcpServers": {
"spanner": {
"command": "${extensionPath}${/}toolbox",
"args": [
"--prebuilt",
"spanner",
"--stdio"
]
}
},
"contextFileName": "SPANNER.md",
"settings": [
{
"name": "Project ID",
"description": "ID of the Google Cloud project",
"envVar": "SPANNER_PROJECT"
},
{
"name": "Instance",
"description": "ID of the Spanner instance",
"envVar": "SPANNER_INSTANCE"
},
{
"name": "Database",
"description": "ID of the Spanner database",
"envVar": "SPANNER_DATABASE"
},
{
"name": "Database Dialect",
"description": "(Optional) The SQL dialect of the Spanner Database: 'googlesql' or 'postgresql'. (Default: 'googlesql')",
"envVar": "SPANNER_DIALECT"
}
]
}