Fix broken MCP path references after server move#191
Open
yevheniikravchuk wants to merge 1 commit into
Open
Conversation
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.
Why
There is a stale MCP path in this repo’s docs that still points at
products/mcp, which is no longer the active location in the PostHog repo.PostHog moved MCP to
services/mcp, and this update keeps links accurate for users who follow the README/agent docs.Historical context (verified)
c4fe76bdcb85b7b0c6c44079a34854aa538c5005dated 2025-12-23(commit message:
chore(mcp): move mcp server to services folder (#43928)).products/mcptoservices/mcp, so the old path now 404s and we should point users at the new path.What changed
README.mdtohttps://github.com/PostHog/posthog/tree/master/services/mcp.AGENTS.mdfor consistency across repo guidance.Evidence
https://github.com/PostHog/posthog/tree/master/products/mcpnow returns 404.https://github.com/PostHog/posthog/tree/master/services/mcpis reachable.Human summary
This is a small, low-risk docs-only fix to prevent dead links after the MCP folder migration.
Testing