@treegress.com/treegress-browser-mcp 0.0.56-treegress.3 → 0.0.56-treegress.4

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 (2) hide show
  1. package/README.md +16 -0
  2. package/package.json +4 -4
package/README.md CHANGED
@@ -5,6 +5,22 @@ MCP server package for the Treegress browser stack.
5
5
  This package currently wraps the Playwright MCP runtime and resolves `playwright-core`
6
6
  from the published `@treegress.com/treegress-browser-core` package.
7
7
 
8
+ ## Why Treegress Extends Playwright MCP
9
+
10
+ AI agents need access to the actual page structure they are testing.
11
+
12
+ Standard Playwright MCP flows expose an ARIA snapshot derived from the accessibility tree. In real test flows, that can hide interactable UI when elements are poorly represented in the accessibility layer.
13
+
14
+ Treegress extends this flow by:
15
+
16
+ - serializing the full DOM tree
17
+ - extracting the full set of interactable elements
18
+ - assigning a `refId` to each element so downstream actions such as `click`, `fill`, and similar operations can target them reliably
19
+
20
+ This package exposes that behavior through MCP. In practice, it gives the agent a structurally complete representation of the page instead of a partial accessibility abstraction, improving element coverage and enabling broader, more reliable test scenarios.
21
+
22
+ If you want to see what Treegress is building in this area, visit [treegress.com](https://treegress.com).
23
+
8
24
  `@treegress.com/treegress-browser-mcp` and `@treegress.com/treegress-browser-core` are intended to be released together.
9
25
 
10
26
  - `@treegress.com/treegress-browser-mcp` uses a pinned `@treegress.com/treegress-browser-core` version
package/package.json CHANGED
@@ -1,17 +1,17 @@
1
1
  {
2
2
  "name": "@treegress.com/treegress-browser-mcp",
3
- "version": "0.0.56-treegress.3",
3
+ "version": "0.0.56-treegress.4",
4
4
  "description": "Treegress browser tools for MCP",
5
5
  "repository": {
6
6
  "type": "git",
7
7
  "url": "git+https://github.com/MobiDev-Org/treegress-browser-mcp.git"
8
8
  },
9
- "homepage": "https://playwright.dev",
9
+ "homepage": "https://treegress.com",
10
10
  "engines": {
11
11
  "node": ">=18"
12
12
  },
13
13
  "author": {
14
- "name": "Microsoft Corporation"
14
+ "name": "mobidev.biz"
15
15
  },
16
16
  "license": "Apache-2.0",
17
17
  "publishConfig": {
@@ -38,7 +38,7 @@
38
38
  },
39
39
  "dependencies": {
40
40
  "playwright": "1.58.0-alpha-2026-01-16",
41
- "playwright-core": "npm:@treegress.com/treegress-browser-core@1.59.0-treegress.3"
41
+ "playwright-core": "npm:@treegress.com/treegress-browser-core@1.59.0-treegress.4"
42
42
  },
43
43
  "bin": {
44
44
  "treegress-browser-mcp": "cli.js"