io.github.xidik12/oculo
NPM · OCULO-MCP · SCANNED AUG 3
AI-powered native browser with 12 MCP tools. ~30 tokens per page.
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 Security86
- No malware found by supply-chain analysis.Pass
- Only part of the dependency tree could be resolved (94 of 98), 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 (94 of 98), so this covers what we could see, not the whole tree. View diagnostics → Partial
Provenance & Transparency45
- Source repository is publicly reachable at the declared URL. View diagnostics → Pass
- 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 137 days ago).Pass
- Disclosure check failed: no security disclosure policy was found in the source repository. See how to fix → Fail
Schema Quality & AI Usability65
- AI-judged instruction clarity (good).Pass
- Context-footprint check failed: tool/resource definitions use about 2226 tokens (~139/item across 16 items; 16 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 · oculo-mcp
claude mcp add xidik12-oculo -- npx -y oculo-mcp
codex mcp add xidik12-oculo -- npx -y oculo-mcp
{
"$schema": "https://opencode.ai/config.json",
"mcp": {
"xidik12-oculo": {
"type": "local",
"command": [
"npx",
"-y",
"oculo-mcp"
],
"enabled": true
}
}
} openclaw mcp add xidik12-oculo --command npx --arg -y --arg oculo-mcp
mcp_servers:
xidik12-oculo:
command: "npx"
args: ["-y", "oculo-mcp"] {
"mcpServers": {
"xidik12-oculo": {
"command": "npx",
"args": [
"-y",
"oculo-mcp"
]
}
}
} 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 +36
- Provenance: fail → unverified ▼ security
- Install scripts: pass → unverified ▼ 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
- License: pass → unverified ▼ functional
- Maintenance: pass → unverified ▼ functional
- Schema quality: unverified → good ▲ functional
- Dependency health: unverified → partial ▲ functional
- MCP protocol: unverified → pass ▲ functional
- Licence: MIT functional
- 1 Aug 26 −16
- Known CVEs: partial → unverified ▼ security
- Stability: Stability not yet verified: we do not have a sandbox capture of the MCP schema this version of the package serves yet. security
- Capabilities: pass → unverified ▼ functional
- Dependency health: partial → unverified ▼ functional
- 31 Jul 26 −2
- We updated how we score, so this day's move reflects our rubric, not a change to the server See what changed → functional
- 28 Jul 26 +21
- Security disclosure: unverified → fail ▼ functional
- Tool coverage: unverified → 100 ▲ functional
- First check of Tool coverage: 100 functional
- First check of Schema quality: unverified functional
- First check of Schema quality: fail functional
- First check of Schema quality: fail functional
- 27 Jul 26 24
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 94 packages
94 packages in the resolved dependency tree · 94 deprecated · 29 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.
abort ~50
Cancel a pending tool call by callId, or pass callId="all" to cancel everything.
| Name | Type | Req | Description |
|---|---|---|---|
| callId | string | yes | The call ID to cancel, or "all" to cancel all pending calls |
No output schema declared.
No examples provided.
act ~595
Perform an action in Oculo browser: click, navigate, scroll, press key, hover, type, login. Elements found by ref (from a11y snapshot), text, role, label, placeholder, or CSS selector. After click/navigate/back/forward/reload, returns fresh ref-tagged snapshot. Use newTab with background=true to open tabs without switching, then use tabId to run actions in parallel.
| Name | Type | Req | Description |
|---|---|---|---|
| action | string | yes | Action to perform |
| amount | number | — | Scroll amount in pixels |
| attribute | string | — | Attribute name for getAttribute action |
| autoSubmit | boolean | — | Auto-submit after login (default: true) |
| background | boolean | — | For newTab: open in background without switching (default: false). Returns tab ID for parallel execution. |
| clear | boolean | — | Clear existing content before typing (for type action). Works with both regular inputs and contenteditable fields. |
| content | string | — | File content for writeFile action |
| cookies | array | — | Cookies array for importCookies action |
| direction | string | — | Scroll direction |
| expression | string | — | JavaScript expression for evaluate action |
| from | object | — | Drag source: {x, y} or {text, selector} |
| key | string | — | Key to press (Enter, Tab, Escape, etc.) |
| label | string | — | Label text associated with the element |
| modifiers | array | — | Modifier keys (Ctrl, Shift, Alt, Meta) |
| name | string | — | Accessible name of the element |
| nth | number | — | Which match to use (0-indexed, default: 0) |
| placeholder | string | — | Placeholder text of the input |
| proxy | object | — | Proxy config for setProxy action: {type, host, port, username?, password?, bypass?} |
| ref | string | — | Element ref from a11y snapshot (e.g. "e5"). Preferred over text/selector — use page({detail:"a11y"}) first. |
| role | string | — | ARIA role (button, link, textbox, etc.) |
| screenshot | boolean | — | Attach screenshot after action |
| selector | string | — | CSS selector (fallback) |
| site | string | — | Site domain for login action (uses credential vault) |
| tabId | string | — | Target a specific tab by ID (for parallel execution). Omit for active tab. |
| text | string | — | Visible text on the element to interact with |
| to | object | — | Drag target: {x, y} or {text, selector} |
| url | string | — | URL for navigate action |
| value | string | — | Value for select action, file path for readFile/writeFile |
| x | number | — | X coordinate for clickAtPoint/drag |
| y | number | — | Y coordinate for clickAtPoint/drag |
No output schema declared.
No examples provided.
fill ~129
Fill form fields in Oculo browser by label, placeholder, or data-placeholder text. Handles text, select, checkbox, textarea, and contenteditable (DraftJS, ProseMirror). Use visible labels as keys.
| Name | Type | Req | Description |
|---|---|---|---|
| fields | object | yes | Object mapping field label → value (e.g. {"Email": "[email protected]"}) |
| screenshot | boolean | — | Attach screenshot after filling |
| submit | — | — | Submit form. true = first submit button, string = button text |
| tabId | string | — | Target a specific tab by ID (for parallel execution). Omit for active tab. |
No output schema declared.
No examples provided.
lens ~55
Visual analysis of the current page via screenshot. Describe what you see or answer questions about the page visually.
| Name | Type | Req | Description |
|---|---|---|---|
| question | string | yes | What to analyze or look for in the page |
| tabId | string | — | Target tab ID |
No output schema declared.
No examples provided.
media ~204
Generate images (Nano Banana 2 / DALL-E 3) or videos (Veo 3.1) via Oculo. Returns saved file path. Supports image-to-image editing with reference image.
| Name | Type | Req | Description |
|---|---|---|---|
| duration | number | — | Video duration: 4, 6, or 8 seconds |
| image | string | — | Path to reference image for image-to-image editing/transformation (Gemini only) |
| model | string | — | Image model: nano-banana-2 (default), nano-banana-pro, nano-banana |
| prompt | string | yes | What to create |
| provider | string | — | Override: gemini, openai, stability |
| size | string | — | Image: 1024x1024, 2K, 4K. Video: 16:9, 9:16 |
| style | string | — | natural, vivid, cinematic, anime |
| type | string | yes | Generate an image or video |
No output schema declared.
No examples provided.
page ~195
Describe the current page in Oculo browser. Default: compact (~30-80 tokens). Use detail="a11y" for ref-tagged accessibility tree — interactive elements get [ref=e1],[ref=e2]... refs usable in act tool. Use detail="markdown" for full article content as clean markdown.
| Name | Type | Req | Description |
|---|---|---|---|
| detail | string | — | compact (default ~30-80 tokens), a11y (ref-tagged accessibility tree ~200-500 tokens), or markdown (article extraction via Readability) |
| include | array | — | What to include: "forms", "buttons", "links", "headings", "text", "images" |
| scope | string | — | CSS selector to scope description to a section of the page |
| screenshot | boolean | — | Attach a screenshot (default: false) |
| tabId | string | — | Target a specific tab by ID (for parallel execution). Omit for active tab. |
No output schema declared.
No examples provided.
preview ~43
Pre-fetch a URL without navigating. Returns page description without leaving current page.
| Name | Type | Req | Description |
|---|---|---|---|
| tabId | string | — | Target tab ID |
| url | string | yes | URL to preview |
No output schema declared.
No examples provided.
read ~127
Extract structured data from the page in Oculo browser (search results, tables, lists, articles).
| Name | Type | Req | Description |
|---|---|---|---|
| fields | array | — | Specific fields to extract |
| format | string | — | Output format (default: text) |
| limit | number | — | Max items to return (default: 10) |
| scope | string | — | CSS selector to narrow extraction scope |
| tabId | string | — | Target a specific tab by ID (for parallel execution). Omit for active tab. |
| what | string | yes | What to extract: "search results", "products", "table data", etc. |
No output schema declared.
No examples provided.
research ~65
Deep web research on a topic. Opens multiple tabs, reads pages, synthesizes findings.
| Name | Type | Req | Description |
|---|---|---|---|
| depth | number | — | Research depth (1-3). Default: 2 |
| tabId | string | — | Target tab ID |
| topic | string | yes | Research topic or question |
No output schema declared.
No examples provided.
run ~231
PREFERRED for any task with 2+ actions. Executes a multi-step pipeline in a SINGLE call — use this instead of multiple act/fill calls. Example — post on X: run({steps:[{act:{action:"navigate",url:"https://x.com/compose/post"}},{wait:{timeout:2000}},{act:{action:"type",text:"Hello world",role:"textbox"}},{act:{action:"click",text:"Post",role:"button"}}]}). Each step is an object with exactly ONE key: page, act, fill, read, wait, or if. Cached for replay.
| Name | Type | Req | Description |
|---|---|---|---|
| description | string | — | Short description for caching |
| returnAll | boolean | — | Return results from all steps (default: false) |
| steps | array | — | Array of steps. Each step is an object with exactly ONE key: page, act, fill, read, wait, or if. |
| tabId | string | — | Target a specific tab by ID (for parallel execution). Omit for active tab. |
| workflow | string | — | Replay a cached workflow by ID |
No output schema declared.
No examples provided.
shell ~72
Execute a shell command (ls, npm, git, node, python, etc.) via Oculo and return stdout+stderr. Non-interactive only.
| Name | Type | Req | Description |
|---|---|---|---|
| command | string | yes | The shell command to execute |
| timeout | number | — | Timeout in milliseconds (default: 30000, max: 120000) |
No output schema declared.
No examples provided.
status ~24
List all pending tool calls with their callId, toolName, and elapsed time.
Input schema present but exposes no named parameters.
No output schema declared.
No examples provided.
tabs ~29
List all open browser tabs with their URLs and titles.
| Name | Type | Req | Description |
|---|---|---|---|
| tabId | string | — | Target tab ID |
No output schema declared.
No examples provided.
translate ~65
Translate page content or specific text to another language.
| Name | Type | Req | Description |
|---|---|---|---|
| tabId | string | — | Target tab ID |
| text | string | — | Text to translate (omit for full page) |
| to | string | yes | Target language code (e.g., "en", "es", "zh") |
No output schema declared.
No examples provided.
webmcp_call ~63
Call a WebMCP tool registered by the current page. Use webmcp_list first to discover available tools.
| Name | Type | Req | Description |
|---|---|---|---|
| args | object | — | Arguments to pass to the tool |
| name | string | yes | Tool name to call (from webmcp_list) |
No output schema declared.
No examples provided.
webmcp_list ~46
Discover WebMCP tools registered by the current page via navigator.modelContext.registerTool() or <form toolname="..."> elements. Returns list of available page-declared tools.
Input schema present but exposes no named parameters.
No output schema declared.
No examples provided.