Skip to main content
Glama

Server Configuration

Describes the environment variables required to run the server.

NameRequiredDescriptionDefault
PORTNoPort the auth gate binds to; Render routes to it.10000
MCP_TOKENYesRequired. Bearer token every request must present. The container refuses to start without it.
UPSTREAM_PORTNoLoopback port the MCP server listens on behind the gate. Change only if it collides with something inside the container.8931
PLAYWRIGHT_MCP_HOSTNoHost for the Playwright MCP server. Only matters when running the server directly outside this image.
PLAYWRIGHT_MCP_HEADLESSNoWhether to run headless. Only matters when running the server directly outside this image.
PLAYWRIGHT_MCP_NO_SANDBOXNoWhether to disable the sandbox. Only matters when running the server directly outside this image.
PLAYWRIGHT_MCP_ALLOWED_HOSTSNoComma-separated allowed hostnames for the MCP server. Needed for custom domains; '*' disables the check.

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

CapabilityDetails
tools
{}

Tools

Functions exposed to the LLM to take actions

NameDescription
browser_closeB

Close the page

browser_resizeB

Resize the browser window

browser_console_messagesB

Returns all console messages

browser_handle_dialogC

Handle a dialog

browser_evaluateB

Evaluate JavaScript expression on page or element

browser_file_uploadB

Upload one or multiple files

browser_dropA

Drop files or MIME-typed data onto an element, as if dragged from outside the page. At least one of "paths" or "data" must be provided.

browser_fill_formB

Fill multiple form fields

browser_press_keyB

Press a key on the keyboard

browser_typeB

Type text into editable element

browser_navigateC

Navigate to a URL

browser_navigate_backA

Go back to the previous page in the history

browser_network_requestsA

Returns a numbered list of network requests since loading the page. Use browser_network_request with the number to get full details.

browser_network_requestA

Returns full details (headers and body) of a single network request, or a single part if part is set. Use the number from browser_network_requests.

browser_run_code_unsafeA

Run a Playwright code snippet. Unsafe: executes arbitrary JavaScript in the Playwright server process and is RCE-equivalent.

browser_take_screenshotA

Take a screenshot of the current page. You can't perform actions based on the screenshot, use browser_snapshot for actions.

browser_snapshotB

Capture accessibility snapshot of the current page, this is better than screenshot

browser_clickB

Perform click on a web page

browser_dragA

Perform drag and drop between two elements

browser_hoverA

Hover over element on page

browser_select_optionB

Select an option in a dropdown

browser_tabsA

List, create, close, or select a browser tab.

browser_wait_forA

Wait for text to appear or disappear or a specified time to pass

Prompts

Interactive templates invoked by user choice

NameDescription

No prompts

Resources

Contextual data attached and managed by the client

NameDescription

No resources

TDQS

B3.2/5.0

Scored across 23 tools

Disambiguation4/5

Most tools target distinct browser actions, and descriptions clarify similarities like snapshot vs screenshot or network_requests vs network_request. A few pairs (e.g., browser_type vs browser_fill_form, browser_drag vs browser_drop) could be confused in edge cases, but the boundaries are generally clear.

Naming Consistency4/5

All tools share a consistent browser_ prefix, and most follow a verb_noun pattern like browser_navigate, browser_click, and browser_select_option. A few noun-style names (browser_console_messages, browser_network_requests, browser_snapshot, browser_tabs) deviate from this pattern, creating minor inconsistency.

Tool Count4/5

23 tools is on the heavier side but reasonable for a browser automation server covering navigation, interaction, input, network inspection, dialogs, and screenshots. Each tool serves a distinct purpose and the count is not bloated relative to the domain's complexity.

Completeness4/5

The tool surface covers the core browser automation lifecycle: navigation, interaction, forms, tabs, dialogs, screenshots, network inspection, and JavaScript evaluation. Obvious minor gaps include no navigate_forward, reload, cookie handling, or localStorage access, but these can be worked around with browser_evaluate or browser_navigate.

Maintenance

ActivityMaintained
ResponsivenessNo issues