From 21e04751016d2c60fe36f935e463e692e4030847 Mon Sep 17 00:00:00 2001 From: Averi Kitsch Date: Tue, 13 Jan 2026 14:34:20 -0800 Subject: [PATCH 1/2] feat: add Configuration settings --- gemini-extension.json | 38 +++++++++++++++++++++++++++++--------- 1 file changed, 29 insertions(+), 9 deletions(-) diff --git a/gemini-extension.json b/gemini-extension.json index 6545558..f13b85a 100644 --- a/gemini-extension.json +++ b/gemini-extension.json @@ -9,15 +9,35 @@ "--prebuilt", "mssql", "--stdio" - ], - "env": { - "MSSQL_HOST": "${MSSQL_HOST}", - "MSSQL_PORT": "${MSSQL_PORT}", - "MSSQL_DATABASE": "${MSSQL_DATABASE}", - "MSSQL_USER": "${MSSQL_USER}", - "MSSQL_PASSWORD": "${MSSQL_PASSWORD}" - } + ] } }, - "contextFileName": "SQL-SERVER.md" + "contextFileName": "SQL-SERVER.md", + "settings": [ + { + "name": "Host", + "description": "Host or IP address of the SQL Server", + "envVar": "MSSQL_HOST" + }, + { + "name": "Port", + "description": "Port number of the SQL Server", + "envVar": "MSSQL_PORT" + }, + { + "name": "Database Name", + "description": "Name of the database", + "envVar": "MSSQL_DATABASE" + }, + { + "name": "User", + "description": "Username of the database user", + "envVar": "MSSQL_USER" + }, + { + "name": "Password", + "description": "Password of the database user", + "envVar": "MSSQL_PASSWORD" + } + ] } \ No newline at end of file From a19caad65abbd2487ba5bc5bae75f58138facfb9 Mon Sep 17 00:00:00 2001 From: Averi Kitsch Date: Thu, 22 Jan 2026 11:28:15 -0800 Subject: [PATCH 2/2] Update gemini-extension.json --- gemini-extension.json | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/gemini-extension.json b/gemini-extension.json index f13b85a..9432515 100644 --- a/gemini-extension.json +++ b/gemini-extension.json @@ -25,7 +25,7 @@ "envVar": "MSSQL_PORT" }, { - "name": "Database Name", + "name": "Database", "description": "Name of the database", "envVar": "MSSQL_DATABASE" }, @@ -37,7 +37,8 @@ { "name": "Password", "description": "Password of the database user", - "envVar": "MSSQL_PASSWORD" + "envVar": "MSSQL_PASSWORD", + "sensitive": true } ] -} \ No newline at end of file +}