Odel
OpenROAD MCP

OpenROAD MCP

Local
@the-openroad-project15TypeScriptBSD-3-ClauseUpdated 4 days ago

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

Runs locally over stdio

This server isn't hosted — your MCP client launches it from a package registry. Use one of the commands below, or drop the config into your client (e.g. Claude Desktop).

npmopenroad-mcpv1.1.0

Run

npx -y openroad-mcp

MCP client config

{
  "mcpServers": {
    "openroad-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "openroad-mcp"
      ]
    }
  }
}
Dockerghcr.io/the-openroad-project/openroad-mcp:1.1.0

Run

docker run -i --rm ghcr.io/the-openroad-project/openroad-mcp:1.1.0

MCP client config

{
  "mcpServers": {
    "openroad-mcp": {
      "command": "docker",
      "args": [
        "run",
        "-i",
        "--rm",
        "ghcr.io/the-openroad-project/openroad-mcp:1.1.0"
      ]
    }
  }
}