Skip to content

Commit 534d0de

Browse files
committed
fix: import path utilities to resolve build errors
1 parent eef96b4 commit 534d0de

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

src/core/MCPServer.ts

+1-4
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ import { ToolProtocol } from "../tools/BaseTool.js";
1515
import { PromptProtocol } from "../prompts/BasePrompt.js";
1616
import { ResourceProtocol } from "../resources/BaseResource.js";
1717
import { readFileSync } from "fs";
18-
import { join } from "path";
18+
import { join, resolve, dirname } from "path";
1919
import { logger } from "./Logger.js";
2020
import { ToolLoader } from "../loaders/toolLoader.js";
2121
import { PromptLoader } from "../loaders/promptLoader.js";
@@ -494,9 +494,6 @@ export class MCPServer {
494494
}
495495
}
496496

497-
498-
499-
500497
async stop() {
501498
if (!this.isRunning) {
502499
logger.debug("Stop called, but server not running.");

0 commit comments

Comments
 (0)