-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Adds support for mcp server installation #4428
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
Closed
Closed
Changes from all commits
Commits
Show all changes
17 commits
Select commit
Hold shift + click to select a range
f216adb
Adds support for mcp server installation
axosoft-ramint 2fa6250
Updates storage key and splits automatic and manual installation subt…
axosoft-ramint a45a6e3
Adds gates and deeplink command support
axosoft-ramint 10bc6ff
Updates to include new params
axosoft-ramint e00ca9d
Updates terminology and adds telemetry
axosoft-ramint 6bd22a7
Includes source and CLI version in telemetry
axosoft-ramint 2adb175
Uses built-in app name function and always passes to mcp install command
axosoft-ramint b7227b0
Improvements from feedback
axosoft-ramint 6116f26
Sends status from installCLI
axosoft-ramint fd02577
Install command always verifies path existence to proxy
axosoft-ramint e0cd714
Fixes wording inconsistencies on error messages
axosoft-ramint 89daa6a
install -> setup
axosoft-ramint eff6102
Leaves out auto-install (for now)
axosoft-ramint 3a3322c
Points release server to supported environment
axosoft-ramint a23c67f
Fixes 'checking for updates' CLI response from causing error with flow
axosoft-ramint 55d8d3e
Adds messaging to complete setup manually on unsupported apps
axosoft-ramint 2a0ea7a
Updates unsupported app modal and wording
axosoft-ramint 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
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 |
---|---|---|
|
@@ -311,6 +311,10 @@ | |
"icon": "$(sparkle)", | ||
"commandPalette": "gitlens:enabled && !gitlens:untrusted && gitlens:gk:organization:ai:enabled" | ||
}, | ||
"gitlens.ai.mcp.install": { | ||
"label": "Install GitKraken MCP Server", | ||
"commandPalette": "gitlens:enabled && !gitlens:untrusted && gitlens:gk:organization:ai:enabled" | ||
}, | ||
Comment on lines
+314
to
+317
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Eventually we will want versions of this command to other usages (e.g. home, etc) so we can understand the usage and make sure |
||
"gitlens.ai.rebaseOntoCommit:graph": { | ||
"label": "AI Rebase Current Branch onto Commit (Preview)...", | ||
"icon": "$(sparkle)", | ||
|
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
Large diffs are not rendered by default.
Oops, something went wrong.
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.
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.
Should add
isWeb
(I think that is the context key) here to not show this on the webThere 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.
It's not
isWeb
, or at least that's not working as intended because using&& !isWeb
in the "when" clause prevents the command from appearing even when I'm not on web.