FR-6380 Point the MCP endpoint at mcp.fortrabbit.com/mcp - #4
Merged
Conversation
Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_013G3f9pdDE232yz1pA78eqS
The bare host answers only GET and 404s; JSON-RPC is served at https://mcp.fortrabbit.com/mcp. Existing registrations now compare as stale, so `frbit mcp install` repairs them. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01ArDJv66awmc1d9RMHUYBrx
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.
ServerURLmoves fromhttps://api.fortrabbit.com/mcptohttps://mcp.fortrabbit.com/mcp.The old endpoint is gone —
POST https://api.fortrabbit.com/mcpnow answers403with an empty body and noWWW-Authenticateheader. The new host serves JSON-RPC on the/mcppath only; the bare host answers405 Method Not Allowed (Allow: GET).Two commits: the first moves to the new host, the second adds the path that the host actually serves.
Because
service.go:202compares a registration againstServerURL, any client already pointing at the old value now reads as stale, sofrbit mcp installrepairs it rather than leaving a dead entry behind.Matching changes are already released elsewhere:
fortrabbit/agent-skills— pushed tomain(a32a24e)fortrabbit/frbit-frontend— released asv20260831, live on www, docs and the dashboardgo build ./...passes;internal/agentmcpandinternal/cmd/mcptests pass.🤖 Generated with Claude Code
https://claude.ai/code/session_01ArDJv66awmc1d9RMHUYBrx