feat(mcp): add discover filters, new tools, and fix prompt parity#89
Merged
electather merged 1 commit intomainfrom Mar 16, 2026
Merged
feat(mcp): add discover filters, new tools, and fix prompt parity#89electather merged 1 commit intomainfrom
electather merged 1 commit intomainfrom
Conversation
- Add genre, studio/network, language, sortBy, date range, vote average, and runtime filters to search_discover_movies and search_discover_tv - Fix report_issue prompt to remove non-existent mediaType arg on issue_create - Fix issue_create tool description to list all 5 issue types correctly - Add search_company and search_keyword tools - Add movies_ratings_combined tool - Add settings_jobs_cancel and settings_jobs_schedule tools - Remove orphaned WatchProviders resource handlers that were never registered - Add inventory.go with MCPToolCount/MCPResourceCount/MCPPromptCount constants - Update serve.go log lines to use inventory constants instead of stale literals - Update README tool count (43 -> 52) and add missing tools and resources table
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
mediaTypearg fromreport_issueprompt instructions; fixedissue_createtool description to list all 5 issue types (was missing4=Wrong content, 5=Other)genre,studio/network,language,sortBy, date range, vote average, and runtime filter params tosearch_discover_moviesandsearch_discover_tv; updateddiscover_contentprompt wording to reference these filterssearch_company,search_keyword,movies_ratings_combined,settings_jobs_cancel,settings_jobs_scheduleWatchProvidersMoviesResourceHandlerandWatchProvidersTVResourceHandlerthat were defined but never registeredcmd/mcp/inventory.gowithMCPToolCount,MCPResourceCount,MCPPromptCount;serve.golog lines now use these constants instead of stale literalsCloses #82, closes #83.
Test plan
go test -v ./tests/ -run TestSearchDiscover— discover filter testsgo test -v ./tests/ -run TestReportIssuePrompt— prompt parity testgo test -v ./tests/ -run TestSearchCompany— company/keyword searchgo test -v ./tests/ -run TestMoviesRatingsCombined— combined ratingsgo test -v ./tests/ -run TestSettingsJobs— cancel and schedule handlersgo test -v ./tests/ -run TestMCPInventory— inventory constant testgo test ./tests/— full suite passesChecklist
go fmt ./...run