-
-
Notifications
You must be signed in to change notification settings - Fork 281
feat: add multi-project support to MCP tools #233
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
+612
−57
Merged
Changes from all commits
Commits
Show all changes
9 commits
Select commit
Hold shift + click to select a range
8574e7d
feat: add multi-project support to MCP tools
PatD42 d209d21
fix: optimize Cypher queries to prevent token explosion
PatD42 cfc5ba8
fix: make delete_project atomic by removing separate count query
PatD42 34bb73e
fix: resolve repo path before extracting project name
PatD42 2d53ca6
fix: address review comments and add tests for multi-project tools
vitali87 6c6a3fc
fix: use graph traversal for project deletion and add integration tests
vitali87 316a948
chore: remove redundant prefixes from issue templates
vitali87 d7827fa
fix: scope delete query to containment relationships only
vitali87 695e431
refactor: move LIMIT 50 to CYPHER_DEFAULT_LIMIT constant
vitali87 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Some comments aren't visible on the classic Files Changed page.
There are no files selected for viewing
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,19 @@ | ||
| --- | ||
| name: Question | ||
| about: Ask a question about the project | ||
| title: '' | ||
| labels: 'question' | ||
| assignees: '' | ||
| --- | ||
|
|
||
| ## Question | ||
|
|
||
| Describe your question clearly | ||
|
|
||
| ## Context | ||
|
|
||
| Any relevant context or background information | ||
|
|
||
| ## What I've Tried | ||
|
|
||
| Steps or research you've already done |
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,32 +1,24 @@ | ||
| --- | ||
| name: TODO/Task | ||
| name: Task/Enhancement | ||
| about: Track development tasks and improvements | ||
| title: '[TODO] ' | ||
| labels: 'enhancement, todo' | ||
| title: '' | ||
| labels: 'enhancement' | ||
| assignees: '' | ||
| --- | ||
|
|
||
| ## 📋 Task Description | ||
| ## Description | ||
|
|
||
| Brief description of what needs to be done | ||
|
|
||
| ## 🎯 Acceptance Criteria | ||
| ## Acceptance Criteria | ||
|
|
||
| - [ ] Criterion 1 | ||
| - [ ] Criterion 2 | ||
| - [ ] Criterion 3 | ||
|
|
||
| ## 🔗 Related Files/Components | ||
| - File: `path/to/file.py` | ||
| - Component: Service/Tool name | ||
| ## Related Files | ||
|
|
||
| ## 📝 Additional Context | ||
| Any additional information, screenshots, or context | ||
| - `path/to/file.py` | ||
|
|
||
| ## 🚦 Priority | ||
| - [ ] High | ||
| - [ ] Medium | ||
| - [ ] Low | ||
| ## Additional Context | ||
|
|
||
| ## 📊 Estimated Effort | ||
| - [ ] Small (< 2 hours) | ||
| - [ ] Medium (2-8 hours) | ||
| - [ ] Large (> 8 hours) | ||
| Any additional information or context |
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
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
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
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
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
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
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The constant
KEY_PREFIXis introduced but doesn't seem to be used anywhere in the codebase. To maintain code cleanliness and avoid dead code, it's best to remove it.