startCommand: type: stdio configSchema: type: object properties: apiUrl: type: string description: "Web Inspector API base URL" default: "https://web-inspector.yakenator.io" language: type: string description: "Default language (en or ko)" enum: ["en", "ko"] default: "en" commandFunction: |- (config) => ({ command: "node", args: ["dist/index.js"], env: { API_URL: config.apiUrl || "https://web-inspector.yakenator.io", LANGUAGE: config.language || "en", TRANSPORT: "stdio" } })