message / plugins /browser /plugin.json
hunian
refactor(plugins): 插件短名并统一 MCP tool 为 {plugin}-{tool}
cc826a1
Raw
History Blame Contribute Delete
1.86 kB
{
"name": "browser",
"version": "3.0.0",
"description": "浏览器MCP插件,纯 Lightpanda 单后端透传,提供 28 个通用浏览器 MCP 工具(导航/提取/交互/等待),为各环境 agent 暴露一致的浏览器能力",
"author": "System",
"ui_path": "/tool/browser",
"requirements": [],
"enabled": true,
"category": "browser",
"capabilities": ["browser_automation", "web_navigation", "content_extraction", "structured_extraction", "web_interaction"],
"governance": {
"status": "active",
"handling_decision": "正常使用",
"dependency_risk": "依赖 Lightpanda 二进制(推荐 nightly release)。无 Windows 原生二进制,Windows 需 WSL2 或 Docker。二进制缺失时插件降级为 DEPENDENCY_ERROR。"
},
"binary_dependencies": [
{
"name": "lightpanda",
"purpose": "Lightpanda 浏览器二进制(stdio MCP server,提供 28 个浏览器工具)",
"required": false,
"install_hints": {
"linux": "curl -L -o /usr/local/bin/lightpanda https://github.com/lightpanda-io/browser/releases/download/nightly/lightpanda-x86_64-linux && chmod +x /usr/local/bin/lightpanda",
"macos": "curl -L -o /usr/local/bin/lightpanda https://github.com/lightpanda-io/browser/releases/download/nightly/lightpanda-aarch64-macos && chmod +x /usr/local/bin/lightpanda",
"windows": "Lightpanda 无 Windows 原生二进制,需 WSL2 或 Docker",
"wsl": "wsl --install && wsl -e sh -c 'curl -L -o /usr/local/bin/lightpanda https://github.com/lightpanda-io/browser/releases/download/nightly/lightpanda-x86_64-linux && chmod +x /usr/local/bin/lightpanda'",
"docker": "docker run -d -p 9222:9222 lightpanda/browser:nightly",
"docs": "https://github.com/lightpanda-io/browser#quick-start"
}
}
],
"ui": {
"type": "static"
}
}