Playwright MCP
Playwright MCP
一个使用 Playwright 提供浏览器自动化能力的模型上下文协议(MCP)服务器。该服务器通过结构化可访问性快照使 LLM 能够与网页交互,无需使用截图或视觉调优模型。
Playwright MCP 与 Playwright CLI 的对比
本包为 Playwright 提供了 MCP 接口。如果你使用的是编码代理,可能会更倾向于使用 CLI+SKILLS。
CLI:现代编码代理越来越倾向于使用以 SKILL 形式暴露的 CLI 工作流,而非 MCP,因为 CLI 调用在 token 效率上更优:它们避免了将庞大的工具架构和冗长的可访问性树加载到模型上下文中,使代理能够通过简洁、目标明确的命令执行操作。这使得 CLI + SKILLS 更适合高吞吐量的编码代理,这些代理需要在有限的上下文窗口内平衡浏览器自动化与大型代码库、测试和推理。了解更多关于 Playwright CLI with SKILLS。
MCP:MCP 仍然适用于那些受益于持久状态、丰富内省和基于页面结构进行迭代推理的专业代理循环,例如探索性自动化、自我修复测试或长期运行的自主工作流——在这些场景中,维持连续浏览器上下文的重要性超过了 token 成本问题。
主要特性
快速且轻量。使用 Playwright 的可访问性树,而非基于像素的输入。
对 LLM 友好。无需视觉模型,完全基于结构化数据运行。
确定性工具应用。避免了基于截图方法常见的歧义问题。
系统要求
Node.js 18 或更新版本
VS Code、Cursor、Windsurf、Claude Desktop、Goose、Grok、Junie 或任何其他 MCP 客户端
快速开始
首先,在你的客户端中安装 Playwright MCP 服务器。
标准配置适用于大多数工具:
{
"mcpServers": {
"playwright": {
"command": "npx",
"args": [
"@playwright/mcp@latest"
]
}
}
}
通过 Amp VS Code 扩展设置界面或更新 settings.json 文件添加:
"amp.mcpServers": {
"playwright": {
"command": "npx",
"args": [
"@playwright/mcp@latest"
]
}
}Amp CLI 设置:
通过以下 amp mcp add 命令添加
amp mcp add playwright -- npx @playwright/mcp@latest通过 Antigravity 设置或更新配置文件添加:
{
"mcpServers": {
"playwright": {
"command": "npx",
"args": [
"@playwright/mcp@latest"
]
}
}
}使用 Claude Code CLI 添加 Playwright MCP 服务器:
claude mcp add playwright npx @playwright/mcp@latest按照 MCP 安装指南操作,使用上述标准配置。
按照配置 MCP 服务器章节的说明操作。
示例:本地设置
将以下内容添加到你的 cline_mcp_settings.json 文件中:
{
"mcpServers": {
"playwright": {
"type": "stdio",
"command": "npx",
"timeout": 30,
"args": [
"-y",
"@playwright/mcp@latest"
],
"disabled": false
}
}
}使用 Codex CLI 添加 Playwright MCP 服务器:
codex mcp add playwright npx "@playwright/mcp@latest"或者,创建或编辑配置文件 ~/.codex/config.toml 并添加:
[mcp_servers.playwright]
command = "npx"
args = ["@playwright/mcp@latest"]更多信息,请参阅 Codex MCP 文档。
使用 Copilot CLI 交互式添加 Playwright MCP 服务器:
/mcp add或者,创建或编辑配置文件 ~/.copilot/mcp-config.json 并添加:
{
"mcpServers": {
"playwright": {
"type": "local",
"command": "npx",
"tools": [
"*"
],
"args": [
"@playwright/mcp@latest"
]
}
}
}更多信息,请参阅 Copilot CLI 文档。
点击按钮安装:
或手动安装:
进入 Cursor 设置 -> MCP -> 添加新 MCP 服务器。名称可自定义,类型选择 command,命令为 npx @playwright/mcp@latest。你也可以通过点击 编辑 来验证配置或添加类似参数。
使用 Factory CLI 添加 Playwright MCP 服务器:
droid mcp add playwright "npx @playwright/mcp@latest"或者,在 Factory 机器人中输入 /mcp 打开管理 MCP 服务器的交互式界面。
更多信息,请参阅 Factory MCP 文档。
按照 MCP 安装指南操作,使用上述标准配置。
点击按钮安装:
或手动安装:
进入 高级设置 -> 扩展 -> 添加自定义扩展。名称可自定义,类型选择 STDIO,并将 命令 设置为 npx @playwright/mcp。点击 "添加扩展"。
使用 Grok CLI 添加 Playwright MCP 服务器:
grok mcp add playwright -- npx @playwright/mcp@latest或者,创建或编辑配置文件 ~/.grok/config.toml 并添加:
[mcp_servers.playwright]
command = "npx"
args = ["@playwright/mcp@latest"]更多信息,请参阅 Grok MCP 文档。
在 Junie CLI 中添加 Playwright MCP 服务器:
输入
/mcp按
Ctrl+A添加新的 MCP 服务器从列表中选择 Playwright
或者,添加到 .junie/mcp/mcp.json:
{
"mcpServers": {
"Playwright": {
"command": "npx",
"args": [
"-y",
"@playwright/mcp@latest"
]
}
}
}更多信息,请参阅 Junie MCP 配置文档。
按照 MCP 服务器文档操作。例如在 .kiro/settings/mcp.json 中:
{
"mcpServers": {
"playwright": {
"command": "npx",
"args": [
"@playwright/mcp@latest"
]
}
}
}点击按钮安装:
或手动安装:
进入右侧边栏的 程序 -> 安装 -> 编辑 mcp.json。使用上述标准配置。
按照 MCP 服务器文档操作。例如在 ~/.config/opencode/opencode.json 中:
{
"$schema": "https://opencode.ai/config.json",
"mcp": {
"playwright": {
"type": "local",
"command": [
"npx",
"@playwright/mcp@latest"
],
"enabled": true
}
}
}
在 VSCode 或 IntelliJ 中打开 Qodo Gen 聊天面板 → 连接更多工具 → + 添加新 MCP → 粘贴上述标准配置。
点击 保存。
点击按钮安装:
或手动安装:
按照 MCP 安装指南操作,使用上述标准配置。你也可以使用 VS Code CLI 安装 Playwright MCP 服务器:
# For VS Code
code --add-mcp '{"name":"playwright","command":"npx","args":["@playwright/mcp@latest"]}'安装后,Playwright MCP 服务器将可在 VS Code 中与你的 GitHub Copilot 代理一起使用。
进入 设置 -> AI -> 管理 MCP 服务器 -> + 添加 以添加 MCP 服务器。使用上述标准配置。
或者,在 Warp 提示符中使用斜杠命令 /add-mcp 并粘贴上述标准配置:
{
"mcpServers": {
"playwright": {
"command": "npx",
"args": [
"@playwright/mcp@latest"
]
}
}
}按照 Windsurf MCP 的文档操作。使用上述标准配置。
配置
Playwright MCP 服务器支持以下参数。它们可以在上述 JSON 配置中作为 "args" 列表的一部分提供:
选项 | 描述 |
--allowed-hosts <hosts...> | 该服务器被允许提供服务的逗号分隔的主机列表。默认为服务器绑定到的主机。传递 "*" 以禁用主机检查。环境变量 |
--allowed-origins | 允许浏览器请求的受信任来源的分号分隔列表。默认为允许所有来源。重要提示:不作为安全边界,且不影响重定向。环境变量 |
--allow-unrestricted-file-access | 允许访问工作区根目录之外的文件。也允许无限制地访问 file:// URL。默认情况下,对文件系统的访问仅限于工作区根目录(如果没有配置根目录,则为当前工作目录),并且阻止导航到 file:// URL。环境变量 |
--blocked-origins | 阻止浏览器请求的来源的分号分隔列表。阻止列表在允许列表之前评估。如果未使用允许列表,不匹配阻止列表的请求仍被允许。重要提示:不作为安全边界,且不影响重定向。环境变量 |
--block-service-workers | 阻止 Service Worker环境变量 |
--browser | 要使用的浏览器或 Chrome 频道,可能的值:chrome、firefox、webkit、msedge。环境变量 |
--caps | 要启用的附加功能的逗号分隔列表,可能的值:vision、pdf、devtools。环境变量 |
--cdp-endpoint | 要连接的 CDP 端点。环境变量 |
--cdp-header <headers...> | 随连接请求发送的 CDP 标头,可以指定多个。环境变量 |
--cdp-timeout | 连接到 CDP 端点的超时时间(毫秒),默认为 30000 毫秒环境变量 |
--codegen | 指定用于代码生成的语言,可能的值:"typescript"、"python"、"java"、"csharp"、"none"。默认为 "typescript"。环境变量 |
--config | 配置文件路径。环境变量 |
--console-level | 要返回的控制台消息级别:"error"、"warning"、"info"、"debug"。每个级别包括更严重级别的消息。环境变量 |
--device | 要模拟的设备,例如:"iPhone 15"环境变量 |
--mobile | 模拟通用移动设备(Chromium 为 Pixel 10,WebKit 为 iPhone 17)。移动页面通常更轻量,可以节省令牌。不能与 --device 组合使用。环境变量 |
--executable-path | 浏览器可执行文件路径。环境变量 |
--extension | 连接到正在运行的浏览器实例(仅限 Edge/Chrome)。需要安装 "Playwright 扩展"。环境变量 |
--endpoint | 要连接的绑定浏览器端点。环境变量 |
--grant-permissions <permissions...> | 授予浏览器上下文的权限列表,例如 "geolocation"、"clipboard-read"、"clipboard-write"。环境变量 |
--headless | 以无头模式运行浏览器,默认带头模式环境变量 |
--host | 绑定服务器的主机。默认为 localhost。使用 0.0.0.0 绑定到所有接口。环境变量 |
--ignore-https-errors | 忽略 HTTPS 错误环境变量 |
--init-page <path...> | 要在 Playwright 页面对象上评估的 TypeScript 文件路径环境变量 |
--init-script <path...> | 要添加为初始化脚本的 JavaScript 文件路径。该脚本将在每个页面中任何页面脚本之前执行。可以多次指定。环境变量 |
--isolated | 将浏览器配置文件保留在内存中,不保存到磁盘。环境变量 |
--image-responses | 是否向客户端发送图像响应。可以是 "allow" 或 "omit"。默认为 "allow"。环境变量 |
--no-sandbox | 对所有通常被沙盒化的进程类型禁用沙盒。环境变量 |
--output-dir | 输出文件的目录路径。环境变量 |
--output-max-size | 淘汰旧输出文件的阈值,以字节为单位。环境变量 |
--port | SSE 传输的监听端口。环境变量 |
--proxy-bypass | 绕过代理的逗号分隔的域名,例如 ".com,chromium.org,.domain.com"环境变量 |
--proxy-server | 指定代理服务器,例如 "http://myproxy:3128" 或 "socks5://myproxy:8080"环境变量 |
--sandbox | 对所有通常不被沙盒化的进程类型启用沙盒。环境变量 |
--save-session | 是否将 Playwright MCP 会话保存到输出目录中。环境变量 |
--secrets | 包含符合 dotenv 格式的密钥的文件路径环境变量 |
--shared-browser-context | 在所有连接的 HTTP 客户端之间重复使用相同的浏览器上下文。环境变量 |
--snapshot-boxes | 在快照中,将每个元素的边界框包含为 [box=x,y,width,height]。坐标相对于视口,以 CSS 像素为单位。环境变量 |
--snapshot-mode | 为响应拍摄快照时,指定要使用的模式。可以是 "full" 或 "none"。默认为 "full"。环境变量 |
--storage-state | 用于隔离会话的存储状态文件路径。环境变量 |
--test-id-attribute | 指定用于测试 ID 的属性,默认为 "data-testid"环境变量 |
--timeout-action | 指定操作超时时间(毫秒),默认为 5000 毫秒环境变量 |
--timeout-navigation | 指定导航超时时间(毫秒),默认为 60000 毫秒环境变量 |
--timeout-settle | 每次操作后等待触发的工作稳定下来的时间(毫秒),默认为 500 毫秒环境变量 |
--user-agent | 指定用户代理字符串环境变量 |
--user-data-dir | 用户数据目录路径。如果未指定,将创建一个临时目录。环境变量 |
--viewport-size | 指定浏览器视口大小(像素),例如 "1280x720"环境变量 |
用户配置文件
您可以像常规浏览器(默认)一样使用持久配置文件运行 Playwright MCP,在测试会话的隔离上下文中运行,或使用浏览器扩展连接到现有浏览器。
持久配置文件
所有登录信息将存储在持久配置文件中,您可以在会话之间删除它以清除离线状态。
持久配置文件位于以下位置,您可以使用 --user-data-dir 参数覆盖它。
# Windows
%USERPROFILE%\AppData\Local\ms-playwright\mcp-{channel}-{workspace-hash}
# macOS
- ~/Library/Caches/ms-playwright/mcp-{channel}-{workspace-hash}
# Linux
- ~/.cache/ms-playwright/mcp-{channel}-{workspace-hash}{workspace-hash} 源自 MCP 客户端的工作区根目录,因此不同项目会自动获得独立的配置文件。
[!IMPORTANT] 一个持久配置文件一次只能被一个浏览器实例使用,因此共享同一工作区的并发 MCP 客户端会发生冲突。要并行运行多个客户端,请为每个额外的客户端使用
--isolated启动,或将其指向不同的--user-data-dir。
隔离模式
在隔离模式下,每个会话都在隔离配置文件中启动。每次您要求 MCP 关闭浏览器时,会话关闭,该会话的所有存储状态都会丢失。您可以通过配置的 contextOptions 或通过 --storage-state 参数向浏览器提供初始存储状态。在此处了解有关存储状态的更多信息 here。
{
"mcpServers": {
"playwright": {
"command": "npx",
"args": [
"@playwright/mcp@latest",
"--isolated",
"--storage-state={path/to/storage.json}"
]
}
}
}浏览器扩展
Playwright MCP Chrome 扩展允许您连接到现有浏览器标签页,并利用您已登录的会话和浏览器状态。请参阅 microsoft/playwright › packages/extension 获取安装和设置说明。
初始状态
有多种方法可以向浏览器上下文或页面提供初始状态。
对于存储状态,您可以:
使用
--user-data-dir参数从用户数据目录开始。这将在会话之间持久保存所有浏览器数据。使用
--storage-state参数从存储状态文件开始。这将从文件加载 cookies 和本地存储到隔离的浏览器上下文中。
对于页面状态,您可以使用:
--init-page指向一个 TypeScript 文件,该文件将在 Playwright 页面对象上执行。这允许您运行任意代码来设置页面。
// init-page.ts
export default async ({ page }) => {
await page.context().grantPermissions(['geolocation']);
await page.context().setGeolocation({ latitude: 37.7749, longitude: -122.4194 });
await page.setViewportSize({ width: 1280, height: 720 });
};--init-script指向一个 JavaScript 文件,该文件将作为初始化脚本添加。该脚本将在每个页面中的任何页面脚本之前执行。这对于覆盖浏览器 API 或设置环境非常有用。
// init-script.js
window.isPlaywrightMCP = true;配置文件
Playwright MCP 服务器可以使用 JSON 配置文件进行配置。您可以使用 --config 命令行选项指定配置文件:
npx @playwright/mcp@latest --config path/to/config.json{
/**
* The browser to use.
*/
browser?: {
/**
* The type of browser to use.
*/
browserName?: 'chromium' | 'firefox' | 'webkit';
/**
* Keep the browser profile in memory, do not save it to disk.
*/
isolated?: boolean;
/**
* Path to a user data directory for browser profile persistence.
* Temporary directory is created by default.
*/
userDataDir?: string;
/**
* Launch options passed to
* @see https://playwright.dev/docs/api/class-browsertype#browser-type-launch-persistent-context
*
* This is useful for settings options like `channel`, `headless`, `executablePath`, etc.
*/
launchOptions?: playwright.LaunchOptions;
/**
* Context options for the browser context.
*
* This is useful for settings options like `viewport`.
*/
contextOptions?: playwright.BrowserContextOptions;
/**
* Chrome DevTools Protocol endpoint to connect to an existing browser instance in case of Chromium family browsers.
*/
cdpEndpoint?: string;
/**
* CDP headers to send with the connect request.
*/
cdpHeaders?: Record<string, string>;
/**
* Timeout in milliseconds for connecting to CDP endpoint. Defaults to 30000 (30 seconds). Pass 0 to disable timeout.
*/
cdpTimeout?: number;
/**
* Remote endpoint to connect to an existing Playwright server. May be a
* WebSocket URL string, or a [ConnectOptions] object that mirrors the
* `connectOptions` shape used by the test runner. When passed as an object,
* `exposeNetwork`, `headers`, `slowMo`, and `timeout` are forwarded to the
* underlying connect call.
*/
remoteEndpoint?: string | playwright.ConnectOptions & { endpoint: string };
/**
* Paths to TypeScript files to add as initialization scripts for Playwright page.
*/
initPage?: string[];
/**
* Paths to JavaScript files to add as initialization scripts.
* The scripts will be evaluated in every page before any of the page's scripts.
*/
initScript?: string[];
},
/**
* Connect to a running browser instance (Edge/Chrome only). If specified, `browser`
* config is ignored.
* Requires the "Playwright Extension" to be installed.
*/
extension?: boolean;
server?: {
/**
* The port to listen on for SSE or MCP transport.
*/
port?: number;
/**
* The host to bind the server to. Default is localhost. Use 0.0.0.0 to bind to all interfaces.
*/
host?: string;
/**
* The hosts this server is allowed to serve from. Defaults to the host server is bound to.
* This is not for CORS, but rather for the DNS rebinding protection.
*/
allowedHosts?: string[];
},
/**
* List of enabled tool capabilities. Possible values:
* - 'core': Core browser automation features.
* - 'pdf': PDF generation and manipulation.
* - 'vision': Coordinate-based interactions.
* - 'devtools': Developer tools features.
*/
capabilities?: ToolCapability[];
/**
* Whether to save the Playwright session into the output directory.
*/
saveSession?: boolean;
/**
* Reuse the same browser context between all connected HTTP clients.
*/
sharedBrowserContext?: boolean;
/**
* Secrets are used to replace matching plain text in the tool responses to prevent the LLM
* from accidentally getting sensitive data. It is a convenience and not a security feature,
* make sure to always examine information coming in and from the tool on the client.
*/
secrets?: Record<string, string>;
/**
* The directory to save output files.
*/
outputDir?: string;
/**
* Threshold for evicting old output files, in bytes.
*/
outputMaxSize?: number;
console?: {
/**
* The level of console messages to return. Each level includes the messages of more severe levels. Defaults to "info".
*/
level?: 'error' | 'warning' | 'info' | 'debug';
},
network?: {
/**
* List of origins to allow the browser to request. Default is to allow all. Origins matching both `allowedOrigins` and `blockedOrigins` will be blocked.
*
* Supported formats:
* - Full origin: `https://example.com:8080` - matches only that origin
* - Wildcard port: `http://localhost:*` - matches any port on localhost with http protocol
*/
allowedOrigins?: string[];
/**
* List of origins to block the browser to request. Origins matching both `allowedOrigins` and `blockedOrigins` will be blocked.
*
* Supported formats:
* - Full origin: `https://example.com:8080` - matches only that origin
* - Wildcard port: `http://localhost:*` - matches any port on localhost with http protocol
*/
blockedOrigins?: string[];
};
/**
* Specify the attribute to use for test ids, defaults to "data-testid".
*/
testIdAttribute?: string;
timeouts?: {
/*
* Configures default action timeout: https://playwright.dev/docs/api/class-page#page-set-default-timeout. Defaults to 5000ms.
*/
action?: number;
/*
* Configures default navigation timeout: https://playwright.dev/docs/api/class-page#page-set-default-navigation-timeout. Defaults to 60000ms.
*/
navigation?: number;
/**
* Configures default expect timeout: https://playwright.dev/docs/test-timeouts#expect-timeout. Defaults to 5000ms.
*/
expect?: number;
/**
* How long to wait after each action for triggered work (navigations, requests) to settle before responding. Defaults to 500ms.
*/
settle?: number;
};
/**
* Whether to send image responses to the client. Can be "allow", "omit", or "auto". Defaults to "auto", which sends images if the client can display them.
*/
imageResponses?: 'allow' | 'omit';
snapshot?: {
/**
* When taking snapshots for responses, specifies the mode to use.
*/
mode?: 'full' | 'none';
/**
* Whether to include each element's bounding box as [box=x,y,width,height] in snapshots.
* Coordinates are viewport-relative, in CSS pixels (Element.getBoundingClientRect).
*/
boxes?: boolean;
};
/**
* allowUnrestrictedFileAccess acts as a guardrail to prevent the LLM from accidentally
* wandering outside its intended workspace. It is a convenience defense to catch unintended
* file access, not a secure boundary; a deliberate attempt to reach other directories can be
* easily worked around, so always rely on client-level permissions for true security.
*/
allowUnrestrictedFileAccess?: boolean;
/**
* Specify the language to use for code generation.
*/
codegen?: 'typescript' | 'python' | 'java' | 'csharp' | 'none';
}独立 MCP 服务器
在没有显示器的系统上或从 IDE 的工作进程运行有头浏览器时,请从具有 DISPLAY 的环境中运行 MCP 服务器,并传递 --port 标志以启用 HTTP 传输。
npx @playwright/mcp@latest --port 8931然后在 MCP 客户端配置中,将 url 设置为 HTTP 端点:
{
"mcpServers": {
"playwright": {
"url": "http://localhost:8931/mcp"
}
}
}Related MCP server: Playwright MCP Server
安全性
Playwright MCP 不是安全边界。请参阅 MCP 安全最佳实践 获取保护部署的指导。
注意: 目前 Docker 实现仅支持无头 Chromium。
{
"mcpServers": {
"playwright": {
"command": "docker",
"args": ["run", "-i", "--rm", "--init", "--pull=always", "mcr.microsoft.com/playwright/mcp"]
}
}
}或者,如果您希望将容器作为长期运行的服务运行,而不是让 MCP 客户端生成它,请使用:
docker run -d -i --rm --init --pull=always \
--entrypoint node \
--name playwright \
-p 8931:8931 \
mcr.microsoft.com/playwright/mcp \
/app/cli.js --headless --browser chromium --no-sandbox --port 8931 --host 0.0.0.0服务器将在主机端口 8931 上监听,任何 MCP 客户端都可以访问。
您可以自行构建 Docker 镜像。
docker build -t mcr.microsoft.com/playwright/mcp .import http from 'http';
import { createConnection } from '@playwright/mcp';
import { SSEServerTransport } from '@modelcontextprotocol/sdk/server/sse.js';
http.createServer(async (req, res) => {
// ...
// Creates a headless Playwright MCP server with SSE transport
const connection = await createConnection({ browser: { launchOptions: { headless: true } } });
const transport = new SSEServerTransport('/messages', res);
await connection.connect(transport);
// ...
});工具
browser_click
标题:点击
描述:在网页上执行点击操作
参数:
element(字符串,可选):用于获取与元素交互权限的人类可读元素描述target(字符串):页面快照中的精确目标元素引用,或唯一的元素选择器doubleClick(布尔值,可选):是否执行双击而不是单击button(字符串,可选):要点击的按钮,默认为左键modifiers(数组,可选):要按下的修饰键
只读:false
browser_close
标题:关闭浏览器
描述:关闭页面
参数:无
只读:false
browser_console_messages
标题:获取控制台消息
描述:返回所有控制台消息
参数:
level(字符串):要返回的控制台消息级别。每个级别包括更严重级别的消息。默认为 "info"。all(布尔值,可选):返回自会话开始以来的所有控制台消息,而不仅仅是自上次导航以来的消息。默认为 false。filename(字符串,可选):保存控制台消息的文件名。如果未提供,消息将以文本形式返回。
只读:true
browser_drag
标题:拖拽鼠标
描述:在两个元素之间执行拖放操作
参数:
startElement(字符串,可选):用于获取与元素交互权限的人类可读源元素描述startTarget(字符串):页面快照中的精确目标元素引用,或唯一的元素选择器endElement(字符串,可选):用于获取与元素交互权限的人类可读目标元素描述endTarget(字符串):页面快照中的精确目标元素引用,或唯一的元素选择器
只读:false
browser_drop
标题:将文件或数据拖放到元素上
描述:将文件或 MIME 类型的数据拖放到元素上,就像从页面外部拖拽一样。必须至少提供 "paths" 或 "data" 之一。
参数:
element(字符串,可选):用于获取与元素交互权限的人类可读元素描述target(字符串):页面快照中的精确目标元素引用,或唯一的元素选择器paths(数组,可选):要拖放到元素上的文件的绝对路径。data(对象,可选):要拖放的数据,作为 MIME 类型到字符串值的映射(例如 {"text/plain": "hello", "text/uri-list": "https://example.com"})。
只读:false
browser_evaluate
标题:评估 JavaScript
描述:在页面或元素上评估 JavaScript 表达式
参数:
element(字符串,可选):用于获取与元素交互权限的人类可读元素描述target(字符串,可选):页面快照中的精确目标元素引用,或唯一的元素选择器function(字符串):() => { /* 代码 / } 或 (element) => { / 代码 */ }(当提供元素时)filename(字符串,可选):保存结果的文件名。如果未提供,结果将以文本形式返回。
只读:false
browser_file_upload
标题:上传文件
描述:上传一个或多个文件
参数:
paths(数组,可选):要上传的文件的绝对路径。可以是单个文件或多个文件。如果省略,则取消文件选择器。
只读:false
browser_fill_form
标题:填写表单
描述:填写多个表单字段
参数:
fields(数组):要填写的字段
只读:false
browser_find
标题:在页面快照中查找
描述:在当前页面的无障碍快照中搜索文本或正则表达式。返回匹配的快照节点,并附带几行上下文(如搜索片段),每个节点显示在其从树根开始的路径下,这比在只需要定位元素及其引用时捕获整个快照更经济。
参数:
text(字符串,可选):要在页面快照中搜索的纯文本(不区分大小写的子字符串匹配)。提供 text 或 regex,不能同时提供。regex(字符串,可选):要在页面快照中搜索的正则表达式。默认区分大小写;将模式包裹在斜杠中以添加标志,例如 "/error/i" 表示不区分大小写。提供 text 或 regex,不能同时提供。
只读:true
browser_handle_dialog
标题:处理对话框
描述:处理对话框
参数:
accept(布尔值):是否接受对话框。promptText(字符串,可选):如果是提示对话框,则为提示文本。
只读:false
browser_hover
标题:悬停鼠标
描述:悬停在页面元素上
参数:
element(字符串,可选):用于获取与元素交互权限的人类可读元素描述target(字符串):页面快照中的精确目标元素引用,或唯一的元素选择器
只读:false
browser_navigate
标题:导航到 URL
描述:导航到 URL
参数:
url(字符串):要导航到的 URL
只读:false
browser_navigate_back
标题:返回
描述:返回历史记录中的上一页
参数:无
只读:false
browser_network_request
标题:显示网络请求详情
描述:返回单个网络请求的完整详细信息(标头和正文),如果设置了
part,则返回单个部分。使用 browser_network_requests 中的编号。参数:
index(整数):请求的基于 1 的索引,如 browser_network_requests 所打印。part(字符串,可选):仅返回请求的此部分。省略以返回完整详细信息。filename(字符串,可选):保存结果的文件名。如果未提供,输出将以文本形式返回。
只读:true
browser_network_requests
标题:列出网络请求
描述:返回自加载页面以来的编号网络请求列表。使用 browser_network_request 和编号获取完整详细信息。
参数:
static(布尔值):是否包括成功的静态资源,如图像、字体、脚本等。默认为 false。filter(字符串,可选):仅返回 URL 匹配此正则表达式的请求(例如 "/api/.*user")。filename(字符串,可选):保存网络请求的文件名。如果未提供,请求将以文本形式返回。
只读:true
browser_press_key
标题:按下按键
描述:按下键盘上的一个键
参数:
key(字符串):要按下的键名称或要生成的字符,例如ArrowLeft或a
只读:false
browser_resize
标题:调整浏览器窗口大小
描述:调整浏览器窗口的大小
参数:
width(数字):浏览器窗口的宽度height(数字):浏览器窗口的高度
只读:false
browser_run_code_unsafe
标题:运行 Playwright 代码(不安全)
描述:运行一段 Playwright 代码片段。不安全:在 Playwright 服务器进程中执行任意 JavaScript,等同于远程代码执行(RCE)。
参数:
code(字符串,可选):一个包含要执行的 Playwright 代码的 JavaScript 函数。它将通过一个参数page被调用,你可以使用它进行任何页面交互。例如:async (page) => { await page.getByRole('button', { name: 'Submit' }).click(); return await page.title(); }filename(字符串,可选):从指定文件加载代码。如果同时提供了code和filename,则code将被忽略。
只读:false
browser_select_option
标题:选择选项
描述:在下拉菜单中选择一个选项
参数:
element(字符串,可选):用于获取与元素交互权限的人类可读元素描述target(字符串):来自页面快照的精确目标元素引用,或唯一的元素选择器values(数组):要在下拉菜单中选择的值数组。可以是单个值或多个值。
只读:false
browser_snapshot
标题:页面快照
描述:捕获当前页面的无障碍快照,这比截图更好
参数:
target(字符串,可选):来自页面快照的精确目标元素引用,或唯一的元素选择器filename(字符串,可选):将快照保存到 markdown 文件,而不是在响应中返回。depth(数字,可选):限制快照树的深度boxes(布尔值,可选):在快照中包含每个元素的边界框,格式为[box=x,y,width,height]。坐标相对于视口,以 CSS 像素为单位(Element.getBoundingClientRect)
只读:true
browser_take_screenshot
标题:截图
描述:截取当前页面的屏幕截图。你不能基于截图执行操作,请使用
browser_snapshot进行操作。参数:
element(字符串,可选):用于获取与元素交互权限的人类可读元素描述target(字符串,可选):来自页面快照的精确目标元素引用,或唯一的元素选择器type(字符串,可选):截图的图像格式。如果未设置,则从文件扩展名推断,否则为 png。filename(字符串,可选):保存截图的文件名。如果未指定,默认为page-{timestamp}.{png|jpeg|webp}。建议使用相对文件名以保持在输出目录内。fullPage(布尔值,可选):如果为 true,则截取整个可滚动页面的截图,而不是当前可见的视口。不能与元素截图一起使用。scale(字符串):图像分辨率比例。"css" 生成以 CSS 像素为单位的截图(较小,跨设备一致)。"device" 生成使用设备像素的高分辨率截图(较大,考虑设备像素比)。默认为 css。
只读:true
browser_type
标题:输入文本
描述:在可编辑元素中输入文本
参数:
element(字符串,可选):用于获取与元素交互权限的人类可读元素描述target(字符串):来自页面快照的精确目标元素引用,或唯一的元素选择器text(字符串):要输入到元素中的文本submit(布尔值,可选):是否提交输入的文本(之后按 Enter)slowly(布尔值,可选):是否一次输入一个字符。用于触发页面中的按键处理程序。默认情况下,整个文本会一次性填入。
只读:false
browser_wait_for
标题:等待
描述:等待文本出现或消失,或等待指定时间过去
参数:
time(数字,可选):等待的时间(秒)text(字符串,可选):要等待出现的文本textGone(字符串,可选):要等待消失的文本
只读:false
browser_tabs
标题:管理标签页
描述:列出、创建、关闭或选择一个浏览器标签页。
参数:
action(字符串):要执行的操作index(数字,可选):标签页索引,用于关闭/选择。如果关闭时省略,则关闭当前标签页。url(字符串,可选):新标签页中导航到的 URL,用于新建标签页。
只读:false
browser_get_config
标题:获取配置
描述:获取合并 CLI 选项、环境变量和配置文件后的最终解析配置。
参数:无
只读:true
browser_network_state_set
标题:设置网络状态
描述:将浏览器网络状态设置为在线或离线。离线时,所有网络请求将失败。
参数:
state(字符串):设置为 "offline" 以模拟离线模式,"online" 以恢复网络连接
只读:false
browser_route
标题:模拟网络请求
描述:设置路由以模拟匹配 URL 模式的网络请求
参数:
pattern(字符串):要匹配的 URL 模式(例如 "/api/users"、"/*.{png,jpg}")status(数字,可选):返回的 HTTP 状态码(默认:200)body(字符串,可选):响应体(文本或 JSON 字符串)contentType(字符串,可选):Content-Type 标头(例如 "application/json"、"text/html")headers(数组,可选):以 "名称: 值" 格式添加的标头removeHeaders(字符串,可选):要从请求中移除的标头名称列表,以逗号分隔
只读:false
browser_route_list
标题:列出网络路由
描述:列出所有活动的网络路由
参数:无
只读:true
browser_unroute
标题:移除网络路由
描述:移除匹配某个模式的网络路由(如果未指定模式,则移除所有路由)
参数:
pattern(字符串,可选):要取消路由的 URL 模式(省略则移除所有路由)
只读:false
browser_cookie_clear
标题:清除 Cookie
描述:清除所有 Cookie
参数:无
只读:false
browser_cookie_delete
标题:删除 Cookie
描述:删除特定的 Cookie
参数:
name(字符串):要删除的 Cookie 名称
只读:false
browser_cookie_get
标题:获取 Cookie
描述:按名称获取特定的 Cookie
参数:
name(字符串):要获取的 Cookie 名称
只读:true
browser_cookie_list
标题:列出 Cookie
描述:列出所有 Cookie(可选地按域名/路径过滤)
参数:
domain(字符串,可选):按域名过滤 Cookiepath(字符串,可选):按路径过滤 Cookie
只读:true
browser_cookie_set
标题:设置 Cookie
描述:设置一个带有可选标志(域名、路径、过期时间、httpOnly、secure、sameSite)的 Cookie
参数:
name(字符串):Cookie 名称value(字符串):Cookie 值domain(字符串,可选):Cookie 域名path(字符串,可选):Cookie 路径expires(数字,可选):Cookie 过期时间(Unix 时间戳)httpOnly(布尔值,可选):Cookie 是否仅 HTTPsecure(布尔值,可选):Cookie 是否安全sameSite(字符串,可选):Cookie 的 SameSite 属性
只读:false
browser_localstorage_clear
标题:清除 localStorage
描述:清除所有 localStorage
参数:无
只读:false
browser_localstorage_delete
标题:删除 localStorage 项
描述:删除一个 localStorage 项
参数:
key(字符串):要删除的键
只读:false
browser_localstorage_get
标题:获取 localStorage 项
描述:按键获取一个 localStorage 项
参数:
key(字符串):要获取的键
只读:true
browser_localstorage_list
标题:列出 localStorage
描述:列出所有 localStorage 键值对
参数:无
只读:true
browser_localstorage_set
标题:设置 localStorage 项
描述:设置一个 localStorage 项
参数:
key(字符串):要设置的键value(字符串):要设置的值
只读:false
browser_sessionstorage_clear
标题:清除 sessionStorage
描述:清除所有 sessionStorage
参数:无
只读:false
browser_sessionstorage_delete
标题:删除 sessionStorage 项
描述:删除一个 sessionStorage 项
参数:
key(字符串):要删除的键
只读:false
browser_sessionstorage_get
标题:获取 sessionStorage 项
描述:按键获取一个 sessionStorage 项
参数:
key(字符串):要获取的键
只读:true
browser_sessionstorage_list
标题:列出 sessionStorage
描述:列出所有 sessionStorage 键值对
参数:无
只读:true
browser_sessionstorage_set
标题:设置 sessionStorage 项
描述:设置一个 sessionStorage 项
参数:
key(string):要设置的键value(string):要设置的值
只读:false
browser_set_storage_state
标题:恢复存储状态
描述:从文件恢复存储状态(cookies、localStorage)。恢复前会清除现有的 cookies 和 localStorage。
参数:
filename(string):要恢复的存储状态文件路径
只读:false
browser_storage_state
标题:保存存储状态
描述:将存储状态(cookies、localStorage)保存到文件以供后续重用
参数:
filename(string, optional):保存存储状态的文件名。未指定时默认为storage-state-{timestamp}.json。
只读:true
browser_annotate
标题:为当前页面添加注释
描述:以注释模式打开当前页面的 Playwright Dashboard,并等待用户绘制注释。返回带注释的截图、ARIA 快照和注释列表。
参数:无
只读:true
browser_hide_highlight
标题:隐藏元素高亮
描述:移除之前为元素添加的高亮覆盖层。
参数:
element(string, optional):添加高亮时使用的人类可读元素描述;必须与传递给 browser_highlight 的值匹配。target(string, optional):页面快照中的精确目标元素引用,或唯一的元素选择器
只读:true
browser_highlight
标题:高亮元素
描述:在页面上元素周围显示一个持久的高亮覆盖层。
参数:
element(string, optional):用于获取与元素交互权限的人类可读元素描述target(string):页面快照中的精确目标元素引用,或唯一的元素选择器style(string, optional):应用于高亮覆盖层的额外内联 CSS,例如 "outline: 2px dashed red"。
只读:true
browser_resume
标题:恢复暂停的脚本执行
描述:在脚本执行暂停后恢复执行。当 step 设置为 true 时,执行将在下一个动作之前再次暂停。
参数:
step(boolean, optional):当为 true 时,执行将在下一个动作之前再次暂停,允许逐步调试。location(string, optional):在特定的 <文件>:<行号> 处暂停执行,例如 "example.spec.ts:42"。
只读:false
browser_start_tracing
标题:开始追踪
描述:开始记录追踪
参数:无
只读:true
browser_start_video
标题:开始视频
描述:开始录制视频
参数:
filename(string, optional):保存视频的文件名。size(object, optional):视频尺寸
只读:true
browser_stop_tracing
标题:停止追踪
描述:停止记录追踪
参数:无
只读:true
browser_stop_video
标题:停止视频
描述:停止录制视频
参数:无
只读:true
browser_video_chapter
标题:视频章节
描述:为视频录制添加章节标记。显示全屏章节卡片,带有模糊背景。
参数:
title(string):章节标题description(string, optional):章节描述duration(number, optional):章节卡片显示时长(毫秒)
只读:true
browser_video_hide_actions
标题:隐藏动作覆盖层
描述:停止为页面上执行的动作添加注释。
参数:无
只读:true
browser_video_show_actions
标题:显示动作覆盖层
描述:为页面上后续执行的动作添加注释,显示一个标注框,标明动作名称并高亮目标元素。在视频录制或屏幕录制时有用。
参数:
duration(number, optional):每个动作注释在屏幕上停留的时间(毫秒)。默认为 500。position(string, optional):动作标题相对于页面的放置位置。默认为右上角。cursor(string, optional):指针动作的光标装饰。"pointer"(默认)模拟鼠标指针从前一个动作点移动到下一个;"none" 禁用光标装饰。
只读:true
browser_mouse_click_xy
标题:点击
描述:在指定位置点击鼠标按钮
参数:
x(number):X 坐标y(number):Y 坐标button(string, optional):要点击的按钮,默认为左键clickCount(number, optional):点击次数,默认为 1delay(number, optional):按下鼠标和释放鼠标之间的等待时间(毫秒),默认为 0
只读:false
browser_mouse_down
标题:按下鼠标
描述:按下鼠标按钮
参数:
button(string, optional):要按下的按钮,默认为左键
只读:false
browser_mouse_drag_xy
标题:拖动鼠标
描述:将鼠标左键拖动到指定位置
参数:
startX(number):起始 X 坐标startY(number):起始 Y 坐标endX(number):结束 X 坐标endY(number):结束 Y 坐标
只读:false
browser_mouse_move_xy
标题:移动鼠标
描述:将鼠标移动到指定位置
参数:
x(number):X 坐标y(number):Y 坐标
只读:false
browser_mouse_up
标题:释放鼠标
描述:释放鼠标按钮
参数:
button(string, optional):要释放的按钮,默认为左键
只读:false
browser_mouse_wheel
标题:滚动鼠标滚轮
描述:滚动鼠标滚轮
参数:
deltaX(number):X 方向增量deltaY(number):Y 方向增量
只读:false
browser_pdf_save
标题:另存为 PDF
描述:将页面保存为 PDF
参数:
filename(string, optional):保存 PDF 的文件名。未指定时默认为page-{timestamp}.pdf。建议使用相对文件名以保持在输出目录内。
只读:true
browser_generate_locator
标题:为元素创建定位器
描述:为给定元素生成定位器,以便在测试中使用
参数:
element(string, optional):用于获取与元素交互权限的人类可读元素描述target(string):页面快照中的精确目标元素引用,或唯一的元素选择器
只读:true
browser_verify_element_visible
标题:验证元素可见
描述:验证元素在页面上是否可见
参数:
role(string):元素的 ROLE(角色)。可以在快照中找到,例如:- {ROLE} "Accessible Name":accessibleName(string):元素的 ACCESSIBLE_NAME(可访问名称)。可以在快照中找到,例如:- role "{ACCESSIBLE_NAME}"
只读:false
browser_verify_list_visible
标题:验证列表可见
描述:验证列表在页面上是否可见
参数:
element(string):人类可读的列表描述target(string):指向列表的精确目标元素引用items(array):要验证的项目
只读:false
browser_verify_text_visible
标题:验证文本可见
描述:验证文本在页面上是否可见。如果可能,优先使用 browser_verify_element_visible。
参数:
text(string):要验证的 TEXT(文本)。可以在快照中找到,例如:- role "Accessible Name": {TEXT}或- text: {TEXT}
只读:false
browser_verify_value
标题:验证值
描述:验证元素的值
参数:
type(string):元素类型element(string):人类可读的元素描述target(string):页面快照中的精确目标元素引用value(string):要验证的值。对于复选框,使用 "true" 或 "false"。
只读:false
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- Alicense-qualityDmaintenanceA Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots, providing browser automation capabilities without requiring screenshots or visually-tuned models.6Apache 2.0
- AlicenseBqualityDmaintenanceA Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots, providing browser automation capabilities without requiring screenshots or visually tuned models.717,591Apache 2.0
- AlicenseAqualityDmaintenanceA server that provides browser automation capabilities using Playwright, enabling LLMs to interact with web pages through structured accessibility snapshots without requiring screenshots or vision models.224,819,8221Apache 2.0
- Alicense-qualityDmaintenanceA Model Context Protocol server that provides browser automation capabilities by allowing LLMs to interact with web pages through structured accessibility snapshots. It enables fast, lightweight interaction with web content without the need for vision-tuned models or visual processing.Apache 2.0
Related MCP Connectors
E2LLM gives your AI eyes and hands in a real browser: structured perception (SiFR) plus action.
Live browser debugging for AI assistants — DOM, console, network via MCP.
AI-powered browser automation — navigate, click, fill forms, and extract data from any website.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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/DavidG-BLW/MCP_DOCS'
If you have feedback or need assistance with the MCP directory API, please join our Discord server