mcpbrowser 0.3.2 → 0.3.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (3) hide show
  1. package/README.md +3 -3
  2. package/package.json +18 -3
  3. package/server.json +0 -20
package/README.md CHANGED
@@ -1,13 +1,13 @@
1
- # MCPBrowser
1
+ # MCPBrowser (MCP Browser)
2
2
 
3
3
  [![VS Code Marketplace](https://img.shields.io/visual-studio-marketplace/v/cherchyk.mcpbrowser.svg)](https://marketplace.visualstudio.com/items?itemName=cherchyk.mcpbrowser)
4
4
  [![npm version](https://img.shields.io/npm/v/mcpbrowser.svg)](https://www.npmjs.com/package/mcpbrowser)
5
5
  [![Claude Desktop](https://img.shields.io/badge/Claude-Desktop-5865F2?logo=anthropic)](https://modelcontextprotocol.io/quickstart/user)
6
6
  [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
7
7
 
8
- **MCPBrowser gives your AI assistant the ability to browse web pages like a human.** Fetch any web page — especially those protected by authentication, CAPTCHAs, anti-bot protection, or requiring JavaScript rendering. Uses your real Chrome/Edge browser so you can log in normally, then automatically extracts content. Works with corporate SSO, login forms, Cloudflare, and JavaScript-heavy sites (SPAs, dashboards).
8
+ **MCPBrowser is an MCP browser server that gives AI assistants the ability to browse web pages using a real Chrome or Edge browser.** This browser-based MCP server fetches any web page — especially those protected by authentication, CAPTCHAs, anti-bot protection, or requiring JavaScript rendering. Uses your real Chrome/Edge browser for web automation so you can log in normally, then automatically extracts content. Works with corporate SSO, login forms, Cloudflare, and JavaScript-heavy sites (SPAs, dashboards).
9
9
 
10
- This is an [MCP (Model Context Protocol)](https://modelcontextprotocol.io/) server using [stdio transport](https://modelcontextprotocol.io/docs/concepts/transports#stdio). Your AI assistant uses MCPBrowser when standard HTTP requests fail — pages requiring authentication, CAPTCHA protection, or heavy JavaScript (SPAs). Once connected, MCPBrowser can navigate through websites, interact with elements, and send HTML back to the AI assistant. This gives your AI the ability to browse the web just like you do.
10
+ This is an [MCP (Model Context Protocol)](https://modelcontextprotocol.io/) server using [stdio transport](https://modelcontextprotocol.io/docs/concepts/transports#stdio). Your AI assistant uses this web browser MCP server when standard HTTP requests fail — pages requiring authentication, CAPTCHA protection, or heavy JavaScript (SPAs). Once connected, the browser MCP server can navigate through websites, interact with elements, and send HTML back to the AI assistant. This gives your AI the ability to browse the web just like you do.
11
11
 
12
12
  Example workflow for AI assistant to use MCPBrowser
13
13
 
package/package.json CHANGED
@@ -1,9 +1,9 @@
1
1
  {
2
2
  "name": "mcpbrowser",
3
- "version": "0.3.2",
3
+ "version": "0.3.3",
4
4
  "mcpName": "io.github.cherchyk/mcpbrowser",
5
5
  "type": "module",
6
- "description": "MCP server for in-browser web page fetching using Chrome DevTools Protocol",
6
+ "description": "MCP browser server - fetch web pages using real Chrome/Edge browser. Handles authentication, SSO, CAPTCHAs, and anti-bot protection. Browser automation for AI assistants.",
7
7
  "main": "src/mcp-browser.js",
8
8
  "bin": {
9
9
  "mcpbrowser": "src/mcp-browser.js"
@@ -18,11 +18,26 @@
18
18
  "mcp",
19
19
  "mcp-server",
20
20
  "model-context-protocol",
21
+ "browser",
22
+ "web-browser",
21
23
  "chrome",
22
24
  "puppeteer",
25
+ "playwright",
23
26
  "authentication",
24
27
  "web-scraping",
25
- "github-copilot"
28
+ "scraper",
29
+ "web-automation",
30
+ "automation",
31
+ "cloudflare",
32
+ "sso",
33
+ "captcha",
34
+ "spa",
35
+ "javascript-rendering",
36
+ "github-copilot",
37
+ "claude",
38
+ "ai-assistant",
39
+ "cdp",
40
+ "devtools"
26
41
  ],
27
42
  "author": "cherchyk",
28
43
  "license": "MIT",
package/server.json DELETED
@@ -1,20 +0,0 @@
1
- {
2
- "$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
3
- "name": "io.github.cherchyk/mcpbrowser",
4
- "description": "In-browser web page fetching using Chrome DevTools Protocol. Handles auth-required pages, anti-bot/crawler blocks, and JavaScript-heavy sites",
5
- "repository": {
6
- "url": "https://github.com/cherchyk/MCPBrowser",
7
- "source": "github"
8
- },
9
- "version": "0.3.2",
10
- "packages": [
11
- {
12
- "registryType": "npm",
13
- "identifier": "mcpbrowser",
14
- "version": "0.2.32",
15
- "transport": {
16
- "type": "stdio"
17
- }
18
- }
19
- ]
20
- }