feat: update command arguments and improve logging for service initialization #37
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.
This pull request introduces several updates across multiple files, focusing on improving logging, updating dependencies, enhancing browser server functionality, and refactoring request argument handling. Below is a summary of the most important changes grouped by theme:
Logging Enhancements
mlsCommandFunc
function incli/cmd/root.go
to provide better visibility into module processing and service startup.Dependency Updates
go.mod
, includinggithub.com/chromedp/cdproto
,github.com/mark3labs/mcp-go
, and others. Added a new indirect dependency ongithub.com/spf13/cast
.Browser Server Improvements
services/browser.go
by adding new Chrome flags (e.g.,disable-notifications
,disable-dev-shm-usage
) and conditional handling for headless mode.Refactoring Request Argument Handling
services/browser.go
,services/browser_debugger.go
,services/command.go
, andservices/file_system.go
to userequest.GetArguments()
for extracting arguments, improving consistency and readability. [1] [2] [3] [4]Configuration Updates
Args
value inNewMCPServerConfig
to["-m", "Browser"]
inclient/client.go
, aligning with the intended service behavior.