We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a5ef61f commit 6d61494Copy full SHA for 6d61494
1 file changed
src/index.ts
@@ -10,6 +10,7 @@
10
* mcp-cli <server>/<tool> <json> Call tool with arguments
11
*/
12
13
+import * as fs from 'node:fs';
14
import { callCommand } from './commands/call.js';
15
import { grepCommand } from './commands/grep.js';
16
import { infoCommand } from './commands/info.js';
@@ -27,7 +28,6 @@ import {
27
28
unknownOptionError,
29
} from './errors.js';
30
import { VERSION } from './version.js';
-import * as fs from 'node:fs';
31
32
/**
33
* Check if stdin has data available (for detecting piped input in non-TTY environments)
0 commit comments