VRO Camoufox MCP
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {
"listChanged": false
} |
| prompts | {
"listChanged": false
} |
| resources | {
"subscribe": false,
"listChanged": false
} |
| experimental | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| browser.start_sessionC | Creates or returns a controlled browser session. |
| browser.open_urlC | Opens an allowlisted URL in the browser session. |
| browser.inspect_pageB | Returns a safe page summary without dumping arbitrary full DOM content. |
| browser.dismiss_overlayC | Attempts deterministic dismissal of known overlays. |
| listing.inspect_currentA | Extracts one listing from the current page. Requires page_type == LISTING. |
| listing.enumerate_member_inventoryC | Enumerates visible listing tiles on a member profile page. |
| listing.crawl_member_inventoryB | Higher-level bounded traversal: enumerates a member page and opens each listing sequentially. |
| artifact.capture_screenshotC | Captures a screenshot of the current page and persists it as a local artifact. |
| artifact.getB | Retrieves artifact metadata and optionally a signed download URL. |
| artifact.list_pendingB | Lists pending artifacts awaiting remote sync confirmation. |
| artifact.confirm_remote_syncB | Confirms remote sync for an artifact. Transitions to REMOTE_CONFIRMED only if verified=true. |
| artifact.cleanupB | Cleans up old confirmed artifacts. Safety: only_confirmed must remain true in v0.1. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 12 tools
Each tool has a clear prefix-based purpose: artifact.* handles artifact lifecycle, browser.* manages the browser session, and listing.* deals with page extraction. Even the overlapping listing.enumerate_member_inventory and listing.crawl_member_inventory are distinguished by the latter being a higher-level traversal, with descriptions clarifying the relationship.
All tool names follow a consistent pattern of domain.snake_case_action, e.g., browser.start_session, listing.crawl_member_inventory, artifact.confirm_remote_sync. No mixed conventions or verb-style inconsistencies.
Twelve tools is within the ideal range and well-scoped across three subdomains: browser control (4), listing extraction (3), and artifact management (5). Each tool serves a distinct purpose and earns its place without redundancy.
The tool surface covers the core browser session lifecycle, listing inspection/traversal, and artifact management from creation through sync confirmation and cleanup. Minor gaps exist, such as no explicit artifact discovery for confirmed items or more granular browser interactions (e.g., navigation, clicking), but these are workable for the apparent scope.