← aginx.net

INDIVIDUAL MCP TOOL

session_input

Type text into an input/textarea element by its index (from session_state output), dispatching input/change events (full keyboard cycle per character with events:"full").

aginx.netnone authenticationAvailability not checked

LIVE ENDPOINT

https://browser.aginx.net/mcp

No auth detected

Connect to this endpoint to inspect the live schema for session_input and invoke it with your own arguments.

Indexed input schema

{}

Risk classification

Inferred read-only · medium confidence · heuristic, not a guarantee.

  • No write-capable action terms were found; this is not proof that invocation has no side effects.

Parent server

aginx.net

CONNECT WITH APPROVAL

Client installation

Review this server and its permissions before adding it. Secret placeholders must be set locally.

Codex

~/.codex/config.toml

[mcp_servers.aginxbrowser]
url = "https://browser.aginx.net/mcp"
enabled = true
Claude Code

.mcp.json

{
  "mcpServers": {
    "aginxbrowser": {
      "type": "http",
      "url": "https://browser.aginx.net/mcp"
    }
  }
}
Claude Desktop

Settings → Connectors → Add custom connector

Name: aginxbrowser
Remote MCP URL: https://browser.aginx.net/mcp

Add this remote URL as a custom connector in Claude Desktop. Availability depends on the user plan and workspace policy.

Cursor

.cursor/mcp.json

{
  "mcpServers": {
    "aginxbrowser": {
      "url": "https://browser.aginx.net/mcp"
    }
  }
}
Visual Studio Code

.vscode/mcp.json

Add to Visual Studio Code
{
  "servers": {
    "aginxbrowser": {
      "type": "http",
      "url": "https://browser.aginx.net/mcp"
    }
  }
}
Generic MCP

Client-specific MCP configuration

{
  "name": "aginxbrowser",
  "transport": "streamable-http",
  "url": "https://browser.aginx.net/mcp"
}
MCP Inspector

Run the official MCP Inspector locally and enter the indexed Streamable HTTP endpoint.

Related tools

  • account_delete — Delete a named login identity: stored record AND live jar.
  • account_list — List named login identities (the multi-account layer) with metadata only: name, cookie domains, cookie count, updated_at, the last account_verify verdict, and the identity's persona User-Agent (each account is one stable device: its own UA and hardware fingerprint, drawn once and reused).
  • account_verify — Check whether a named account is still logged in.
  • cache — Query the LOCAL CACHE of every page this server has fetched and every search it has run.
  • click — Click an element on a one-off page: loads `url` in a fresh browser context (stateless — no cookies unless passed, no shared state with other calls), waits `wait_secs` after load before clicking, then fires a DOM click on the first CSS-selector match.
  • download — Download a file over HTTP(S) with streaming to disk (no memory buffering), SHA-256 integrity hash, and optional resume of interrupted transfers.
  • eval — Execute JavaScript on a one-off page: loads `url` in a fresh browser context, optionally waits `wait_secs` for the page to settle, evaluates `script` (async/Promise supported) and returns `{url, result}`.
  • fetch — Fetch a webpage and return clean markdown/html/text.