@bryan-thompson/inspector-assessment-cli 1.20.4 → 1.20.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/assess-full.js +4 -0
- package/package.json +1 -1
package/build/assess-full.js
CHANGED
|
@@ -519,6 +519,10 @@ async function runFullAssessment(options) {
|
|
|
519
519
|
serverName: options.serverName,
|
|
520
520
|
tools,
|
|
521
521
|
callTool: createCallToolWrapper(client),
|
|
522
|
+
listTools: async () => {
|
|
523
|
+
const response = await client.listTools();
|
|
524
|
+
return response.tools;
|
|
525
|
+
},
|
|
522
526
|
config,
|
|
523
527
|
sourceCodePath: options.sourceCodePath,
|
|
524
528
|
onProgress,
|
package/package.json
CHANGED