()
| 38 | static args = zodToArgs(buildManifestInputs.pick({location: true})); |
| 39 | |
| 40 | async run(): Promise<void> { |
| 41 | const {args, flags} = await this.parse(BuildManifest); |
| 42 | try { |
| 43 | await buildManifestAdapter(process.cwd(), {...args, ...flags}, commandLogger(this)); |
| 44 | this.log('TypeScript manifest built successfully!'); |
| 45 | } catch (e: any) { |
| 46 | this.error(e); |
| 47 | } |
| 48 | } |
| 49 | } |
| 50 | |
| 51 | export function registerBuildManifestMCPTool(server: McpServer): RegisteredTool { |
nothing calls this directly
no test coverage detected