chore(SMI-1567): add prefix filtering to tool list and event topics#678
Merged
chore(SMI-1567): add prefix filtering to tool list and event topics#678
Conversation
Add optional [prefix] positional argument to `smithery tool list` and `smithery event topics` commands to filter results by name prefix (case-insensitive). Tools and event topics are often named hierarchically (e.g. "issues.create", "user.updated"), so prefix filtering enables efficient scoping. Updated CLI help text with clear argument documentation and examples. Added test cases to verify prefix filtering behavior. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Contributor
Author
Merge activity
|
Merged
arjunkmrm
pushed a commit
that referenced
this pull request
Feb 27, 2026
Automated Release PR --- ## [4.4.0](v4.3.0...v4.4.0) (2026-02-27) ### Features * surface tool annotations in tool list output ([#679](#679)) ([b949eb2](b949eb2)) ### Chores * **SMI-1567:** add prefix filtering to tool list and event topics ([#678](#678)) ([cdb28e8](cdb28e8)) * update dev bootstrap for SDK v4.1.0 ([#676](#676)) ([7a105de](7a105de)) --- This PR was generated with [Release Please](https://github.com/googleapis/release-please). See [documentation](https://github.com/googleapis/release-please#release-please). Co-authored-by: smithery-chore-bot[bot] <259537197+smithery-chore-bot[bot]@users.noreply.github.com>
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.
What's added in this PR?
Added optional
[prefix]positional argument tosmithery tool listandsmithery event topicscommands. When provided, the prefix filters results to only those whose name/identifier starts with the given prefix (case-insensitive). This enables efficient scoping for hierarchically-named tools like "issues.create", "issues.list".Changes:
smithery tool list [connection] [prefix]- filters displayed tools by prefixsmithery event topics <connection> [prefix]- filters displayed topics by prefixImplementation details:
What's the issues or discussion related to this PR?
Resolves SMI-1567: Support prefix listing in CLI. Tools and event topics are often named hierarchically, and a prefix filter enables models to efficiently scope results without needing to fetch and filter everything.