fix: redirect legacy auth0-mcp-server path (llms.txt dead link) to /docs/get-started - #1808
Closed
wallidsaydi-creator wants to merge 1 commit into
Closed
Conversation
The legacy path /docs/customize/integrations/ai-tools/auth0-mcp-server (live in llms.txt L35) 404s with no covering redirect. Adds the redirects.json entry in the established format. Fixes #1806
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Fixes #1806
What
Adds one
redirects.jsonentry so the legacy MCP Server path stops 404-ing:{ "source": "/docs/customize/integrations/ai-tools/auth0-mcp-server", "destination": "/docs/get-started/auth0-mcp-server" }Why
https://auth0.com/llms.txtL35 (Developer Tools section — the entry point AI agents resolve for MCP integration) still points at/docs/customize/integrations/ai-tools/auth0-mcp-server, which returns a hard 404 with no covering redirect (redirects.jsonhad 0 entries undercustomize/integrations/ai-tools). The canonical docs live at/docs/get-started/auth0-mcp-serverand the repo's own content already links there (auth4genai/build-with-ai/using-ai-tools.mdxL34).Re-verified live before opening this PR (2026-08-31): legacy path 404 under 2 UAs, canonical path 200, llms.txt L35 unchanged.
Scope
main/config/redirects.json, placed at the head of the existingcustomize/integrationscluster, matching the established format exactly.*.mdxonly) is unaffected.Verification
main/config/redirects.jsonJSON validitymain/docs/get-started/auth0-mcp-server.mdxpresentContext
I maintain agent-context hygiene for AI coding tools (stale docs / dead links in agent-facing indexes are a recurring hallucination source). Related fixes: merged PR to cloudflare-docs repairing 27 dead llms.txt hub links (cloudflare/cloudflare-docs#32985), maintainer-shipped fix in llm-docs-builder v1.0.0 (mensfeld/llm-docs-builder#165).