From 53b70d70246dd1996ad0c576b79aec8401cafbfb Mon Sep 17 00:00:00 2001 From: Madison Date: Wed, 29 Oct 2025 16:54:47 -0500 Subject: [PATCH] fix local link --- docs/src/app/api/search/route.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/src/app/api/search/route.ts b/docs/src/app/api/search/route.ts index 7606c07be..477767ef1 100644 --- a/docs/src/app/api/search/route.ts +++ b/docs/src/app/api/search/route.ts @@ -14,7 +14,7 @@ async function callMcpServer(search_query: string): Promise { // Use localhost during development, production URL otherwise // TODO: Temporarily testing with production MCP const mcpUrl = process.env.NODE_ENV === 'development' - ? 'https://mcp.stack-auth.com/api/internal/mcp' + ? 'http://localhost:8104/api/internal/mcp' : 'https://mcp.stack-auth.com/api/internal/mcp'; console.log(`Calling MCP server at: ${mcpUrl}`);