feat(mcp): add PlanAdapter and StatusAdapter with full test coverage#41
Merged
Conversation
- Default GitHub search to open issues (state: open, type: issue) - Add explicit deduplication in search results using Set to track seen IDs - Update command description to document default behavior - Users can still override defaults with --state and --type flags This improves UX by: 1. Eliminating need to specify 'open' in queries (defaults to open) 2. Fixing duplicate results bug where same issue appeared 3-5 times 3. Making search behavior more intuitive (90% of searches want open issues) Tested: - Default search returns only open issues - No duplicate results - Can override with --state closed or --type pull_request
- Add StatusAdapter with 5 sections (summary/repo/indexes/github/health) - Add PlanAdapter with lazy initialization and GitHub issue breakdown - Add comprehensive unit tests for both adapters (>80% coverage) - Register both adapters in MCP server bin entry point - Fix fetchGitHubIssue to accept repositoryPath parameter - Update MCP server to handle date serialization and content formatting - Verified working in Cursor with dev_plan and dev_status tools
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
Implements issue #29 by adding two new MCP adapters:
PlanAdapter ()
StatusAdapter ()
Key Features
Technical Changes
fetchGitHubIssueto accept repositoryPath parameter (resolves git directory issues)Testing
Closes #29