RTL Lint MCP for VS Code
io.github.jaspresi/rtl-lint-mcp
Lint Verilog and SystemVerilog files and projects with structured diagnostics.
client:VS Code
transport:stdio
runtime:pypi
Install RTL Lint MCP in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "rtl-lint-allowed-roots",
"description": "RTL_LINT_ALLOWED_ROOTS",
"password": true
}
],
"servers": {
"rtl-lint-mcp": {
"type": "stdio",
"command": "uvx",
"args": [
"rtl-lint-mcp"
],
"env": {
"RTL_LINT_ALLOWED_ROOTS": "${input:rtl-lint-allowed-roots}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs