Expose browser filesystem through MCP - #144
Open
masnwilliams wants to merge 2 commits into
Open
Conversation
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
There was a problem hiding this comment.
Cursor Bugbot has reviewed your changes using high effort and found 1 potential issue.
❌ Bugbot Autofix is OFF. To automatically fix reported issues with cloud agents, enable autofix in the Cursor dashboard.
Reviewed by Cursor Bugbot for commit 7e50277. Configure here.
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
manage_browser_filesMCP tool backed by the existing browser filesystem SDKtesting
bun test(90 tests passed)bunx tsc --noEmitbun run buildcompiled and typechecked successfully, then stopped during page-data collection becauseKERNEL_CLI_PROD_CLIENT_IDis not set in the local environmentNote
Medium Risk
Destructive VM filesystem actions (delete, move, permission changes) are exposed to authenticated MCP clients; behavior is bounded to per-session browser VMs but misuse or path mistakes could affect automation artifacts.
Overview
Introduces
manage_browser_files, a newmanage_*MCP tool that exposes filesystem operations on running browser VMs viaclient.browsers.fs. Models can list, inspect, read, write, upload (including multi-file and zip extract), download files or directory zips, and perform moves, deletes, mkdir, and permission changes—all scoped bysession_idand anactionparameter.Read vs download: text reads return plain text;
downloadanddownload_dir_zipreturn embedded MCP resources (kernel-browser-file://…URIs with base64 blobs). Writes and uploads accept utf8 or base64 content (with validation before hitting the API), since the server cannot read the caller’s local paths.Registration adds the
browser_filestoolset (aliasesbrowser_fs,manage_browser_files), updates the disabled-toolsets test list, and bumps the README model-facing tool count to 18.Reviewed by Cursor Bugbot for commit 34756cd. Bugbot is set up for automated code reviews on this repo. Configure here.