🎩 You're Invited:Meet the Socket team at Black Hat in Las Vegas, August 3-6.RSVP
Sign In

openroad-mcp

Package Overview
Dependencies
Maintainers
2
Versions
22
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

openroad-mcp

The OpenROAD MCP server

pipPyPI
Version
0.6.1
Weekly downloads
732
Maintainers
2

OpenROAD MCP Server (Python distribution)

Deprecated. This Python/PyPI distribution is no longer maintained and this is its final release. Please switch to the npm distribution: npx -y openroad-mcp. See the main project README for setup instructions.

A Model Context Protocol (MCP) server that provides tools for interacting with OpenROAD and ORFS (OpenROAD Flow Scripts).

This is the Python distribution, published to PyPI and runnable with uvx. It is one of two interchangeable distributions of openroad-mcp — the other is the Node.js distribution published to npm and runnable with npx. Both expose identical tools and behavior; pick the one that matches your installed runtime.

For the full feature list, client support matrix, configuration examples, and architecture docs, see the main project README and the Quick Start guide.

Requirements

  • OpenROAD installed and available in your PATH (installation guide)
  • OpenROAD-flow-scripts (ORFS) for complete RTL-to-GDS flows (optional but recommended)
  • Python 3.13+ and the uv package manager
    • Install uv: curl -LsSf https://astral.sh/uv/install.sh | sh

Configuration (uvx) — deprecated

{
  "mcpServers": {
    "openroad-mcp": {
      "command": "uvx",
      "args": [
        "--from",
        "git+https://github.com/The-OpenROAD-Project/openroad-mcp@v0.6.1#subdirectory=python",
        "openroad-mcp"
      ]
    }
  }
}

The pinned @v0.5.5 suffix is recommended for supply-chain safety; drop it to track the latest release.

Local development

This package lives under python/ in the repository. From the repo root:

cd python
uv sync --all-extras --inexact
uv run openroad-mcp --help

Common tasks are wired through the root Makefile (make check, make test, make test-tools, ...). See CONTRIBUTING.md for the full workflow.

FAQs

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts