File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed
Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -2,8 +2,8 @@ import type { CallToolResult } from "@modelcontextprotocol/sdk/types.js";
22import type { ToolArgs , ToolCategory } from "../tool.js" ;
33import { ToolBase } from "../tool.js" ;
44
5- export abstract class AtlasToolBase extends ToolBase {
6- public category : ToolCategory = "atlas-local " ;
5+ export abstract class AtlasLocalToolBase extends ToolBase {
6+ public category : ToolCategory = "atlasLocal " ;
77
88 protected handleError (
99 error : unknown ,
File renamed without changes.
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ import type { Server } from "../server.js";
1212export type ToolArgs < Args extends ZodRawShape > = z . objectOutputType < Args , ZodNever > ;
1313
1414export type OperationType = "metadata" | "read" | "create" | "delete" | "update" | "connect" ;
15- export type ToolCategory = "mongodb" | "atlas" | "atlas-local " ;
15+ export type ToolCategory = "mongodb" | "atlas" | "atlasLocal " ;
1616export type TelemetryToolMetadata = {
1717 projectId ?: string ;
1818 orgId ?: string ;
You can’t perform that action at this time.
0 commit comments