mirror of
https://git.openapi.site/https://github.com/desirecore/registry.git
synced 2026-09-05 17:13:36 +08:00
- entries/electron-mcp/manifest.json:4 工具、stdio 连接,截图密钥走 {{secrets.*}} 占位
- install.md:端口硬编码扫描范围、CDP 无鉴权风险、密钥强制校验
- usage.md:与 playwright/chrome-devtools MCP 的选型分工,以及 9 条实测限制与规避
- manifest.json:stats 20→21、mcpServices 7→8
54 lines
1.1 KiB
JSON
54 lines
1.1 KiB
JSON
{
|
|
"id": "electron-mcp",
|
|
"name": "Electron MCP",
|
|
"type": "mcp",
|
|
"version": "1.5.0",
|
|
"author": "halilural",
|
|
"description": "Electron 桌面应用自动化 — 经 CDP 发现窗口、执行 JS、点击填表、截图、读日志",
|
|
"tags": [
|
|
"Electron",
|
|
"桌面应用",
|
|
"自动化",
|
|
"调试",
|
|
"CDP"
|
|
],
|
|
"icon": "terminal",
|
|
"platformSupport": [
|
|
"macos",
|
|
"windows",
|
|
"linux"
|
|
],
|
|
"capabilities": [
|
|
"window_discover",
|
|
"js_evaluate",
|
|
"ui_interact",
|
|
"element_inspect",
|
|
"screenshot",
|
|
"log_read"
|
|
],
|
|
"toolCount": 4,
|
|
"install": {
|
|
"method": "npx",
|
|
"packageName": "electron-mcp-server",
|
|
"command": "npx",
|
|
"args": [
|
|
"-y",
|
|
"electron-mcp-server@1.5.0"
|
|
],
|
|
"env": {
|
|
"SCREENSHOT_ENCRYPTION_KEY": "{{secrets.SCREENSHOT_ENCRYPTION_KEY}}"
|
|
}
|
|
},
|
|
"connection": {
|
|
"transport": "stdio",
|
|
"command": "npx",
|
|
"args": [
|
|
"-y",
|
|
"electron-mcp-server@1.5.0"
|
|
],
|
|
"env": {
|
|
"SCREENSHOT_ENCRYPTION_KEY": "{{secrets.SCREENSHOT_ENCRYPTION_KEY}}"
|
|
}
|
|
}
|
|
}
|