MCPcopy
hub / github.com/subquery/subql / run

Method run

packages/cli/src/commands/build-manifest.ts:40–48  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

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
51export function registerBuildManifestMCPTool(server: McpServer): RegisteredTool {

Callers

nothing calls this directly

Calls 4

commandLoggerFunction · 0.90
buildManifestAdapterFunction · 0.85
logMethod · 0.45
errorMethod · 0.45

Tested by

no test coverage detected