Skip to content

Commit ab18f09

Browse files
committed
Updated to v1.0.1
1 parent f1a0980 commit ab18f09

5 files changed

Lines changed: 9 additions & 23 deletions

File tree

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -209,4 +209,8 @@ This Gemini CLI extension provides a powerful and convenient way to leverage the
209209

210210
1. Initial release.
211211

212+
- v1.0.1 (November 13, 2025)
213+
214+
1. A bug was removed.
215+
212216
[TOP](#top)

gemini-extension.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "file-search-store-extension",
3-
"version": "1.0.0",
3+
"version": "1.0.1",
44
"contextFileName": "GEMINI.md",
55
"mcpServers": {
66
"file-search-store-extension": {

mcp-server/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "file-search-store-extension",
3-
"version": "1.0.0",
3+
"version": "1.0.1",
44
"description": "",
55
"main": "src/tools-for-mcp-server-extension.js",
66
"scripts": {

mcp-server/src/file-search-store-extension.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import { tools } from "./tools.js";
99

1010
const server = new McpServer({
1111
name: "file-search-store-extension",
12-
version: "1.0.0",
12+
version: "1.0.1",
1313
});
1414

1515
if (tools.length > 0) {

mcp-server/src/tools.js

Lines changed: 2 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -298,13 +298,11 @@ const __tools = [
298298
.optional(),
299299
prompt: z
300300
.string()
301-
.describe(
302-
"The name of the FileSearchStore containing Documents. Example: fileSearchStores/my-file-search-store-123 It takes the form fileSearchStores/{filesearchstore}."
303-
),
301+
.describe("The prompt for generating content using Gemini API."),
304302
metadataFilter: z
305303
.string()
306304
.describe(
307-
"Metadata filter to apply to the semantic retrieval documents and chunks."
305+
`Metadata filter to apply to the semantic retrieval documents and chunks. Ex. 'author="Robert Graves"'`
308306
)
309307
.optional(),
310308
},
@@ -315,19 +313,3 @@ const __tools = [
315313
];
316314

317315
export const tools = [...__tools];
318-
319-
// const __f = [
320-
// "create_file_search_store",
321-
// "get_file_search_store_list",
322-
// // "delete_file_search_store",
323-
// // "get_file_search_store",
324-
// // "upload_media_to_file_search_store",
325-
// // "upload_media_to_file_search_store",
326-
// // "get_operation",
327-
// // "delete_document",
328-
// // "get_document",
329-
// // "get_document",
330-
// // "generate_content",
331-
// ];
332-
// const __ftools = __tools.filter((e) => __f.includes(e.name));
333-
// export const tools = [...__ftools];

0 commit comments

Comments
 (0)