# io.github.luarss/openroad-mcp (oci · ghcr.io/luarss/openroad-mcp:0.5.3)

The OpenROAD MCP server - interactive EDA sessions via Model Context Protocol

- Trust score: 25/100 (low)
- Change this week: −1
- Registry status: active
- Liveness: live
- Owner verified: no
- Last scored: 2026-08-03

## Components

- oci · `ghcr.io/luarss/openroad-mcp:0.5.3`: 25/100 (this document), [markdown](https://verifymcp.io/servers/luarss-openroad-mcp/ghcr-io-luarss-openroad-mcp-0-5-3.md), [page](https://verifymcp.io/servers/luarss-openroad-mcp/ghcr-io-luarss-openroad-mcp-0-5-3)
- pypi · `openroad-mcp`: 5/100, [markdown](https://verifymcp.io/servers/luarss-openroad-mcp/openroad-mcp.md), [page](https://verifymcp.io/servers/luarss-openroad-mcp/openroad-mcp)

## Channel facts

- Registry: `oci`
- Package: `ghcr.io/luarss/openroad-mcp:0.5.3`
- Transport: `stdio`

## Trust breakdown

How this component scores in each security and reliability category. Every signal is checked automatically from public evidence about the published package, including repeated runs of it in an isolated sandbox, and we only credit what we can confirm. Scores are 0–100 per category. Scoring method: https://verifymcp.io/docs/scoring (what has changed: https://verifymcp.io/docs/scoring/changelog)

Scored 2026-08-03.

- **Supply Chain Security**: 0/100
  - Malware scan not yet available for this package.
  - CVE data not yet available for this package.
  - Install-script risk not yet assessed.
  - Dependency-health data not yet available.
- **Provenance & Transparency**: 6/100
  - Repository check failed: the declared repository URL redirects; it must resolve directly.
  - Provenance check failed: no build-provenance attestation is published.
  - License check failed: no license is declared.
  - Actively maintained (last published 58 days ago).
  - Disclosure check failed: no security disclosure policy was found in the source repository.
- **Schema Quality & AI Usability**: 57/100
  - AI-judged instruction clarity (fair).
  - Tool/resource definitions use about 444 tokens (~44/item across 10 items; 10 tools + 0 resources), lean.
  - Usage-examples check failed: none of the tools include examples.
- **Stability & Change Management**: 0/100
  - Stability not yet verified: not enough scan history yet (needs a 30-day window).
- **Tool Coverage**: 71/100
  - 100% of tools have a non-trivial description (not blank, and not just the tool's name).
  - 0% of tool parameters carry a description.
  - Structured output schemas are declared (100% of tools); any adoption earns full credit.
- **Capabilities**: 100/100
  - Implements a supported MCP spec version (2025-11-25); the latest is 2026-07-28.

**Unverified: 2 categories.** Categories scored 0 because we could not verify them: a data source with nothing on this package, evidence we could not reach, or a check we could not run. We only credit what we can confirm.

## Install

### Claude

```bash
claude mcp add luarss-openroad-mcp -- docker run --rm -i ghcr.io/luarss/openroad-mcp:0.5.3
```

### Codex

```bash
codex mcp add luarss-openroad-mcp -- docker run --rm -i ghcr.io/luarss/openroad-mcp:0.5.3
```

### opencode

```json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "luarss-openroad-mcp": {
      "type": "local",
      "command": [
        "docker",
        "run",
        "--rm",
        "-i",
        "ghcr.io/luarss/openroad-mcp:0.5.3"
      ],
      "enabled": true
    }
  }
}
```

### Hermes

```yaml
mcp_servers:
  luarss-openroad-mcp:
    command: "docker"
    args: ["run", "--rm", "-i", "ghcr.io/luarss/openroad-mcp:0.5.3"]
```

### Other

```json
{
  "mcpServers": {
    "luarss-openroad-mcp": {
      "command": "docker",
      "args": [
        "run",
        "--rm",
        "-i",
        "ghcr.io/luarss/openroad-mcp:0.5.3"
      ]
    }
  }
}
```

## Changelog

Every change recorded for this component, newest first. Days that predate change tracking, or that we cannot explain, say so: "we were watching and nothing happened" and "we were not watching" are different claims.

### 2026-07-31 (score 25, −1)

- [functional] We updated how we score, so this day's move reflects our rubric, not a change to the server

### 2026-07-27 (score 26, +25)

- [functional improvement] Tool coverage: unverified → 100
- [functional] First check of Schema quality: fair
- [functional] First check of Schema quality: fail
- [functional] First check of Tool coverage: 0
- [functional] First check of Tool coverage: 100
- [functional] First check of Schema quality: pass

### 2026-07-26 (score 1)

First indexed and scored.

- [functional] We updated how we score, so this day's move reflects our rubric, not a change to the server

## MCP tools (10)

### `interactive_openroad_query` (~81 tokens)

Execute a read-only OpenROAD command (report_*, get_*, check_*, sta, help, etc.).

Use this for querying design state, generating reports, and inspecting timing.
Commands that modify design state are blocked — use interactive_openroad_exec instead.

Input parameters:

- `command` (string, required)
- `session_id`
- `timeout_ms`

Output parameters:

- `result` (string)

### `interactive_openroad_exec` (~85 tokens)

Execute a state-modifying OpenROAD command (set_*, create_*, read_*, write_*, flow commands).

Use this for loading designs, running placement/routing, applying constraints,
and writing output files. Read-only commands are blocked — use interactive_openroad_query instead.

Input parameters:

- `command` (string, required)
- `session_id`
- `timeout_ms`

Output parameters:

- `result` (string)

### `list_interactive_sessions` (~18 tokens)

List all active interactive OpenROAD sessions.

Output parameters:

- `result` (string)

### `create_interactive_session` (~39 tokens)

Create a new interactive OpenROAD session.

Input parameters:

- `command`
- `cwd`
- `env`
- `session_id`

Output parameters:

- `result` (string)

### `terminate_interactive_session` (~33 tokens)

Terminate an interactive OpenROAD session.

Input parameters:

- `force` (boolean)
- `session_id` (string, required)

Output parameters:

- `result` (string)

### `inspect_interactive_session` (~29 tokens)

Get detailed inspection data for an interactive OpenROAD session.

Input parameters:

- `session_id` (string, required)

Output parameters:

- `result` (string)

### `get_session_history` (~37 tokens)

Get command history for an interactive OpenROAD session.

Input parameters:

- `limit`
- `search`
- `session_id` (string, required)

Output parameters:

- `result` (string)

### `get_session_metrics` (~19 tokens)

Get comprehensive metrics for all interactive OpenROAD sessions.

Output parameters:

- `result` (string)

### `list_report_images` (~50 tokens)

List available report images from ORFS runs organized by stage.

Input parameters:

- `design` (string, required)
- `platform` (string, required)
- `run_slug` (string, required)
- `stage` (string)

Output parameters:

- `result` (string)

### `read_report_image` (~53 tokens)

Read a report image and return base64-encoded data with metadata.

Input parameters:

- `design` (string, required)
- `image_name` (string, required)
- `platform` (string, required)
- `run_slug` (string, required)

Output parameters:

- `result` (string)

## Diagnostics

Captured diagnostic sections: Provenance. The full working is on the page: https://verifymcp.io/servers/luarss-openroad-mcp/ghcr-io-luarss-openroad-mcp-0-5-3#diagnostics

## Score history

- 2026-08-03: 25
- 2026-08-02: 25
- 2026-08-01: 25
- 2026-07-31: 25
- 2026-07-30: 26
- 2026-07-29: 26
- 2026-07-28: 26
- 2026-07-27: 26
- 2026-07-26: 1

## Links

- Changelog RSS feed: https://verifymcp.io/servers/luarss-openroad-mcp/ghcr-io-luarss-openroad-mcp-0-5-3/changelog.xml
- Changelog JSON feed: https://verifymcp.io/servers/luarss-openroad-mcp/ghcr-io-luarss-openroad-mcp-0-5-3/changelog.json
- HTML version of this page: https://verifymcp.io/servers/luarss-openroad-mcp/ghcr-io-luarss-openroad-mcp-0-5-3
