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";
2
2
import type { ToolArgs , ToolCategory } from "../tool.js" ;
3
3
import { ToolBase } from "../tool.js" ;
4
4
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 " ;
7
7
8
8
protected handleError (
9
9
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";
12
12
export type ToolArgs < Args extends ZodRawShape > = z . objectOutputType < Args , ZodNever > ;
13
13
14
14
export type OperationType = "metadata" | "read" | "create" | "delete" | "update" | "connect" ;
15
- export type ToolCategory = "mongodb" | "atlas" | "atlas-local " ;
15
+ export type ToolCategory = "mongodb" | "atlas" | "atlasLocal " ;
16
16
export type TelemetryToolMetadata = {
17
17
projectId ?: string ;
18
18
orgId ?: string ;
You can’t perform that action at this time.
0 commit comments