Fix(mcp): "set all" button now follows active search#2046
Open
w3joe wants to merge 1 commit intoPostHog:mainfrom
Open
Fix(mcp): "set all" button now follows active search#2046w3joe wants to merge 1 commit intoPostHog:mainfrom
w3joe wants to merge 1 commit intoPostHog:mainfrom
Conversation
Allow bulk approval actions to target the currently filtered tool list when a search is active. UI: update tooltips to reflect "filtered" vs "all", disable buttons based on filteredTools length, and pass filteredTools to the action when toolSearch is set. Hook: change setBulkApproval mutation signature to accept an object { approval_state, targetTools? } and forward targetTools (or fallback to tools) to dispatchBulkApproval; expose setBulkApproval as a function taking (approval_state, targetTools?) for callers.
Contributor
|
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.
Problem
When a user searched for tools by name and clicked "Set all", the bulk approval action applied to all tools in the installation, not just the filtered results. This made it impossible to bulk-approve a subset of tools by name prefix (e.g. all
create_*tools from a Linear MCP server).Closes #2043
Changes
useMcpInstallationTools:setBulkApprovalnow accepts an optionaltargetToolsarray. When provided, only those tools are updated; otherwise falls back to all tools (preserving existing behaviour).ServerDetailView: when a search is active, the "Set all" buttons passfilteredToolsas the target. Tooltips update to say "Approve filtered" / "Require approval for filtered" / "Block filtered" to make the scope clear to the user.How did you test this?
Manually tested in the app: Settings → MCP Servers → connected server with >5 tools → typed a prefix in the search box → clicked each "Set all" button and confirmed only the matching tools were updated.
Publish to changelog?
No