-
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) · 1.14 KB
/
gemini-extension.json
File metadata and controls
38 lines (38 loc) · 1.14 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
{
"name": "bigquery-conversational-analytics",
"version": "0.1.6",
"description": "Connect, query, and generate data insights for BigQuery datasets and data.",
"mcpServers": {
"bigquery_conversational_analytics": {
"command": "${extensionPath}${/}toolbox",
"args": [
"--tools-file",
"${extensionPath}${/}tools.yaml",
"--stdio"
]
}
},
"contextFileName": "BIGQUERY_CONVERSATIONAL_ANALYTICS.md",
"settings": [
{
"name": "Project ID",
"description": "ID of the Google Cloud project",
"envVar": "BIGQUERY_PROJECT"
},
{
"name": "Location",
"description": "(Optional) Location of the BigQuery resources",
"envVar": "BIGQUERY_LOCATION"
},
{
"name": "Authorization Scopes",
"description": "(Optional) Authorization scopes for Google APIs (Dataplex, Conversational API, BigQuery), comma-separated",
"envVar": "BIGQUERY_SCOPES"
},
{
"name": "Maximum Query Result Rows",
"description": "(Optional) Maximum number of rows to return from BigQuery query results",
"envVar": "BIGQUERY_MAX_QUERY_RESULT_ROWS"
}
]
}