io.github.matthewalexong/neo-vision
NPM · NEO-VISION · SCANNED AUG 3
Spatial DOM maps for AI agent browser navigation with anti-bot stealth.
Available components
How this component scores in each security and reliability category. Every signal is checked automatically from public evidence about the published package, including repeated runs of it in an isolated sandbox, and we only credit what we can confirm. How we score →
Supply Chain Security87
- No malware found by supply-chain analysis.Pass
- Only part of the dependency tree could be resolved (98 of 102), so this covers what we could see, not the whole tree.Partial
- No install/post-install scripts declared.Pass
- Only part of the dependency tree could be resolved (98 of 102), so this covers what we could see, not the whole tree. View diagnostics → Partial
Provenance & Transparency19
- Repository check failed: the declared repository URL returned HTTP 404. See how to fix → View diagnostics → Fail
- Provenance check failed: no build-provenance attestation is published. See how to fix → View diagnostics → Fail
- Clear OSI-approved license (MIT).Pass
- Actively maintained (last published 120 days ago).Pass
- Security-disclosure policy not yet verified: we couldn't inspect the source repository.Unverified
Schema Quality & AI Usability59
- AI-judged instruction clarity (excellent).Pass
- Context-footprint check failed: tool/resource definitions use about 1573 tokens (~314/item across 5 items; 5 tools + 0 resources), over budget; trim descriptions and params. See how to fix → Fail
- Usage-examples check failed: none of the tools include examples. See how to fix → Fail
Stability & Change Management23
- Stability observed for 7 of 30 days with no destabilising changes; credit accrues until the full window elapses.Partial
Tool Coverage100
- 100% of tools have a non-trivial description (not blank, and not just the tool's name).Pass
- 100% of tool parameters carry a description.Pass
Capabilities100
- Implements a supported MCP spec version (2025-11-25); the latest is 2026-07-28.Pass
Add this component to your MCP client. Where a client-specific snippet is available, pick your client below and copy it straight into your config; otherwise use the connection detail shown.
npm · neo-vision
claude mcp add matthewalexong-neo-vision -- npx -y neo-vision
codex mcp add matthewalexong-neo-vision -- npx -y neo-vision
{
"$schema": "https://opencode.ai/config.json",
"mcp": {
"matthewalexong-neo-vision": {
"type": "local",
"command": [
"npx",
"-y",
"neo-vision"
],
"enabled": true
}
}
} openclaw mcp add matthewalexong-neo-vision --command npx --arg -y --arg neo-vision
mcp_servers:
matthewalexong-neo-vision:
command: "npx"
args: ["-y", "neo-vision"] {
"mcpServers": {
"matthewalexong-neo-vision": {
"command": "npx",
"args": [
"-y",
"neo-vision"
]
}
}
} Every change we have recorded for this component, newest first. Security-relevant changes are always shown. ▲ marks a change for the better, ▼ a change for the worse; unmarked changes are neutral.
- 3 Aug 26 +3
- Stability: unverified → 0.23 ▲ functional
- 2 Aug 26 +45
- Provenance: unverified → fail ▼ security
- Install scripts: unverified → pass ▲ security
- Known CVEs: unverified → partial ▲ security
- Malware scan: unverified → pass ▲ security
- Stability: Stability not yet verified: not enough scan history yet (needs a 30-day window). security
- Schema quality: unverified → excellent ▲ functional
- Maintenance: unverified → pass ▲ functional
- MCP protocol: unverified → pass ▲ functional
- License: unverified → pass ▲ functional
- Dependency health: unverified → partial ▲ functional
- Licence: MIT functional
- 31 Jul 26 −24
- We updated how we score, so this day's move reflects our rubric, not a change to the server See what changed → functional
- 27 Jul 26 36
First indexed and scored.
Diagnostic detail from the automated scan of this channel: what the scanner observed at each step, so you can see exactly where a check passed or failed. It is informational only and never changes the trust score.
Captured 3 Aug 2026 · Analysed npm/[email protected]
Provenance none
Ecosystem: npm · Outcome: none
Dependencies 98 packages
98 packages in the resolved dependency tree · 96 deprecated · 30 stale.
The dependency tree was only partially resolved, so these counts may be incomplete.
The tools this component advertises to a client, with an estimated token cost for each. Expand a tool to see its parameters and schema. The per-tool counts are indicative and are not scored directly; the schema's total context footprint is one signal in Schema Quality & AI Usability.
spatial_click ~174
Click an element on the page at exact pixel coordinates. Use the click_center.x and click_center.y values from a spatial_snapshot element. Returns an updated spatial map reflecting the page state after the click (including any navigation, modals, or DOM changes triggered by the click). You do NOT need to call spatial_snapshot again after clicking. Requires an active session — call spatial_snapshot first to open a page.
| Name | Type | Req | Description |
|---|---|---|---|
| button | string | — | Mouse button (default: left) |
| click_count | integer | — | Number of clicks — 2 for double-click, 3 for triple-click (default: 1) |
| x | number | yes | X coordinate in CSS pixels — use click_center.x from a spatial_snapshot element |
| y | number | yes | Y coordinate in CSS pixels — use click_center.y from a spatial_snapshot element |
No output schema declared.
No examples provided.
spatial_query ~181
Filter the current spatial map without re-loading the page. Search for elements by ARIA role, HTML tag, label text, bounding box region, or actionability. Much faster than taking a new snapshot — use this when the page hasn't changed and you need to find specific elements. Requires a prior spatial_snapshot call (uses the cached map).
| Name | Type | Req | Description |
|---|---|---|---|
| actionable_only | boolean | — | Only return interactive elements (buttons, links, inputs) |
| label_contains | string | — | Filter elements whose accessible label contains this text (case-insensitive) |
| region | object | — | Only return elements within this bounding box (CSS pixels) |
| role | string | — | Filter by ARIA role, e.g. "button", "link", "textbox", "heading" |
| tag | string | — | Filter by HTML tag, e.g. "input", "a", "div" |
No output schema declared.
No examples provided.
spatial_scroll ~192
Scroll the page or a specific scrollable container. Use delta_y with positive values to scroll down, negative to scroll up. Optionally target a specific scrollable element by passing its x/y coordinates. Returns an updated spatial map reflecting the new scroll position and any newly visible elements. Requires an active session — call spatial_snapshot first.
| Name | Type | Req | Description |
|---|---|---|---|
| delta_x | number | — | Horizontal scroll in pixels. Positive = right, negative = left (default: 0) |
| delta_y | number | — | Vertical scroll in pixels. Positive = down, negative = up (default: 0). After scrolling in agent mode, call spatial_snapshot again to get the next viewport's content. |
| x | number | — | Optional: scroll at this X coordinate (targets a specific scrollable container instead of the page) |
| y | number | — | Optional: scroll at this Y coordinate (targets a specific scrollable container instead of the page) |
No output schema declared.
No examples provided.
spatial_snapshot ~837
Navigate to a URL and return a spatial map of the page. Launches a real Chrome browser automatically — no setup required. **Output modes** (controlled by output_format parameter): - 'compact' (default): Returns every visible element with pixel coordinates, ARIA roles, accessible labels, and actionability flags. Use the click_center coordinates from each element to target it with spatial_click or spatial_type. - 'agent': Optimized for AI agent context windows on text-dense pages (Wikipedia, Amazon, long articles). Returns: * 'page_text': deduplicated readable text from the current viewport (overlapping DOM nodes collapsed by position via 2-pass dedup: 10px grid + substring elimination, JS code stripped, text limited to 120 chars) * 'interactive_elements': only actionable elements within the viewport, with their click_center coordinates. Elements are strictly confined to viewport bounds — wide-layout pages (multi-column) won't leak off-screen elements. * 'viewport_info': scroll position, page height, percent_seen, percent_remaining — tells you how much more content is below * '_navigation': a hint with the exact spatial_scroll delta to use to advance to the next viewport **When to use agent mode**: On any page that returns 1000+ elements in compact mode, or when you need the readable text content for research/summarization tasks. After calling spatial_scroll(delta_y=...), re-call spatial_snapshot with output_format='agent' to get the next viewport's content. **Note**: The full DOM map is always cached server-side. You do NOT need to re-snapshot after clicks, typing, or scrolling — every action returns an updated map automatically. Re-snapshot with the same URL only when you want to reload or switch URLs. The browser session persists across calls. Calling this again with a different URL navigates to that URL. Calling with the same URL reloads it.
| Name | Type | Req | Description |
|---|---|---|---|
| compact | boolean | — | Return compact elements (default: true). Compact strips CSS layout details, selectors, and DOM hierarchy — keeping only what you need: tag, role, label, text, bounds, click_center, actionable. Set fa… |
| include_non_visible | boolean | — | Include hidden elements (display:none, visibility:hidden). Usually not needed. |
| max_depth | integer | — | Max DOM depth to traverse (default: 50). Increase only for deeply nested pages. |
| max_elements | integer | — | Maximum elements to return (default: 2000). If truncated, scroll + re-snapshot to see more. |
| output_format | string | — | Output format: 'compact' (default) returns the full element list with coordinates, roles, and accessibility info for general browsing and UI tasks. 'agent' is optimized for AI context windows on text… |
| settle_ms | integer | — | Milliseconds to wait after page load for dynamic content (SPAs, lazy-loading) to settle (default: 2000) |
| url | string | yes | URL to navigate to. A real Chrome browser is launched automatically — no setup needed. |
| verbosity | string | — | What to include: 'actionable' = buttons/links/inputs only (default, fastest), 'landmarks' = + headings/nav/sections, 'all' = every visible element |
| viewport_height | integer | — | Viewport height in CSS pixels (default: 720) |
| viewport_width | integer | — | Viewport width in CSS pixels (default: 1280) |
| zoom | number | — | Device scale factor / zoom level (default: 1.0) |
No output schema declared.
No examples provided.
spatial_type ~189
Type text into an element. If x/y coordinates are provided, clicks that position first to focus the element, then types. Otherwise types into whatever element currently has focus. Set clear_first=true to replace existing text (selects all + deletes before typing). Set press_enter=true to submit after typing (useful for search boxes). Returns an updated spatial map. Requires an active session — call spatial_snapshot first.
| Name | Type | Req | Description |
|---|---|---|---|
| clear_first | boolean | — | Select all + delete existing text before typing (default: false) |
| press_enter | boolean | — | Press Enter after typing — useful for search boxes and forms (default: false) |
| text | string | yes | Text to type into the focused element |
| x | number | — | Optional: click this X coordinate first to focus the element, then type |
| y | number | — | Optional: click this Y coordinate first to focus the element, then type |
No output schema declared.
No examples provided.