Skip to main content

Verilog EDA 工具的 MCP/CLI 客户端 - 一键安装,开箱即用

Project description

SuperRTL

Verilog EDA 工具的 MCP/CLI 客户端


概述

SuperRTL 将 Verilog EDA 工具链封装为标准 MCP 接口,支持:

  • MCP Server 模式:被 Claude Desktop、Cursor、Hermes Agent 等调用
  • CLI 命令行模式:独立使用,无需 MCP Host
  • 自动安装工具:首次运行时自动下载 EDA 工具,无需手动配置

核心功能

项目管理

命令 功能
superrtl init 初始化项目配置 (.superrtl.yaml)
superrtl build 根据配置编译 (自动依赖排序)
superrtl test 运行所有测试平台
superrtl graph 显示模块依赖图
superrtl watch 监视文件变化,自动编译

MCP Tools

Tool 命令 功能 依赖
compile_verilog superrtl compile 编译 (支持多文件) Icarus Verilog
simulate_verilog superrtl simulate 仿真 (支持多文件) Icarus Verilog
lint_verilog superrtl lint Lint 检查 Verilator
synthesize_verilog superrtl synthesize 综合检查 Yosys
generate_testbench superrtl testbench 生成测试平台 内置
analyze_waveform superrtl waveform 波形分析/查看 内置

MCP Resources

Resource 功能
skills://{name} 设计模式文档 (11 个)
templates://{name} 代码模板 (10 个)

快速开始

安装 SuperRTL

# 从源码安装
cd SuperRTL
pip install -e .

# 或从 PyPI (发布后)
pip install superrtl

安装 EDA 工具

方式一:自动安装(推荐)

# 自动下载并安装 EDA 工具
superrtl setup

这会自动下载 OSS CAD Suite 并安装到项目目录 .superrtl/

方式二:手动安装

# Ubuntu/Debian
sudo apt-get install iverilog yosys verilator

# macOS
brew install icarus-verilog yosys verilator

# Windows (Scoop)
scoop install iverilog yosys verilator

验证安装

# 检查工具状态
superrtl check-tools

输出示例:

EDA 工具状态

  + iverilog: Icarus Verilog (编译仿真)
  + vvp: Icarus Verilog (仿真器)
  + yosys: Yosys (综合检查)
  + verilator: Verilator (Lint)

所有工具已安装

使用 CLI - 项目模式

# 初始化项目
superrtl init --name my_project --top top_module

# 编译 (自动依赖排序)
superrtl build

# 运行所有测试
superrtl test

# 查看模块依赖图
superrtl graph

# 监视文件变化
superrtl watch

使用 CLI - 单文件模式

# 编译
superrtl compile design.v

# 仿真
superrtl simulate testbench.v design.v

# Lint
superrtl lint design.v

# 综合
superrtl synthesize design.v --top counter

# 生成 Testbench
superrtl testbench design.v

# 波形分析
superrtl waveform analyze simulation.vcd

# 波形查看器
superrtl waveform view simulation.vcd

使用 CLI - 多文件模式

