🎩 You're Invited:Meet the Socket team at Black Hat in Las Vegas, August 3-6.RSVP
Sign In

@agent360/browser-mcp

Package Overview
Dependencies
Maintainers
1
Versions
11
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@agent360/browser-mcp - npm Package Compare versions

Comparing version
1.15.0
to
1.16.0
+1
-1
extension/manifest.json
{
"manifest_version": 3,
"name": "Agent360 Browser MCP",
"version": "1.15.0",
"version": "1.16.0",
"description": "Control your real Chrome from Claude Code — navigate, click, fill, screenshot, solve CAPTCHAs. 24 tools, multi-session, human-in-the-loop.",

@@ -6,0 +6,0 @@ "permissions": [

@@ -222,3 +222,3 @@ #!/usr/bin/env node

const mcpServer = new Server(
{ name: 'agent360-browser', version: '1.15.0' },
{ name: 'agent360-browser', version: '1.16.0' },
{ capabilities: { tools: {} } },

@@ -261,2 +261,3 @@ { instructions: INSTRUCTIONS },

browser_close_tab: 'close_tab',
browser_upload_file: 'upload_file',
browser_set_cookies: 'set_cookies',

@@ -263,0 +264,0 @@ browser_set_local_storage: 'set_local_storage',

{
"name": "@agent360/browser-mcp",
"version": "1.15.0",
"description": "Browser MCP — control your real Chrome from Claude Code. 28 tools, CAPTCHA solving, multi-session, human-in-the-loop.",
"version": "1.16.0",
"description": "Browser MCP — control your real Chrome from Claude Code. 29 tools, CAPTCHA solving, file upload, multi-session, human-in-the-loop.",
"type": "module",

@@ -6,0 +6,0 @@ "main": "index.js",

@@ -309,2 +309,15 @@ /**

{
name: 'browser_upload_file',
description: 'Upload a file to a <input type="file"> element on the page. Uses Chrome Debugger API to set files programmatically — no dialog needed.',
inputSchema: {
type: 'object',
properties: {
selector: { type: 'string', description: 'CSS selector for the file input (default: input[type="file"])' },
files: { type: 'array', items: { type: 'string' }, description: 'Array of absolute file paths to upload. E.g. ["/Users/me/photo.jpg"]' },
file: { type: 'string', description: 'Single file path (alternative to files array)' },
},
required: ['files'],
},
},
{
name: 'browser_extract_token',

@@ -311,0 +324,0 @@ description: 'Navigate to a provider\'s API settings page and extract the API token. Optionally store it in Agent360 vault.',

Sorry, the diff of this file is too big to display