docs+feat: expand MCP connection states into reference table and add tooltip to State column header - #5785
Merged
Pratham-Mishra04 merged 1 commit intoAug 8, 2026
Conversation
This was referenced Aug 3, 2026
|
|
This was referenced Aug 3, 2026
Merged
refactor: migrate OAuth flow state/PKCE fields from
oauth_configs to new mcp_oauth_flows table
#5709
Merged
Merged
Merged
Merged
This was referenced Aug 6, 2026
Contributor
There was a problem hiding this comment.
Actionable comments posted: 1
🤖 Prompt for all review comments with AI agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.
Inline comments:
In `@docs/mcp/auth/overview.mdx`:
- Line 57: Update the auth-state documentation to map only per_user_oauth and
per_user_headers clients to MCP Sessions, excluding token_exchange. Verify the
current state projection and, if unchanged, scope needs_reauth to oauth,
per_user_oauth, per_user_headers, and token_exchange rather than all auth types;
also qualify the manual-repair guidance as applying only to server-level
clients.
🪄 Autofix
Fix all unresolved CodeRabbit comments on this PR:
- Push a commit to this branch (recommended)
- Create a new PR with the fixes
ℹ️ Review info
⚙️ Run configuration
Configuration used: Path: .coderabbit.yaml
Review profile: CHILL
Plan: Pro Plus
Run ID: 00da3f26-3c3b-4af9-ba32-bacc1e2eb74a
📒 Files selected for processing (4)
docs/mcp/auth/overview.mdxdocs/mcp/connecting-to-servers.mdxdocs/mcp/overview.mdxui/app/workspace/mcp-registry/views/mcpClientsTable.tsx
🚧 Files skipped from review as they are similar to previous changes (3)
- docs/mcp/overview.mdx
- ui/app/workspace/mcp-registry/views/mcpClientsTable.tsx
- docs/mcp/connecting-to-servers.mdx
Pratham-Mishra04
force-pushed
the
07-31-feat_add_token-exchange_demo_mcp_server_for_testing_against_real_identity_providers
branch
from
August 6, 2026 21:53
4379093 to
33dcddc
Compare
Pratham-Mishra04
force-pushed
the
08-01-feat_add_a_states-explainer_tooltip_to_the_mcp_servers_table
branch
from
August 6, 2026 21:53
85ff18a to
14b254c
Compare
Contributor
|
Note GitHub couldn't provide a complete incremental comparison for this pull request, so CodeRabbit is performing a full review instead. This review may take a little longer. |
Pratham-Mishra04
force-pushed
the
08-01-feat_add_a_states-explainer_tooltip_to_the_mcp_servers_table
branch
from
August 8, 2026 08:43
14b254c to
d0a54e1
Compare
Pratham-Mishra04
force-pushed
the
07-31-feat_add_token-exchange_demo_mcp_server_for_testing_against_real_identity_providers
branch
2 times, most recently
from
August 8, 2026 10:13
0f63fe2 to
e141ca5
Compare
Pratham-Mishra04
force-pushed
the
08-01-feat_add_a_states-explainer_tooltip_to_the_mcp_servers_table
branch
from
August 8, 2026 10:14
d0a54e1 to
b54596d
Compare
This was referenced Aug 8, 2026
Collaborator
Author
Merge activity
|
Pratham-Mishra04
changed the base branch from
07-31-feat_add_token-exchange_demo_mcp_server_for_testing_against_real_identity_providers
to
graphite-base/5785
August 8, 2026 10:37
Pratham-Mishra04
dismissed
coderabbitai[bot]’s stale review
August 8, 2026 10:40
The base branch was changed.
…it applies to all
Pratham-Mishra04
force-pushed
the
08-01-feat_add_a_states-explainer_tooltip_to_the_mcp_servers_table
branch
from
August 8, 2026 10:40
b54596d to
9b9630a
Compare
Pratham-Mishra04
deleted the
08-01-feat_add_a_states-explainer_tooltip_to_the_mcp_servers_table
branch
August 8, 2026 10:42
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.
Summary
Improves discoverability of MCP client connection states by expanding the auth overview docs and adding an inline tooltip to the "State" column header in the MCP clients table.
Changes
docs/mcp/auth/overview.mdxwith a structured reference table covering all states:connected,disconnected,error,pending_tools,disabled,pending_verification, andneeds_reauth, including what each means and which auth types it applies to.pending_toolsanddisabledas explicitly documented states, which were previously unlisted.pending_verificationandneeds_reauthare the two states that apply across all auth types, not just server-level clients.needs_reauthdescription to distinguish server-level behavior from per-user behavior more precisely, and noted it is a display-level state for per-user clients.HeaderWithTooltipcomponent to the MCP clients table that renders an info icon next to the "State" column header; hovering it shows a brief explanation of connection state semantics and links to the full reference table in the docs.Type of change
Affected areas
How to test
https://docs.getbifrost.ai/mcp/auth/overview#connection-statesand the anchor resolves to the new connection states table.Screenshots/Recordings
Before: "State" column header was plain text with no additional context.
After: "State" column header includes a small info icon; hovering reveals a tooltip explaining connection state semantics and linking to the full reference.
Breaking changes
Related issues
Security considerations
None.
Checklist
docs/contributing/README.mdand followed the guidelines