From 8ca10c434a74679d703a72bc68e1d78376a1ac00 Mon Sep 17 00:00:00 2001 From: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com> Date: Tue, 20 Jan 2026 13:40:23 +0000 Subject: [PATCH] fix: add 301 redirect from /CLI/mcp to home page Co-Authored-By: Rick Blalock --- next.config.mjs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/next.config.mjs b/next.config.mjs index 740d17cf..ab159f1d 100644 --- a/next.config.mjs +++ b/next.config.mjs @@ -8,6 +8,11 @@ const config = { reactStrictMode: true, serverExternalPackages: ['twoslash', 'typescript'], redirects: async () => [ + { + source: '/CLI/mcp', + destination: '/', + permanent: true, + }, { source: '/Get-Started/what-is-agentuity', destination: '/',