Elitea (Alita MCP Client Configuration)

Elitea supports Mobitru MCP servers natively starting from version 1.5 and uses the Alita MCP Client for integration.
Unlike VS Code or Cursor, Elitea uses a persistent configuration file and supports stateful MCP sessions.

Step 1 – Install

1. Follow the official Elitea MCP setup guide: https://elitea.ai/docs/getting-started/configure-and-use-mcp/
2. Install or update the Alita MCP Client (bundled with Elitea v1.5+).

Step 1.1 – Configure /alita-mcp-client/config.json

{
  "deployment_url": "https://next.elitea.ai",
  "auth_token": "elitea_auth_token",
  "host": "0.0.0.0",
  "port": 8000,
  "timeout": 120,
  "servers": {
    "mcp-server-mobile": {
      "type": "stdio",
      "command": "npx",
      "args": ["-y", "mobitru-mcp-server@latest", "mobile"],
      "env": {
        "DEVICE_FARM_BASE_URL": "app.mobitru.com",
        "DEVICE_FARM_BROWSER_HUB_BASE_URL": "browserhub-us.com",
        "DEVICE_FARM_API_KEY": "mobitru_ak_***",
        "DEVICE_FARM_SLUG": "epm-tstf"
      },
      "stateful": true
    },
    "mcp-server-playwright": {
      "command": "npx",
      "args": ["-y", "mobitru-mcp-server@latest", "playwright"],
      "env": {
        "DEVICE_FARM_BASE_URL": "app.mobitru.com",
        "DEVICE_FARM_BROWSER_HUB_BASE_URL": " browserhub-us.com ",
        "DEVICE_FARM_API_KEY": "<ACCESS_KEY>",
        "DEVICE_FARM_SLUG": "<TEAM_CODE>"
      },
      "stateful": true
    }
  },
  "project_id": "your_project_id"
}

exclamation, warning, alert-40026.jpg
Notes:
Keep “stateful”: true for persistent device and browser sessions.
Increase “timeout” to 120 for stable communication.
Both servers can run in parallel and share the same credentials.

Scroll to Top