@@ -21,7 +21,7 @@ import {defineTool} from './ToolDefinition.js';
2121
2222export const lighthouseAudit = defineTool ( {
2323 name : 'lighthouse_audit' ,
24- description : `Get Lighthouse score and reports for accesibility , SEO and best practices.` ,
24+ description : `Get Lighthouse score and reports for accessibility , SEO and best practices.` ,
2525 annotations : {
2626 category : ToolCategory . DEBUGGING ,
2727 readOnlyHint : true ,
@@ -31,17 +31,17 @@ export const lighthouseAudit = defineTool({
3131 . enum ( [ 'navigation' , 'snapshot' ] )
3232 . default ( 'navigation' )
3333 . describe (
34- '"navigation" reloads the selected page and audits during the navigation. The "snapshot" mode analyzes the page in its current state.' ,
34+ '"navigation" reloads & audits. "snapshot" analyzes current state.' ,
3535 ) ,
3636 device : zod
3737 . enum ( [ 'desktop' , 'mobile' ] )
3838 . default ( 'desktop' )
39- . describe ( 'The device to emulate.' ) ,
39+ . describe ( 'Device to emulate.' ) ,
4040 outputDirPath : zod
4141 . string ( )
4242 . optional ( )
4343 . describe (
44- 'The directory to output the reports to . If not provided, temporary files will be created .' ,
44+ 'Directory for reports. If omitted, uses temporary files.' ,
4545 ) ,
4646 } ,
4747 handler : async ( request , response , context ) => {
0 commit comments