@@ -221,13 +221,13 @@ const listGoldenTemplatesOutputSchema = z.object({
221221 ) ,
222222} )
223223
224- const validateAssemblyInputSchema = z . object ( {
224+ const lintAssemblyInputSchema = z . object ( {
225225 instructions : z . unknown ( ) ,
226226 strict : z . boolean ( ) . optional ( ) ,
227227 return_fixed : z . boolean ( ) . optional ( ) ,
228228} )
229229
230- const validateAssemblyOutputSchema = z . object ( {
230+ const lintAssemblyOutputSchema = z . object ( {
231231 status : z . enum ( [ 'ok' , 'error' ] ) ,
232232 linting_issues : z . array ( lintIssueSchema ) ,
233233 normalized_instructions : z . unknown ( ) . optional ( ) ,
@@ -418,13 +418,13 @@ export const createTransloaditMcpServer = (
418418 } )
419419
420420 server . registerTool (
421- 'transloadit_validate_assembly ' ,
421+ 'transloadit_lint_assembly_instructions ' ,
422422 {
423- title : 'Validate Assembly Instructions' ,
423+ title : 'Lint Assembly Instructions' ,
424424 description :
425425 'Lint Assembly Instructions without creating an Assembly. Returns structured issues.' ,
426- inputSchema : validateAssemblyInputSchema ,
427- outputSchema : validateAssemblyOutputSchema ,
426+ inputSchema : lintAssemblyInputSchema ,
427+ outputSchema : lintAssemblyOutputSchema ,
428428 } ,
429429 async ( { instructions, strict, return_fixed } ) => {
430430 const client = createLintClient ( options )
0 commit comments