-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Implement tsh mcp db config
#55781
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
Merged
Implement tsh mcp db config
#55781
Changes from all commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
1841457
feat(tsh): add `tsh mcp db config` subcommand
gabrielcorado 38eb521
chore(claude): fix lint
gabrielcorado 1cb6d54
refactor: code review suggestions
gabrielcorado 66c4aad
Merge branch 'master' into gabrielcorado/mcp-db-config
gabrielcorado f421c3d
refactor: code review suggestions
gabrielcorado 370e906
test(tsh): add missing option on test case
gabrielcorado c7f64e6
chore(tsh): add message on manually adding database URI
gabrielcorado 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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -136,10 +136,20 @@ func (c *Config) GetMCPServers() map[string]MCPServer { | |
| return maps.Clone(c.mcpServers) | ||
| } | ||
|
|
||
| // PutMCPServer adds a new MCP server or replace an existing one. | ||
| // PutMCPServer adds a new MCP server or replaces an existing one. | ||
| func (c *Config) PutMCPServer(serverName string, server MCPServer) (err error) { | ||
| c.mcpServers[serverName] = server | ||
| c.configData, err = sjson.SetBytes(c.configData, c.mcpServerJSONPath(serverName), server) | ||
|
|
||
| // We require a custom marshal to improve MCP Resources URI readability when | ||
| // it includes query params. By default the encoding/json escapes some | ||
| // characters like `&` causing the final URI to be harder to read. | ||
| var b bytes.Buffer | ||
| enc := json.NewEncoder(&b) | ||
| enc.SetEscapeHTML(false) | ||
|
Contributor
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. wow, I didn't know that. Seems surprising that this is the default. |
||
| if err := enc.Encode(server); err != nil { | ||
| return trace.Wrap(err) | ||
| } | ||
| c.configData, err = sjson.SetRawBytes(c.configData, c.mcpServerJSONPath(serverName), b.Bytes()) | ||
| return trace.Wrap(err) | ||
| } | ||
|
|
||
|
|
||
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.
Uh oh!
There was an error while loading. Please reload this page.