Skip to main content
Glama
WhiteNightShadow

camoufox-reverse-mcp

type_text

Type text into input fields with realistic keystroke delays to mimic human interaction and bypass bot detection.

Instructions

Type text into an input field with realistic keystroke delays.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
selectorYes
textYes
delayNo

Implementation Reference

  • The async function that implements the type_text tool. It takes 'selector', 'text', and optional 'delay' parameters, retrieves the active page from browser_manager, uses Playwright's page.type() to simulate typing with realistic keystroke delays, and returns a status dict.
    @mcp.tool()
    async def type_text(selector: str, text: str, delay: int = 50) -> dict:
        """Type text into an input field with realistic keystroke delays."""
        try:
            page = await browser_manager.get_active_page()
            await page.type(selector, text, delay=delay)
            return {"status": "typed", "selector": selector, "text": text}
        except Exception as e:
            return {"error": str(e)}
  • The input schema is defined via Python type hints on the function signature: selector (str), text (str), delay (int, default 50). The return type is dict.
    async def type_text(selector: str, text: str, delay: int = 50) -> dict:
  • The tool is registered via the @mcp.tool() decorator applied to the function. 'mcp' is a FastMCP instance created in src/camoufox_reverse_mcp/server.py line 4. The navigation module is imported at server.py line 15, which triggers all @mcp.tool() registrations.
    @mcp.tool()
  • The FastMCP server instance and BrowserManager that type_text depends on. browser_manager.get_active_page() is called within the handler to get the current page.
    mcp = FastMCP(
        "camoufox-reverse-mcp",
        instructions="Anti-detection browser MCP server for JavaScript reverse engineering. "
        "Uses Camoufox (C++ engine-level fingerprint spoofing) to bypass bot detection "
        "while performing JS analysis, debugging, hooking, network interception, "
        "and JSVMP bytecode analysis."
    )
    
    browser_manager = BrowserManager()
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations, the description carries full burden for behavioral disclosure. It mentions 'realistic keystroke delays' but omits details like whether it simulates focus/blur events, whether it overwrites or appends text, or whether it works with different input types.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, front-loaded sentence that efficiently conveys the core action. However, it could be expanded to include key parameter details without becoming verbose.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given no output schema and no annotations, the description is incomplete. It does not mention return values, error conditions (e.g., element not found), or behavior details (e.g., does it clear the field? does it send keyboard events?).

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters2/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema has 0% description coverage, so description should illuminate parameters. It only implicitly mentions 'delay' via 'realistic keystroke delays'. It does not explain that 'selector' is a CSS selector or XPath, or that 'text' is the string to type.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool's purpose: 'Type text into an input field with realistic keystroke delays.' It uses a specific verb (type) and resource (input field), effectively distinguishing it from siblings like click, navigate, or evaluate_js.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides no guidance on when to use this tool versus alternatives (e.g., evaluate_js to directly set value). There is no mention of prerequisites, when not to use, or comparison to other typing methods.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Install Server

Other Tools

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/WhiteNightShadow/camoufox-reverse-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server