MCPcopy Index your code
hub / github.com/getsentry/XcodeBuildMCP / getUnsupportedSchemaKeys

Function getUnsupportedSchemaKeys

src/cli/schema-to-yargs.ts:269–280  ·  view source on GitHub ↗
(schema: ToolSchemaShape)

Source from the content-addressed store, hash-verified

267 * These need to be passed via --json.
268 */
269export function getUnsupportedSchemaKeys(schema: ToolSchemaShape): string[] {
270 const unsupported: string[] = [];
271
272 for (const [key, zodType] of Object.entries(schema)) {
273 const opt = zodToYargsOption(zodType);
274 if (!opt) {
275 unsupported.push(key);
276 }
277 }
278
279 return unsupported;
280}

Callers 1

registerToolSubcommandFunction · 0.90

Calls 2

zodToYargsOptionFunction · 0.85
pushMethod · 0.80

Tested by

no test coverage detected