-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathplugin.json
More file actions
78 lines (78 loc) · 2.44 KB
/
Copy pathplugin.json
File metadata and controls
78 lines (78 loc) · 2.44 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"$schema": "https://agent-plugins.org/schemas/1.0.0/plugin.schema.json",
"name": "cloud-sql-sqlserver",
"version": "0.2.0",
"description": "Connect to Cloud SQL for SQL Server",
"author": {
"name": "Google LLC",
"email": "data-cloud-ai-integrations@google.com"
},
"homepage": "https://cloud.google.com/sql/docs/sqlserver",
"repository": "https://github.com/gemini-cli-extensions/cloud-sql-sqlserver",
"license": "Apache-2.0",
"keywords": [
"cloud-sql",
"sql-server",
"database"
],
"extensions": {
"com.google.cloud.data.agent-plugins": {
"config": [
{
"key": "CLOUD_SQL_MSSQL_PROJECT",
"title": "Project Name",
"description": "Name of the Google Cloud project"
},
{
"key": "CLOUD_SQL_MSSQL_REGION",
"title": "Region",
"description": "Region of the Cloud SQL instance"
},
{
"key": "CLOUD_SQL_MSSQL_INSTANCE",
"title": "Instance ID",
"description": "ID of the Cloud SQL instance"
},
{
"key": "CLOUD_SQL_MSSQL_DATABASE",
"title": "Database",
"description": "Name of the database"
},
{
"key": "CLOUD_SQL_MSSQL_USER",
"title": "User",
"description": "Username of the database user"
},
{
"key": "CLOUD_SQL_MSSQL_PASSWORD",
"title": "Password",
"description": "Password of the database user"
},
{
"key": "CLOUD_SQL_MSSQL_IP_TYPE",
"title": "Instance IP assignment",
"description": "(Optional) Type of the IP address: PUBLIC, PRIVATE, or PSC (Default: Public)"
}
],
"gemini": {
"mcpServerName": "cloud-sql-mssql",
"contextFileName": "CLOUD-SQL-SQLSERVER.md"
},
"codex": {
"interface": {
"displayName": "Cloud SQL for SQL Server",
"shortDescription": "Interact with CloudSQL for SQL Server instances.",
"developerName": "Google LLC",
"category": "Database",
"capabilities": [
"Read",
"Write"
],
"defaultPrompt": [
"You are a highly skilled database engineer and database administrator. Your purpose is to help the developer build and interact with databases and utilize data context throughout the entire software delivery cycle."
]
}
}
}
}
}