lava-mcp
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@lava-mcplist devices available in the board farm"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
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-UrlandX-Lava-Tokenheaders, 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_TOKENin 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-onlyLaunch 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 -dAgents 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 --gatewayInteractive 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 base URL (stdio fallback; HTTP clients send |
|
| API token (stdio fallback; HTTP clients send |
|
| REST version, default |
|
| Hide write tools (submit/cancel/resubmit/priority) |
|
|
|
|
| HTTP bind (hosted mode) |
|
| Enable interactive SSH board-session gateway |
|
| SSH gateway port (default 2222) |
|
| 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
pytestRoadmap
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-accessbranch of the LAVA repo and are still in progress.Human shell proxy + interactive PTY through the gateway.
Maintenance
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