The OpenROAD MCP server - interactive EDA sessions via Model Context Protocol
SaferSkills independently audited openroad-mcp (MCP Server) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
<!-- mcp-name: io.github.the-openroad-project/openroad-mcp -->
A Model Context Protocol (MCP) server that provides tools for interacting with OpenROAD and ORFS (OpenROAD Flow Scripts).
OpenROAD MCP Demo
curl -LsSf https://astral.sh/uv/install.sh | sh| MCP Client | Supported | Transport Mode(s) | Config file |
|---|---|---|---|
| Claude Code | ✅ | STDIO | .claude/settings.json |
| Claude Desktop | ✅ | STDIO | ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) |
| Cursor | ✅ | STDIO | .cursor/mcp.json |
| GitHub Copilot (VS Code) | ✅ | STDIO | .vscode/mcp.json |
| Gemini CLI | ✅ | STDIO | ~/.gemini/settings.json |
| Windsurf | ✅ | STDIO | ~/.codeium/windsurf/mcp_config.json |
| Cline | ✅ | STDIO | VS Code globalStorage (see below) |
| Roo Code | ✅ | STDIO | .roo/mcp.json |
| Continue | ✅ | STDIO | ~/.continue/config.json |
| Zed | ✅ | STDIO | ~/.config/zed/settings.json |
| JetBrains AI Assistant | ✅ | STDIO | Settings UI |
| Amazon Q Developer CLI | ✅ | STDIO | ~/.aws/amazonq/mcp.json |
| Augment Code | ✅ | STDIO | VS Code settings.json |
| Warp | ✅ | STDIO | Settings UI |
| Amp | ✅ | STDIO | CLI-managed |
| Trae | ✅ | STDIO | User config |
| Opencode | ✅ | STDIO | opencode.json |
| Kiro | ✅ | STDIO | Settings UI |
| Kilo Code | ✅ | STDIO | .kilocode/mcp.json |
| Goose | ✅ | STDIO | ~/.config/goose/config.yaml |
| Sourcegraph Cody | ✅ | STDIO | VS Code settings.json |
| OpenAI Codex CLI | ✅ | STDIO | ~/.codex/config.toml |
| PearAI | ✅ | STDIO | ~/pearai/config.json |
| CodeBuddy | ✅ | STDIO | ~/.codebuddy/config.jsonc |
| Hermes Agent | ✅ | STDIO | ~/.hermes/config.yaml |
| GitHub Copilot CLI | ✅ | STDIO | ~/.copilot/mcp-config.json |
| Oh My Pi | ✅ | STDIO | .omp/mcp.json |
| OpenClaw | ✅ | STDIO | ~/.openclaw/openclaw.json |
| AstrBot | ✅ | STDIO | WebUI |
| DeepCode | ✅ | STDIO | deepcode_config.json |
| nanobot | ✅ | STDIO | nanobot.yaml |
| Crush | ✅ | STDIO | .crush.json |
| Reasonix | ✅ | STDIO | reasonix.toml |
| Other MCP clients | ⚠️ | STDIO | Should work with standard STDIO transport |
New to OpenROAD MCP? Check out our Quick Start guide.
For platform-specific setup instructions, see the Cross-Platform Guide.
The basic configuration for all MCP clients:
{
"mcpServers": {
"openroad-mcp": {
"command": "uvx",
"args": [
"--from",
"git+https://github.com/The-OpenROAD-Project/[email protected]",
"openroad-mcp"
]
}
}
}Note: The URL above is pinned to a specific release for supply chain safety. To always track the latest version instead, drop the@v0.5.5suffix:"git+https://github.com/The-OpenROAD-Project/openroad-mcp".
For local development, use:
{
"mcpServers": {
"openroad-mcp": {
"command": "uv",
"args": [
"--directory",
"/path/to/openroad-mcp",
"run",
"openroad-mcp"
]
}
}
}<details> <summary><b>Claude Code</b></summary>
claude mcp add --transport stdio openroad-mcp -- uvx --from git+https://github.com/The-OpenROAD-Project/openroad-mcp openroad-mcpOr add the standard configuration to .claude/settings.json.
</details>
<details> <summary><b>Claude Desktop</b></summary>
Add the standard configuration to:
~/Library/Application Support/Claude/claude_desktop_config.json%APPDATA%\Claude\claude_desktop_config.json</details>
<details> <summary><b>Cursor</b></summary>
Add the standard configuration to .cursor/mcp.json.
</details>
<details> <summary><b>GitHub Copilot (VS Code)</b></summary>
Add to .vscode/mcp.json (VS Code 1.99+). Note the different schema — servers key and "type": "stdio" required:
{
"servers": {
"openroad-mcp": {
"type": "stdio",
"command": "uvx",
"args": [
"--from",
"git+https://github.com/The-OpenROAD-Project/[email protected]",
"openroad-mcp"
]
}
}
}</details>
<details> <summary><b>Gemini CLI</b></summary>
Follow the Gemini MCP install guide, using the standard configuration above.
</details>
<details> <summary><b>Windsurf</b></summary>
Add the standard configuration to ~/.codeium/windsurf/mcp_config.json.
</details>
<details> <summary><b>Cline</b></summary>
Add to the Cline MCP settings file:
~/Library/Application Support/Code/User/globalStorage/saoudrizwan.claude-dev/settings/cline_mcp_settings.json%APPDATA%\Code\User\globalStorage\saoudrizwan.claude-dev\settings\cline_mcp_settings.json~/.config/Code/User/globalStorage/saoudrizwan.claude-dev/settings/cline_mcp_settings.json{
"mcpServers": {
"openroad-mcp": {
"command": "uvx",
"args": [
"--from",
"git+https://github.com/The-OpenROAD-Project/[email protected]",
"openroad-mcp"
],
"disabled": false,
"autoApprove": []
}
}
}</details>
<details> <summary><b>Roo Code</b></summary>
Add to .roo/mcp.json in your project root (or the equivalent user-level settings file via the Roo Code UI):
{
"mcpServers": {
"openroad-mcp": {
"command": "uvx",
"args": [
"--from",
"git+https://github.com/The-OpenROAD-Project/[email protected]",
"openroad-mcp"
],
"disabled": false,
"autoApprove": []
}
}
}</details>
<details> <summary><b>Continue</b></summary>
Add to ~/.continue/config.json:
{
"experimental": {
"modelContextProtocolServers": [
{
"transport": {
"type": "stdio",
"command": "uvx",
"args": [
"--from",
"git+https://github.com/The-OpenROAD-Project/[email protected]",
"openroad-mcp"
]
}
}
]
}
}</details>
<details> <summary><b>Zed</b></summary>
Add to ~/.config/zed/settings.json:
{
"context_servers": {
"openroad-mcp": {
"command": {
"path": "uvx",
"args": [
"--from",
"git+https://github.com/The-OpenROAD-Project/[email protected]",
"openroad-mcp"
]
},
"settings": {}
}
}
}</details>
<details> <summary><b>JetBrains AI Assistant</b></summary>
Open Settings → Tools → AI Assistant → Model Context Protocol (MCP) and add a new server entry using the standard configuration.
</details>
<details> <summary><b>Amazon Q Developer CLI</b></summary>
Add the standard configuration to ~/.aws/amazonq/mcp.json.
</details>
<details> <summary><b>Augment Code</b></summary>
Add to your VS Code settings.json (User or Workspace scope):
{
"augment.advanced": {
"mcpServers": [
{
"name": "openroad-mcp",
"command": "uvx",
"args": [
"--from",
"git+https://github.com/The-OpenROAD-Project/[email protected]",
"openroad-mcp"
]
}
]
}
}</details>
<details> <summary><b>Warp</b></summary>
Open Settings → AI → MCP Servers → Add New MCP Server and enter:
openroad-mcpuvx--from git+https://github.com/The-OpenROAD-Project/openroad-mcp openroad-mcp</details>
<details> <summary><b>Amp</b></summary>
amp mcp add openroad-mcp uvx --from git+https://github.com/The-OpenROAD-Project/openroad-mcp openroad-mcp</details>
<details> <summary><b>Trae</b></summary>
Add the standard configuration to the MCP section of Trae's user settings (accessible via Settings → MCP).
</details>
<details> <summary><b>Opencode</b></summary>
Add to opencode.json in your project root:
{
"mcp": {
"openroad-mcp": {
"type": "local",
"command": [
"uvx",
"--from",
"git+https://github.com/The-OpenROAD-Project/[email protected]",
"openroad-mcp"
],
"enabled": true
}
}
}</details>
<details> <summary><b>Kiro</b></summary>
Open the MCP configuration panel in Kiro and add a new server entry using the standard configuration.
</details>
<details> <summary><b>Kilo Code</b></summary>
Add to .kilocode/mcp.json in your project root:
{
"mcpServers": {
"openroad-mcp": {
"command": "uvx",
"args": [
"--from",
"git+https://github.com/The-OpenROAD-Project/[email protected]",
"openroad-mcp"
],
"alwaysAllow": [],
"disabled": false
}
}
}</details>
<details> <summary><b>Goose</b></summary>
Add to ~/.config/goose/config.yaml:
extensions:
openroad-mcp:
name: openroad-mcp
type: stdio
cmd: uvx
args:
- --from
- git+https://github.com/The-OpenROAD-Project/[email protected]
- openroad-mcp
enabled: true</details>
<details> <summary><b>Sourcegraph Cody</b></summary>
Add to your VS Code settings.json:
{
"openctx.providers": {
"https://openctx.org/npm/@openctx/provider-mcp": {
"transports": [
{
"type": "stdio",
"command": "uvx",
"args": [
"--from",
"git+https://github.com/The-OpenROAD-Project/[email protected]",
"openroad-mcp"
]
}
]
}
}
}</details>
<details> <summary><b>OpenAI Codex CLI</b></summary>
Add to ~/.codex/config.toml (global) or .codex/config.toml (project-scoped):
[[mcp_servers]]
name = "openroad-mcp"
command = "uvx"
args = ["--from", "git+https://github.com/The-OpenROAD-Project/[email protected]", "openroad-mcp"]</details>
<details> <summary><b>PearAI</b></summary>
PearAI uses the same config format as Continue. Add to ~/pearai/config.json:
{
"experimental": {
"modelContextProtocolServers": [
{
"transport": {
"type": "stdio",
"command": "uvx",
"args": [
"--from",
"git+https://github.com/The-OpenROAD-Project/[email protected]",
"openroad-mcp"
]
}
}
]
}
}</details>
<details> <summary><b>CodeBuddy</b></summary>
Add to ~/.codebuddy/config.jsonc (global) or .codebuddy/mcp.jsonc (project-scoped):
{
"mcpServers": {
"openroad-mcp": {
"command": "uvx",
"args": [
"--from",
"git+https://github.com/The-OpenROAD-Project/[email protected]",
"openroad-mcp"
]
}
}
}</details>
<details> <summary><b>Hermes Agent</b></summary>
Add to ~/.hermes/config.yaml:
mcp_servers:
- name: openroad-mcp
transport: stdio
command: uvx
args:
- --from
- git+https://github.com/The-OpenROAD-Project/[email protected]
- openroad-mcp</details>
<details> <summary><b>GitHub Copilot CLI</b></summary>
Add to ~/.copilot/mcp-config.json:
{
"mcpServers": {
"openroad-mcp": {
"type": "stdio",
"command": "uvx",
"args": [
"--from",
"git+https://github.com/The-OpenROAD-Project/[email protected]",
"openroad-mcp"
]
}
}
}Or run /mcp add inside a Copilot CLI session for guided setup.
</details>
<details> <summary><b>Oh My Pi</b></summary>
Add to .omp/mcp.json (project-level) or ~/.omp/agent/mcp.json (global):
{
"mcpServers": {
"openroad-mcp": {
"type": "stdio",
"command": "uvx",
"args": [
"--from",
"git+https://github.com/The-OpenROAD-Project/[email protected]",
"openroad-mcp"
]
}
}
}</details>
<details> <summary><b>OpenClaw</b></summary>
Add to ~/.openclaw/openclaw.json:
{
"mcp": {
"servers": {
"openroad-mcp": {
"command": "uvx",
"args": [
"--from",
"git+https://github.com/The-OpenROAD-Project/[email protected]",
"openroad-mcp"
],
"enabled": true
}
}
}
}Or run openclaw mcp add for guided setup.
</details>
<details> <summary><b>AstrBot</b></summary>
Navigate to the AstrBot WebUI → MCP section → Add Server, and enter:
{
"command": "uvx",
"args": ["--from", "git+https://github.com/The-OpenROAD-Project/[email protected]", "openroad-mcp"]
}Requires uv installed on the host running AstrBot.
</details>
<details> <summary><b>DeepCode</b></summary>
Add to deepcode_config.json in your project root:
{
"tools": {
"mcpServers": {
"openroad-mcp": {
"type": "stdio",
"command": "uvx",
"args": [
"--from",
"git+https://github.com/The-OpenROAD-Project/[email protected]",
"openroad-mcp"
]
}
}
}
}</details>
<details> <summary><b>nanobot</b></summary>
Add to nanobot.yaml in your project root:
mcpServers:
openroad-mcp:
command: uvx
args:
- --from
- git+https://github.com/The-OpenROAD-Project/[email protected]
- openroad-mcp</details>
<details> <summary><b>Crush</b></summary>
Add to .crush.json (project-local) or ~/.config/crush/crush.json (global):
{
"mcp": {
"openroad-mcp": {
"type": "stdio",
"command": "uvx",
"args": [
"--from",
"git+https://github.com/The-OpenROAD-Project/[email protected]",
"openroad-mcp"
]
}
}
}</details>
<details> <summary><b>Reasonix</b></summary>
Add to reasonix.toml (project root) or ~/.config/reasonix/config.toml (global):
[[plugins]]
name = "openroad-mcp"
command = "uvx"
args = ["--from", "git+https://github.com/The-OpenROAD-Project/[email protected]", "openroad-mcp"]Alternatively, use the standard .mcp.json format — Reasonix auto-discovers it.
</details>
<details> <summary><b>Docker</b></summary>
🚧 Work in Progress: Docker deployment via GitHub Container Registry (GHCR) is coming soon.
</details>
<details> <summary><b>MCP Registry</b></summary>
Once published to the MCP Registry, clients can discover and install directly:
uvx openroad-mcp</details>
After configuration, restart your MCP client and verify the MCP server is running:
Once configured, the following tools are available:
interactive_openroad - Execute commands in an interactive OpenROAD sessioncreate_interactive_session - Create a new OpenROAD sessionlist_interactive_sessions - List all active sessionsterminate_interactive_session - Terminate a sessioninspect_interactive_session - Get detailed session informationget_session_history - View command historyget_session_metrics - Get performance metricslist_report_images - List ORFS report directory imagesread_report_image - Read a ORFS report imageIf the MCP server fails to start:
uv is installed and available in your PATHmake sync# Install environment
uv venv
make sync# Run core tests (recommended - excludes PTY tests that may fail in some environments)
make test
# Run interactive PTY tests separately (may have file descriptor issues in CI)
make test-interactive
# Run all tests including potentially problematic PTY tests
make test-all
# Format and check code
make format
make checkNote: Interactive PTY tests are separated because they may experience file descriptor issues in certain environments (containers, CI systems). The core functionality tests (make test) provide comprehensive coverage of the MCP integration without these environment-specific issues.
# Launch MCP inspector for debugging
# For STDIO transport: Set Command as "uv", Arguments as "run openroad-mcp"
make inspectWe welcome contributions to OpenROAD MCP! Please see CONTRIBUTING.md for detailed instructions on how to get started, our development workflow, and code standards.
If you encounter any issues or have questions, please open an issue on our GitHub issue tracker.
BSD 3-Clause License. See LICENSE file.
Built with ❤️ by Precision Innovations
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.