Camoufox MCP Server
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": true
} |
| extensions | {
"camoufox-mcp": {
"tools": {
"browseSessionNavigateWaitStrategy": true
},
"policy": {
"evaluateAllowed": false,
"captchaAutonomous": false,
"defaultWaitStrategy": "domcontentloaded",
"unsafeOptionsAllowed": false,
"defaultStealthProfile": "normal"
}
}
} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| camoufox_statusA | Return server, browser, queue, session, and policy status without launching a page. |
| browseA | Navigate once and return bounded page content. |
| browse_snapshotA | Navigate once and return visible text, ARIA snapshot, and interactive metadata. |
| browse_sequenceA | Navigate once, run bounded selector actions, then return final state. |
| browse_linksA | Navigate once and return only visible navigable links. |
| browse_formsB | Navigate once and return form fields and submit controls. |
| browse_outlineA | Navigate once and return page headings and landmarks. |
| browse_findA | Navigate once, search visible text, and return bounded context matches. |
| browse_screenshotB | Navigate once and capture a bounded screenshot. |
| browse_consoleB | Navigate once and return bounded console diagnostics. |
| browse_network_summaryB | Navigate once and return a bounded network diagnostic summary. |
| browse_session_startB | Start an isolated short-lived browser session. |
| browse_session_navigateC | Navigate an existing browser session. |
| browse_session_actionB | Run one bounded action in an existing browser session. |
| browse_session_snapshotB | Read the current state of an existing browser session. |
| browse_session_resumeA | Resume a paused session after human action and return current state. |
| browse_session_closeB | Close an existing browser session. |
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 17 tools
Many tools share the 'browse' prefix and differ only in output focus, such as browse, browse_snapshot, browse_outline, and browse_forms. Session-based equivalents like browse_session_navigate and browse_session_snapshot mirror one-shot tools, creating ambiguity about which to use. This overlap makes tool selection challenging.
The server uses snake_case, but the prefix pattern is inconsistent: bare 'browse', 'browse_*', 'browse_session_*', and 'camoufox_status'. While the verb 'browse' is common, the mix of noun and verb forms and the odd 'camoufox_status' break predictability. Overall readable but not uniform.
At 17 tools, the count is on the higher end of the appropriate range for a browser automation server. The breadth covers one-shot browsing, session management, and diagnostics, so it's not excessive, but it's borderline heavy. A few tools could be merged without losing functionality.
The server covers navigation, content extraction, screenshotting, diagnostics, and session lifecycle. It lacks dedicated form-filling or cookie tools, but browse_sequence and browse_session_action provide generic action execution. Core browsing workflows are supported, with only minor gaps.