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 5336e4a commit 76e2a6fCopy full SHA for 76e2a6f
src/tools/atlas/listProjects.ts
@@ -1,8 +1,6 @@
1
import { CallToolResult } from "@modelcontextprotocol/sdk/types.js";
2
import { AtlasToolBase } from "./atlasTool.js";
3
import { OperationType } from "../tool.js";
4
-import { mongoLogId } from "mongodb-log-writer";
5
-import logger from "../../logger.js";
6
7
export class ListProjectsTool extends AtlasToolBase {
8
protected name = "atlas-list-projects";
@@ -12,7 +10,6 @@ export class ListProjectsTool extends AtlasToolBase {
12
10
13
11
protected async execute(): Promise<CallToolResult> {
14
this.session.ensureAuthenticated();
15
- logger.info(mongoLogId(1_000_000), "session", `Called ensureAuthenticated! `);
16
17
const data = await this.session.apiClient.listProjects();
18
0 commit comments