/** @type {import('./mcp.config').MCPConfig} */
module.exports = {
aiAgent: "openai", // 'none' | 'copilot' | 'openai' | 'custom'
openAIKey: process.env.OPENAI_KEY, // Only needed for OpenAI
useCursorAssist: true, // Inline code suggestions
hooksOutputDir: "hooks", // Generated hooks folder
docsOutputDir: "mcp-docs", // Generated docs folder
autoInferRender: true, // Suggest SSR/ISR/CSR automatically
enableDryRun: false, // Generate output but do not write files
allowedApiKinds: ["api-client","graphql-query","graphql-mutation"],
};
//Developers can tweak paths, AI agent type, or enable/disable dry-run.
//Using process.env.OPENAI_KEY allows safe key storage.