We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 018f752 commit bc9a292Copy full SHA for bc9a292
src/tools/mongodb/search/listSearchIndexes.ts
@@ -27,7 +27,7 @@ export class ListSearchIndexesTool extends MongoDBToolBase {
27
return {
28
content: formatUntrustedData(
29
`Found ${trimmedIndexDefinitions.length} search and vector search indexes in ${database}.${collection}`,
30
- indexes.map((index) => EJSON.stringify(index)).join("\n")
+ trimmedIndexDefinitions.map((index) => EJSON.stringify(index)).join("\n")
31
),
32
};
33
} else {
0 commit comments