()
| 136 | static flags = zodToFlags(migrateSubgraphInputs); |
| 137 | |
| 138 | async run(): Promise<void> { |
| 139 | const {flags} = await this.parse(MigrateSubgraph); |
| 140 | |
| 141 | const {output} = await migrateSubgraphAdapter(process.cwd(), flags, commandLogger(this)); |
| 142 | |
| 143 | this.log(`Output migrated SubQuery project to ${output}`); |
| 144 | } |
| 145 | } |
| 146 | |
| 147 | export function registerMigrateSubgraphMCPTool(server: McpServer): RegisteredTool { |
nothing calls this directly
no test coverage detected