fix: restore MCP delivery and settings tooltips#1988
Merged
Conversation
Contributor
|
No actionable comments were generated in the recent review. 🎉 ℹ️ Recent review info⚙️ Run configurationConfiguration used: defaults Review profile: CHILL Plan: Pro Run ID: 📒 Files selected for processing (8)
📝 WalkthroughWalkthroughAdds a retryable built-in MCP allowlist startup migration, switches tool-result strings to strict JSON parsing, and wraps the settings page in a delayed tooltip provider. ChangesBuilt-in MCP allowlist migration
Tool-result output parsing
Settings tooltip context
Estimated code review effort: 3 (Moderate) | ~25 minutes Sequence Diagram(s)sequenceDiagram
participant AppStartup
participant SessionDataMigrationSQLite
participant AgentSettings
AppStartup->>SessionDataMigrationSQLite: Read migration status
AppStartup->>SessionDataMigrationSQLite: Write running status
AppStartup->>AgentSettings: Read deepchat agent config
AgentSettings-->>AppStartup: Return enabledMcpServerIds
AppStartup->>AgentSettings: Convert [] to null when applicable
AppStartup->>SessionDataMigrationSQLite: Write completed or failed status
Possibly related PRs
🚥 Pre-merge checks | ✅ 4 | ❌ 1❌ Failed checks (1 warning)
✅ Passed checks (4 passed)
✨ Finishing Touches📝 Generate docstrings
🧪 Generate unit tests (beta)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
zerob13
marked this pull request as ready for review
July 16, 2026 16:02
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
Root cause
The built-in Agent could retain a historical
enabledMcpServerIds: []value, so Agent-scoped filtering removed every normal MCP tool even while MCP was globally enabled. Separately, tool-result conversion ranjsonrepairon arbitrary text; signed URLs containinghttps://were interpreted as comments and truncated tohttps:.Impact
Existing users recover globally enabled MCP tools on startup without disabling Agent-scoped filtering. MCP text responses, including signed image URLs, reach the provider unchanged. Settings controls also receive the required tooltip provider context.
Validation
pnpm run formatpnpm run i18npnpm run lintpnpm run typecheckSummary by CodeRabbit
Bug Fixes
User Experience