Skip to content

Commit 98ac5bc

Browse files
committed
Fix remaining style issues
1 parent 17f9022 commit 98ac5bc

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

src/tools/mongodb/delete/dropSearchIndex.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
import { z } from "zod";
21
import { CallToolResult } from "@modelcontextprotocol/sdk/types.js";
32
import { SearchIndexOperationArgs, MongoDBToolBase } from "../mongodbTool.js";
43
import { ToolArgs, OperationType } from "../../tool.js";

src/tools/mongodb/mongodbTool.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ export const DbOperationArgs = {
1313
export const SearchIndexOperationArgs = {
1414
database: z.string().describe("Database name"),
1515
collection: z.string().describe("Collection name"),
16-
searchIndexName: z.string().describe("Search Index or Vector Search Index name"),
16+
searchIndexName: z.string().describe("Search Index or Vector Search Index name"),
1717
};
1818

1919
export abstract class MongoDBToolBase extends ToolBase {

0 commit comments

Comments
 (0)