We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4be648c commit 32c3740Copy full SHA for 32c3740
packages/burger-mcp/src/config.ts
@@ -8,4 +8,4 @@ dotenv.config({ path: path.join(__dirname, '../../../.env'), quiet: true });
8
9
// Use --local option to force MCP server to connect to local Burger API
10
const localApiUrl = 'http://localhost:7071';
11
-export const burgerApiUrl = process.argv[2] !== '--local' ? localApiUrl : (process.env.BURGER_API_URL || localApiUrl);
+export const burgerApiUrl = process.argv[2] === '--local' ? localApiUrl : (process.env.BURGER_API_URL || localApiUrl);
0 commit comments