Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathplugin.json
More file actions
Latest commit
47 lines (47 loc) · 1.19 KB
/
Copy pathplugin.json
File metadata and controls
47 lines (47 loc) · 1.19 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
{
"name": "sql-server",
"version": "0.1.6",
"description": "Connect to SQL Server",
"author": {
"name": "Google LLC",
"email": "data-cloud-ai-integrations@google.com"
},
"repository": "https://github.com/gemini-cli-extensions/sql-server",
"license": "Apache-2.0",
"extensions": {
"com.google.cloud.data.agent-plugins": {
"config": [
{
"key": "MSSQL_HOST",
"title": "Host",
"description": "Host or IP address of the SQL Server"
},
{
"key": "MSSQL_PORT",
"title": "Port",
"description": "Port number of the SQL Server"
},
{
"key": "MSSQL_DATABASE",
"title": "Database",
"description": "Name of the database"
},
{
"key": "MSSQL_USER",
"title": "User",
"description": "Username of the database user"
},
{
"key": "MSSQL_PASSWORD",
"title": "Password",
"description": "Password of the database user",
"sensitive": true
}
],
"gemini": {
"contextFileName": "SQL-SERVER.md",
"mcpServerName": "sql_server"
}
}
}
}