refactor: 分散式目录结构 — 每个条目独立 <id>/index.json

This commit is contained in:
Johnson
2026-02-25 08:55:32 +08:00
parent eb95c7ace3
commit c729eecdd6
24 changed files with 774 additions and 519 deletions

View File

@@ -0,0 +1,43 @@
{
"id": "playwright-mcp",
"name": "Playwright MCP",
"description": "浏览器自动化 — 网页导航、截图、表单填写、DOM 操作、PDF 生成",
"protocol": "mcp",
"status": "offline",
"origin": "registry",
"transport": "stdio",
"capabilities": [
"page_navigate",
"screenshot",
"dom_query",
"form_fill",
"pdf_generate",
"content_extract"
],
"toolCount": 33,
"version": "0.0.68",
"author": "Microsoft",
"tags": [
"浏览器",
"自动化",
"Playwright"
],
"install": {
"method": "npx",
"packageName": "@playwright/mcp",
"command": "npx",
"args": [
"@playwright/mcp@latest"
],
"postInstall": [
"npx playwright install chromium"
]
},
"connection": {
"transport": "stdio",
"command": "npx",
"args": [
"@playwright/mcp@latest"
]
}
}