# 多文件编译
superrtl compile src/*.v
superrtl compile src/

# 多文件仿真
superrtl simulate tb.v src/*.v
superrtl simulate tb.v alu.v counter.v

使用 MCP Server

# 启动 MCP Server
superrtl mcp

# 指定传输方式
superrtl mcp --transport sse --port 8080

配置 MCP Host

Claude Desktop (~/.claude/claude_desktop_config.json):

{
  "mcpServers": {
    "superrtl": {
      "command": "superrtl",
      "args": ["mcp"]
    }
  }
}

Cursor (.cursor/mcp.json):

{
  "mcpServers": {
    "superrtl": {
      "command": "superrtl",
      "args": ["mcp"]
    }
  }
}

Docker 支持

构建镜像

# 构建 Docker 镜像
docker build -t superrtl .

使用 Docker

# 启动 MCP Server
docker run -it superrtl

# 挂载目录使用 CLI
docker run -v $(pwd):/workspace -it superrtl compile /workspace/design.v

# 交互式使用
docker run -it -v $(pwd):/workspace superrtl bash

CLI 命令

命令 说明
superrtl setup 安装 EDA 工具
superrtl check-tools 检查工具状态
superrtl compile <file> 编译 Verilog 代码
superrtl simulate <design> <testbench> 运行仿真
superrtl lint <file> Lint 检查
superrtl synthesize <file> 综合检查
superrtl testbench <file> 生成 Testbench
superrtl waveform <file> 分析波形
superrtl mcp 启动 MCP Server
superrtl uninstall 卸载 EDA 工具

技术栈

组件 选型 版本
语言 Python 3.10+
MCP 协议 mcp >=1.0.0
CLI 框架 click >=8.0.0
终端美化 rich >=13.0.0
EDA 工具 OSS CAD Suite 2026.06

项目结构

SuperRTL/
├── src/superrtl/
│   ├── __init__.py
│   ├── server.py              # MCP Server 主入口
│   ├── cli.py                 # CLI 入口
│   ├── setup.py               # EDA 工具安装管理
│   ├── runtime.py             # 运行时环境管理
│   │
│   ├── tools/                 # MCP Tools
│   │   ├── compile.py
│   │   ├── simulate.py
│   │   ├── lint.py
│   │   ├── synthesize.py
│   │   ├── testbench.py
│   │   └── waveform.py
│   │
│   ├── resources/             # MCP Resources
│   │   ├── skills.py
│   │   └── templates.py
│   │
│   └── utils/
│       ├── __init__.py        # run_command
│       └── verilog.py
│
├── shared/                    # 共享资源
│   ├── skills/                # 设计模式文档
│   └── templates/             # 代码模板
│
├── .superrtl/                 # EDA 工具安装目录(自动生成)
│   └── oss-cad-suite/
│       ├── bin/
│       └── lib/
│
├── Dockerfile                 # Docker 镜像
├── tests/
├── examples/
└── pyproject.toml

工作原理

自动安装

  1. 运行 superrtl setup
  2. 检测操作系统和架构
  3. 从 GitHub 下载对应的 OSS CAD Suite
  4. 解压到 .superrtl/oss-cad-suite/
  5. 运行时自动添加到 PATH

运行时

  1. 工具调用时自动检测本地安装
  2. 优先使用 .superrtl/oss-cad-suite/bin/ 中的工具
  3. 回退到系统 PATH
  4. 自动处理 Windows DLL 依赖问题

示例

CLI 示例

# 编译并仿真
$ superrtl compile counter.v
[OK] 编译成功: counter
   耗时: 0.058s

$ superrtl simulate counter.v counter_tb.v
[OK] 仿真通过
   耗时: 0.456s
   输出: PASS

MCP 调用示例

// tools/call
{
  "name": "compile_verilog",
  "arguments": {
    "code": "module counter(...); ...",
    "top_module": "counter"
  }
}

// 返回
{
  "content": [
    {
      "type": "text",
      "text": "{\"success\": true, \"message\": \"编译成功\"}"
    }
  ]
}

许可证

MIT License


致谢

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

superrtl-0.3.0.tar.gz (60.3 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

superrtl-0.3.0-py3-none-any.whl (69.3 kB view details)

Uploaded Python 3

File details

Details for the file superrtl-0.3.0.tar.gz.

File metadata

  • Download URL: superrtl-0.3.0.tar.gz
  • Upload date:
  • Size: 60.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for superrtl-0.3.0.tar.gz
Algorithm Hash digest
SHA256 067f946dee09b00694fb48afb3c7bd6ce746caad8268899d9829899b3fda8c81
MD5 7f3f7630826c38ac79ff950a29578dd8
BLAKE2b-256 703dbb3d17bd7d36a7a40324a320101701fb7f484b8f1604b5d882ec49739895

See more details on using hashes here.

Provenance

The following attestation bundles were made for superrtl-0.3.0.tar.gz:

Publisher: release.yml on egg-rolls/SuperRTL

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file superrtl-0.3.0-py3-none-any.whl.

File metadata

  • Download URL: superrtl-0.3.0-py3-none-any.whl
  • Upload date:
  • Size: 69.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for superrtl-0.3.0-py3-none-any.whl
Algorithm Hash digest
SHA256 57c13a941287ba302e293f799d7ccdbbf8884d2cba6b65e43352ad8da4b55057
MD5 002c52cf11b383e4f0154b2e47ea7ce5
BLAKE2b-256 7d5393a27824d8877455f6638ae46ef63bbade82113d34a9f8b6522f042c45b1

See more details on using hashes here.

Provenance

The following attestation bundles were made for superrtl-0.3.0-py3-none-any.whl:

Publisher: release.yml on egg-rolls/SuperRTL

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page