@@ -26,17 +26,17 @@ export interface Tools {
2626}
2727
2828const projectEvalDescription = `
29- Evaluates JavaScript/TypeScript code in the context of the project.
29+ Evaluates JavaScript/TypeScript code in the context of the project.
3030
31- The current NodeJS version is: ${ process . version }
31+ The current NodeJS version is: ${ process . version }
3232
33- Use this tool every time you need to evaluate JavaScript/TypeScript code,
34- including to test the behaviour of a function or to debug
35- something. The tool also returns anything written to standard
36- output. DO NOT use shell tools to evaluate JavaScript/TypeScript code.
33+ Use this tool every time you need to evaluate JavaScript/TypeScript code,
34+ including to test the behaviour of a function or to debug
35+ something. The tool also returns anything written to standard
36+ output. DO NOT use shell tools to evaluate JavaScript/TypeScript code.
3737
38- Imports are allowed only as the form of dynamic imports, e.g.:
39- import('node:path').then(path => {...});
38+ Imports are allowed only as the form of dynamic imports, e.g.:
39+ import('node:path').then(path => {...});
4040` ;
4141
4242export const projectEvalInputSchema = z . object ( {
@@ -64,18 +64,18 @@ export const projectEvalInputSchema = z.object({
6464
6565const referenceDescription = `Module path in format 'module:symbol[#method|.method]'. Supports local files, dependencies, and Node.js builtins.
6666
67- Module reference format:
68- - module:symbol - Extract a top-level symbol
69- - module:Class#method - Extract an instance method
70- - module:Class.method - Extract a static method
71- - node:Class#method - Extract a global/builtin instance method
72- - node:Class.method - Extract a global/builtin static method
67+ Module reference format:
68+ - module:symbol - Extract a top-level symbol
69+ - module:Class#method - Extract an instance method
70+ - module:Class.method - Extract a static method
71+ - node:Class#method - Extract a global/builtin instance method
72+ - node:Class.method - Extract a global/builtin static method
7373
74- Examples:
75- - src/types.ts:SymbolInfo (local file symbol)
76- - lodash:isEmpty (dependency function)
77- - react:Component#render (instance method)
78- - node:Math.max (builtin static method)`;
74+ Examples:
75+ - src/types.ts:SymbolInfo (local file symbol)
76+ - lodash:isEmpty (dependency function)
77+ - react:Component#render (instance method)
78+ - node:Math.max (builtin static method)` ;
7979
8080export const docsInputSchema = z . object ( {
8181 reference : z . string ( ) . describe ( referenceDescription ) ,
0 commit comments