AgentHubAgentHub

devilge

MCP ServerMCP Registry官方收录

io.github.Yercko/devilge · v0.2.3

Android/KMM MCP server: logcat, ADB device control, Compose previews, network, Maestro flows.

概览

devilge 是一个MCP Server,收录自 官方 MCP Registry。支持 stdio 传输。本页提供 Cursor、Claude Code 等客户端的安装配置片段。

安装

选择你的平台查看安装方式

{
  "mcpServers": {
    "devilge": {
      "command": "npx",
      "args": [
        "-y",
        "devilge"
      ],
      "env": {
        "DEVILGE_ANDROID_PROJECT_ROOT": "<DEVILGE_ANDROID_PROJECT_ROOT>"
      }
    }
  }
}

环境变量

DEVILGE_ANDROID_PROJECT_ROOT必填

Absolute path to the Android/KMM project root that devilge inspects (Gradle modules, source files, build outputs).

DEVILGE_OUTPUTS_ROOT可选

Directory where devilge writes screenshots and UI dumps. Defaults to <projectRoot>/.devilge-outputs/.

DEVILGE_DEFAULT_DEVICE_SERIAL可选

Default ADB serial used when a tool does not specify one. Useful when several devices/emulators are attached.

DEVILGE_FLOWS_ROOT可选

Directory containing Maestro YAML flows. Defaults to <projectRoot>/devilge-flows/.

DEVILGE_MAESTRO_BIN_PATH可选

Absolute path to the Maestro binary. If unset, devilge resolves it from PATH; if absent, Maestro tools degrade gracefully.

DEVILGE_ALLOW_FLOW_SCRIPTS可选

Set to 'true' to allow Maestro flows containing 'runScript:' blocks. Default is false; flows with scripts are rejected.

DEVILGE_HTTP_LOG_TAGS可选

Comma-separated logcat tags scanned for HTTP traffic. Defaults to 'HttpClient,OkHttp' (covers Ktor + OkHttp/Retrofit).

DEVILGE_HTTP_LOG_FORMAT可选

HTTP log parser to use: 'auto' (default), 'ktor', or 'okhttp'.

相关资源

统一 Manifest

{
  "id": "io.github.Yercko/devilge",
  "type": "mcp-server",
  "version": "0.2.3",
  "displayName": "devilge",
  "description": "Android/KMM MCP server: logcat, ADB device control, Compose previews, network, Maestro flows.",
  "repository": {
    "url": "https://github.com/Yercko/devilge",
    "source": "github"
  },
  "distribution": {
    "packages": [
      {
        "registryType": "npm",
        "identifier": "devilge",
        "version": "0.2.3",
        "transport": "stdio",
        "environmentVariables": [
          {
            "name": "DEVILGE_ANDROID_PROJECT_ROOT",
            "description": "Absolute path to the Android/KMM project root that devilge inspects (Gradle modules, source files, build outputs).",
            "isRequired": true
          },
          {
            "name": "DEVILGE_OUTPUTS_ROOT",
            "description": "Directory where devilge writes screenshots and UI dumps. Defaults to <projectRoot>/.devilge-outputs/."
          },
          {
            "name": "DEVILGE_DEFAULT_DEVICE_SERIAL",
            "description": "Default ADB serial used when a tool does not specify one. Useful when several devices/emulators are attached."
          },
          {
            "name": "DEVILGE_FLOWS_ROOT",
            "description": "Directory containing Maestro YAML flows. Defaults to <projectRoot>/devilge-flows/."
          },
          {
            "name": "DEVILGE_MAESTRO_BIN_PATH",
            "description": "Absolute path to the Maestro binary. If unset, devilge resolves it from PATH; if absent, Maestro tools degrade gracefully."
          },
          {
            "name": "DEVILGE_ALLOW_FLOW_SCRIPTS",
            "description": "Set to 'true' to allow Maestro flows containing 'runScript:' blocks. Default is false; flows with scripts are rejected."
          },
          {
            "name": "DEVILGE_HTTP_LOG_TAGS",
            "description": "Comma-separated logcat tags scanned for HTTP traffic. Defaults to 'HttpClient,OkHttp' (covers Ktor + OkHttp/Retrofit)."
          },
          {
            "name": "DEVILGE_HTTP_LOG_FORMAT",
            "description": "HTTP log parser to use: 'auto' (default), 'ktor', or 'okhttp'."
          }
        ]
      }
    ],
    "remotes": []
  },
  "dependencies": [],
  "installTargets": [
    "claude-code",
    "claude-desktop",
    "cursor",
    "vscode"
  ],
  "keywords": [],
  "provenance": {
    "origin": "official-mcp-registry",
    "originalId": "io.github.Yercko/devilge",
    "originalUrl": "https://registry.modelcontextprotocol.io/v0.1/servers/io.github.Yercko%2Fdevilge/versions/latest",
    "isOfficial": true,
    "status": "active"
  }
}
devilge — MCP Server 安装与配置 · AgentHub