Skip to main content
Glama

Server Configuration

Describes the environment variables required to run the server.

NameRequiredDescriptionDefault
ABRASIO_HOSTNoBind host when using 'streamable-http' transport. Default: '127.0.0.1'.
ABRASIO_PORTNoBind port when using 'streamable-http' transport. Default: '8931'.
ABRASIO_REGIONNoTarget region for geo-configuration, e.g. 'BR', 'US', 'DE'. Configures locale and timezone automatically.
ABRASIO_API_KEYNoCloud API key. If set, enables cloud mode. If unset, uses local mode.
ABRASIO_HEADLESSNoRun browser headless. Set 'false' to see the browser window (local mode only). Default: 'true'.
ABRASIO_HUMANIZENoSet 'true' to enable human-like interaction timing on all actions (slower but more realistic). Default: 'false'.
ABRASIO_TRANSPORTNoMCP transport: 'stdio' for local clients, 'streamable-http' for remote/production. Default: 'stdio'.

Capabilities

Features and capabilities supported by this server

CapabilityDetails
tools
{
  "listChanged": false
}
prompts
{
  "listChanged": false
}
resources
{
  "subscribe": false,
  "listChanged": false
}
experimental
{}

Tools

Functions exposed to the LLM to take actions

NameDescription
browser_navigateA

Navigate to a URL and wait for the page to load. Returns the final URL, page title, and HTTP status code.

browser_go_backA

Go back to the previous page in browser history.

browser_go_forwardA

Go forward to the next page in browser history.

browser_reloadB

Reload the current page.

browser_get_urlA

Return the current page URL.

browser_screenshotA

Take a screenshot of the current page. Returns a PNG image. Use this to visually understand the current state of the browser before deciding what to interact with.

browser_get_textA

Extract all visible text from the current page body. Useful for reading content, prices, articles, or any text-based information.

browser_get_htmlA

Get the inner HTML of an element. Defaults to the full page body. Use a CSS selector to target a specific element (e.g. '#main', '.content').

browser_find_elementsA

Find all interactive elements on the page (links, buttons, inputs, etc.). Returns a JSON list with each element's tag, text, type, href, selector hint, center coordinates (x, y), and whether it's visible in the viewport. Use this to discover what you can click or fill before interacting.

browser_wait_forA

Wait for an element matching the CSS selector to appear in the DOM. Useful after triggering an action that causes a loading state. timeout: max milliseconds to wait (default 10000). Returns the element's text content when found.

browser_clickA

Click an element using a CSS selector. Uses human-like WindMouse movement and realistic click timing. Examples: 'button#submit', '.login-btn', 'a[href="/checkout"]'

browser_fillA

Click a form field and fill it with text using human-like typing. Clears any existing value, then types with realistic delays and occasional typos. selector: CSS selector for the input element. text: the value to type.

browser_typeA

Type text at the current cursor position (no element targeting). Use this after clicking an input to type into it, or to send keyboard input to the focused element. Uses human-like timing and occasional typos.

browser_scrollA

Scroll the page vertically with human-like easing. pixels: positive = scroll down, negative = scroll up (default: 800).

browser_hoverA

Move the mouse over an element using human-like WindMouse movement. Useful for triggering dropdown menus or tooltips before clicking. selector: CSS selector for the target element.

browser_pressA

Press a keyboard key or key combination. Examples: 'Enter', 'Tab', 'Escape', 'ArrowDown', 'Control+a', 'Meta+Return'.

browser_evaluateA

Execute JavaScript in the current page context and return the result. The script should be a JS expression or a function body that returns a value. Examples:

  • 'document.title'

  • 'window.location.href'

  • '() => document.querySelectorAll("h2").length'

  • '() => { const el = document.querySelector("#price"); return el ? el.innerText : null; }' Returns the serialized result as JSON.

Prompts

Interactive templates invoked by user choice

NameDescription

No prompts

Resources

Contextual data attached and managed by the client

NameDescription

No resources

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/Scrape-Technology/abrasio-mcp'

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