hw-verify-mcp
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@hw-verify-mcpIs my 8-bit tag comparator constant-time?"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
hw-verify-mcp
Ask Claude "is this Verilog constant-time?" and get a formal answer with the leaking signals named — not a guess.
▶ Try it in your browser — paste Verilog, get a formal constant-time verdict with the leaking signals named. No install, nothing uploaded.
Why this exists
An LLM asked to write constant-time RTL will produce something plausible. Plausible is exactly the failure mode: early-exit comparisons and data-dependent loop bounds look fine. The model has no way to check, and neither does the person reading the diff.
This server gives the agent a checker it cannot argue with. The loop is:
the agent writes RTL;
the server refuses it and names the secrets that reach the completion signal;
the agent applies the suggested repair;
the server confirms — or refuses again.
The agent cannot declare success. Every refusal carries a next_step telling it what
to change, and every tool description says a self-asserted verdict does not count. That
constraint is the product: it makes the checker's refusal semantics the grammar the agent
learns to think in.
Related MCP server: EDA Tools MCP Server
Install
Not yet on PyPI. Install from a checkout:
git clone https://github.com/nickharris808/hw-verify-mcp.git && cd hw-verify-mcp
pip install .This pulls in ctbench, ct-mask, and patchproof, which do the actual analysis.
30-second quickstart
Add to your Claude Desktop config (claude_desktop_config.json):
{
"mcpServers": {
"hw-verify": {
"command": "hw-verify-mcp"
}
}
}Then ask: "Write me a constant-time 8-bit tag comparator, and check it with hw-verify."
Verify the server is wired up before you trust the agent's answers:
$ hw-verify-mcp --version 2>/dev/null; python -c "
from hwverify.server import TOOLS
from hwverify.tools import AVAILABILITY
print(len(TOOLS), 'tools'); print(AVAILABILITY)"
12 tools
{'ctbench': True, 'ct-mask': True, 'patchproof': True}If any backend reports False, the tools that need it return a clear error rather than a
wrong answer.
Worked example — the loop, verbatim
The agent writes the obvious early-exit comparator and calls check_constant_time:
{
"verdict": "LEAKY",
"observation": "done",
"reaching_secrets": ["x", "y"],
"cone_size": 9,
"model": "Syntactic fan-in cone of the observation signal, including every enclosing if/case guard. Over-approximate: CONSTANT_TIME is conservative.",
"next_step": "The completion signal depends on x, y. Make the completion condition a function of a data-oblivious counter rather than of operand values: run the loop a fixed number of cycles and drop any early-exit branch. Then call this tool again — a verdict you assert yourself does not count."
}The agent replaces the early exit with a fixed counter and re-submits:
{
"verdict": "CONSTANT_TIME",
"reaching_secrets": [],
"next_step": "No secret reaches the completion signal. Note this covers completion timing only, not power, EM, or cache channels."
}That exact sequence is a test (test_agent_loop_refuse_fix_confirm), so the loop is
verified rather than illustrated.
The tools
Tool | What it does |
| CONSTANT_TIME or LEAKY for a Verilog module, with the reaching secrets named |
| just the localisation: which secrets reach the completion signal, and the cone size |
| the ctbench matched-pair corpus, with expected verdicts |
| the Verilog source of one fixture, so the agent can reason about it |
| grade a set of verdicts; unsound is reported separately from imprecise |
| run the bundled baseline over the whole corpus |
| first-order masking verification of a gadget, by name or as a JSON netlist |
| the masking corpus, and the netlist format for your own |
| does a bounds-check repair eliminate every violating input? |
| the modelled defect classes, and what a COMPLETE verdict excludes |
| re-check an elimination certificate using integer arithmetic, no solver |
| not available — see below |
Secrets are never inferred
check_constant_time refuses to guess which inputs are sensitive:
{ "error": "no secrets declared. Secrets are a specification choice and are never inferred: pass the input names that carry sensitive values." }Guessing here would be worse than useless — it would produce confident verdicts about the wrong property.
Errors are data, not faults
A refusal is a normal outcome. Unknown tools, bad arguments, and malformed netlists all
come back as {"error": ...} rather than as transport failures, because an agent recovers
from a JSON error and cannot recover from a broken connection.
Honest scope
Everything the server inherits from its three backends, it also inherits the limits of:
Constant-time verdicts cover completion timing against declared secrets — not power, EM, cache, or microarchitectural channels. The checker is a syntactic over-approximation, so
CONSTANT_TIMEis conservative andLEAKYmay be pessimistic.Masking is glitch-free, first-order (
d=1), 2-share probing. The report separates mean-invariance from whole-distribution invariance and says which was established.Patch completeness is reachability in modelled bit semantics — not an RCE claim — and
list_defect_classesreturns the shapes deliberately outside the model.
prove_confidential
The tool is in the list, and calling it tells you why:
Every tool in this server analyses a design you supply in full. Proving a property to a third party who never receives the design is a different problem: it needs the result bound to a commitment of a design that stays hidden. That capability is commercial and is not part of this package.
It is listed rather than omitted deliberately. An agent that discovers the boundary is more useful than one that silently never learns it exists.
Development
pip install -e . && pytest tests -q && ruff check .25 tests: the tool functions directly, one real MCP session over the in-memory transport,
and one that drives the installed hw-verify-mcp binary over stdio JSON-RPC (skipped
if the package is not on PATH). A further test asserts mcp-manifest.json lists exactly
the tools the server exposes, so the manifest cannot drift.
Note for anyone writing their own client: keep stdin open. Closing it immediately after writing makes the server shut down before later replies are flushed — that is correct stdio behaviour, and it will look like a hang or a dropped response if you batch-write.
Part of the hw-verify toolkit
Five open tools, a dataset, and a browser demo for proving security properties of hardware and bounds checks. They share one boundary: everything open analyses a design you disclose in full.
Project | What it does |
Try the constant-time checker in your browser — runs the real analyzer via Pyodide | |
Matched-pair constant-time RTL benchmark + leaderboard | |
Prove a bounds-check fix eliminates every violating input | |
First-order masking verification by two certificates | |
| MCP server — all three checkers, callable by AI agents |
GitHub Action — fail a PR on a leaky completion signal | |
49 records, 3 splits, byte-reproducible from these tools | |
Source for the live demo (Pyodide) and a fuller Gradio build |
The commercial boundary. Proving a property to a third party who never receives the design — a verdict bound to a commitment of a design that stays hidden — is a different problem and a commercial one. It is not in any of these packages.
License
Apache-2.0. See LICENSE. Contributing: CONTRIBUTING.md.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/nickharris808/hw-verify-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server