Skip to main content
Glama

lava-mcp

An MCP server that exposes a LAVA instance to agents — letting them query the board farm, submit and manage test jobs, and (in a later phase) open interactive sessions to a board.

It is a thin client over LAVA's REST API (v0.2/v0.3); point it at any LAVA instance.

Install

pip install -e .[dev]

Related MCP server: AutoGen MCP Server

Credentials

The LAVA target + token are resolved per request:

  • Hosted (HTTP) mode — each connecting client sends its own X-Lava-Url and X-Lava-Token headers, so every agent/human acts as their own LAVA user. The server stores no LAVA credentials.

  • Local (stdio) mode — falls back to LAVA_URL / LAVA_TOKEN in the environment (single user).

Run (stdio, local)

export LAVA_URL=https://lava.example.com
export LAVA_TOKEN=<your-api-token>
lava-mcp                                  # or: lava-mcp --read-only

Launch over stdio from your MCP client (claude_desktop_config.json / Claude Code):

{
  "mcpServers": {
    "lava": {
      "command": "lava-mcp",
      "env": { "LAVA_URL": "https://lava.example.com", "LAVA_TOKEN": "..." }
    }
  }
}

For a hosted server, point Claude Code at the HTTP endpoint and pass your LAVA credentials as headers:

claude mcp add --transport http lava https://mcp.example.com/mcp \
  --header "X-Lava-Url: https://lava.example.com" \
  --header "X-Lava-Token: <your-api-token>"

Run as a hosted service (HTTPS via Caddy)

For interactive board sessions the server must be reachable by lab workers, so run it hosted. docker compose brings up the MCP server behind Caddy (automatic HTTPS) and exposes the SSH board-session gateway:

cp .env.example .env      # set LAVA_URL/LAVA_TOKEN/LAVA_MCP_DOMAIN/LAVA_MCP_GATEWAY_HOST
docker compose up -d
  • Agents connect to https://$LAVA_MCP_DOMAIN/mcp (streamable-HTTP transport).

  • In-job containers dial the SSH gateway at $LAVA_MCP_GATEWAY_HOST:2222.

Or run the HTTP transport directly:

lava-mcp --transport streamable-http --host 0.0.0.0 --port 8000 --gateway

Interactive board sessions (gateway)

In hosted mode with --gateway (or LAVA_MCP_GATEWAY_ENABLED=true), the server runs an in-process SSH rendezvous. open_board_session submits a LAVA job that runs a device-attached container; the container dials out (ssh -R) to the gateway, so no inbound access to the worker is needed. Then:

  • run_in_session(session_id, command) runs a command on the board's container (e.g. qdl, fastboot, adb, shell).

  • close_board_session(session_id) cancels the job and frees the board.

The container image + test definition live on the LAVA side (the interactive-board-access branch); the parameter contract is in lava_mcp/jobs.py.

Configuration

Env var

CLI flag

Meaning

LAVA_URL

--url

LAVA base URL (stdio fallback; HTTP clients send X-Lava-Url)

LAVA_TOKEN

--token

API token (stdio fallback; HTTP clients send X-Lava-Token)

LAVA_API_VERSION

--api-version

REST version, default v0.3

LAVA_MCP_READ_ONLY

--read-only

Hide write tools (submit/cancel/resubmit/priority)

LAVA_MCP_TRANSPORT

--transport

stdio (default) or streamable-http

LAVA_MCP_HOST / LAVA_MCP_PORT

--host / --port

HTTP bind (hosted mode)

LAVA_MCP_GATEWAY_ENABLED

--gateway

Enable interactive SSH board-session gateway

LAVA_MCP_GATEWAY_PORT

--gateway-port

SSH gateway port (default 2222)

LAVA_MCP_GATEWAY_ADVERTISE_HOST

--gateway-advertise-host

Host containers dial back to

Tools (v1)

Read/observe: whoami, version, list_devices, get_device, get_device_dictionary, list_device_types, list_workers, list_jobs, get_job, get_job_definition, get_job_logs, get_job_results, get_queue, get_running, get_lab_health, validate_job.

Write (omitted with --read-only): submit_job, cancel_job, resubmit_job, set_job_priority.

Interactive board sessions (hosted gateway mode): open_board_session, run_in_session, close_board_session, list_board_sessions.

Test

pytest

Roadmap

  • The interactive board sessions gateway is implemented here; the matching LAVA container image + test definition (which the in-job container runs) live on the interactive-board-access branch of the LAVA repo and are still in progress.

  • Human shell proxy + interactive PTY through the gateway.

Install Server
A
license - permissive license
B
quality
B
maintenance

Maintenance

Maintainers
Response time
Release cycle
Releases (12mo)
Commit activity

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/mattface/lava-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server