From 388fed26cbd99779ed65c441701243edc54577cf Mon Sep 17 00:00:00 2001 From: Shruti Mantri Date: Sat, 4 Apr 2026 20:04:00 +0530 Subject: [PATCH 1/2] feat: add gemini extension --- gemini-extension.json | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 gemini-extension.json diff --git a/gemini-extension.json b/gemini-extension.json new file mode 100644 index 00000000..25ac9b8e --- /dev/null +++ b/gemini-extension.json @@ -0,0 +1,36 @@ +{ + "name": "qdrant", + "version": "0.1.0", + "description": "Store and retrieve memories in the Qdrant vector search engine.", + "mcpServers": { + "qdrant": { + "command": "uvx", + "args": [ + "mcp-server-qdrant" + ] + } + }, + "settings": [ + { + "name": "Qdrant URL", + "description": "Connection URL for your Qdrant database (e.g., https://xyz-example.eu-central.aws.cloud.qdrant.io:6333)", + "envVar": "QDRANT_URL" + }, + { + "name": "Qdrant API Key", + "description": "API Key for your Qdrant database", + "envVar": "QDRANT_API_KEY", + "sensitive": true + }, + { + "name": "Collection Name", + "description": "Name of the collection to use", + "envVar": "COLLECTION_NAME" + }, + { + "name": "Embedding Model", + "description": "Embedding model to use (e.g., sentence-transformers/all-MiniLM-L6-v2)", + "envVar": "EMBEDDING_MODEL" + } + ] +} \ No newline at end of file From 6706efaa82bc8197e10a357659bb489ce7c6d06f Mon Sep 17 00:00:00 2001 From: Shruti Mantri Date: Sat, 4 Apr 2026 20:07:36 +0530 Subject: [PATCH 2/2] add new line at the end --- gemini-extension.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/gemini-extension.json b/gemini-extension.json index 25ac9b8e..9f63612f 100644 --- a/gemini-extension.json +++ b/gemini-extension.json @@ -33,4 +33,5 @@ "envVar": "EMBEDDING_MODEL" } ] -} \ No newline at end of file +} +