WaveQ
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., "@WaveQWhat is the value of tb.valid at 30ns?"
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.
WaveQ
Your AI assistant can read code — WaveQ lets it read waveforms too.
WaveQ is a local MCP server and CLI that indexes .vcd / .vcd.gz files into SQLite, then answers precise questions about signal values, transitions, edges, and clock cycles. Instead of dumping megabytes of raw VCD text into context, your agent gets compact, structured answers — and honest failures when data is missing or ambiguous.
Zero runtime dependencies. Pure Python. Runs entirely on your machine.
Quick start
Requirements: Python 3.10+
git clone https://github.com/IshaanDugar/waveq.git
cd waveq
python -m venv .venv
# Linux / macOS
source .venv/bin/activate
pip install -e .
# Windows
.\.venv\Scripts\activate
pip install -e .Try the included fixture:
waveq info examples/sample.vcd
waveq value examples/sample.vcd tb.valid 16ns
waveq digest examples/sample.vcd 30ns 10ns --scope u_apbStart the MCP server (stdio JSON-RPC):
waveq-mcp
# or: python -m waveq.mcp_serverRelated MCP server: EDA Tools MCP Server
Connect to your AI tool
WaveQ speaks MCP over stdio. Point any MCP-capable client at python -m waveq.mcp_server (or the waveq-mcp script after install).
Client | Setup guide |
Cursor | |
Claude Desktop | |
OpenAI Codex | |
Other MCP hosts |
Example agent prompt once connected:
Use WaveQ on examples/sample.vcd. Check index_status; if query_ready is false,
build_index(level="full"). Resolve clk and reset, define clk as rising-edge clock,
and summarize activity around 10ns.See AGENTS.md for the recommended tool workflow.
What it does
Parse VCD/VCD.GZ into a reusable local SQLite cache
Resolve fuzzy signal names to exact hierarchical paths
Query values at a time, changes in a window, edges, and stability
Summarize a debug window with
window_digestinstead of raw dumpsBuild a clock cycle index and query by cycle
Return
ok: falseon missing signals, bad times, or partial batch failures — no silent success
What it does not do
WaveQ is not a simulator, waveform viewer, assertion engine, or protocol checker. It reports observed VCD facts. Do not use it alone to prove APB/AHB/AXI correctness, CDC safety, or formal properties. It does not read FSDB, VPD, or FST.
How it works
WaveQ is size-aware. Small VCDs may auto-index on configure; larger files stay metadata-only until you explicitly call build_index.
VCD size | Class | Default on |
< 10 MB | small | May build full indexes |
10–50 MB | medium | Metadata only |
50–250 MB | large | Metadata only |
> 250 MB | huge | Metadata only |
Recommended agent workflow:
configure_waveform→ 2.index_status→ 3.build_indexif needed → 4.resolve_signals→ 5.define_clock(for cycles) → 6.window_digestnear the failure → 7. follow up withvalues_at,changes_many,edges
MCP tools (18)
Tool | Purpose |
| Load VCD metadata and cache |
| Check which index levels are ready |
| Build |
| Timescale, signal count, time range |
| Match approximate names to exact paths |
| Signal value(s) at one time |
| Transition lists in a window |
| Precomputed edge facts |
| Held-value check over a range |
| Compact "what changed here?" summary |
| Build cycle index from clock edges |
| Time ↔ cycle conversion |
| Cycle-based queries |
Result shape
Success:
{"ok": true, "status": "ok", "summary": "tb.valid=1 at 16ns", "data": {}, "confidence": 1.0}Failure (batch tools do not hide partial errors):
{"ok": false, "status": "partial_failure", "summary": "One or more signal lookups failed", "confidence": 0.0}Time syntax
Raw ticks (42) or unit times (42ns, 1.5us). Unit times convert exactly via rational arithmetic — non-integral ticks fail instead of rounding silently.
Performance
Synthetic benchmarks on a typical dev laptop (Windows, Python 3.x). Regenerate anytime:
python benchmarks/benchmark_waveq.py --output reportsQuery speed (median, after full index)
Case | VCD size | Signals | Changes |
|
|
| Cache reuse |
small | 45 KB | 32 | 6,871 | 0.06 ms | 0.49 ms | 5.6 ms | 1.6 ms |
medium | 12.6 MB | 128 | 92,815 | 0.06 ms | 0.47 ms | 6.1 ms | 1.5 ms |
large | 55.0 MB | 32 | 6,871 | 0.06 ms | 0.47 ms | 5.9 ms | 1.4 ms |
Index build cost (one-time per VCD)
Case |
| Query-ready after configure? | Full |
small | 72 ms | yes (auto-indexed) | 57 ms |
medium | 27 ms | no (metadata only) | 672 ms |
large | 32 ms | no (metadata only) | 148 ms |
Large files stay metadata-only at configure time — you pay for indexing only when you need it.
Why this matters for AI-assisted debug
Without WaveQ | With WaveQ |
A 12 MB VCD is millions of tokens — it cannot fit in any agent context window |
|
Agent reads raw text, guesses signal hierarchy, may silently miss data |
|
Re-parsing the same VCD on every question | SQLite cache reattaches in ~1.5 ms — index once, query many times |
8 separate signal lookups = 8 file scans |
|
"What happened near the failure?" → dump entire time range |
|
Rule of thumb: after the one-time index build, point queries are sub-millisecond and debug-window summaries land in single-digit milliseconds — even on 50+ MB files. The real win is not raw speed alone; it is making waveform evidence queryable and context-sized for an AI agent instead of dumping unusable VCD text.
CLI reference
waveq info <vcd>
waveq configure <vcd>
waveq index-status <vcd>
waveq build-index <vcd> --level full
waveq resolve <vcd> <query>
waveq value <vcd> <signal> <time>
waveq values <vcd> <time> <signal> [...]
waveq changes <vcd> <signal> <start> <end>
waveq edges <vcd> <signal> --kind rise --start 0ns --end 50ns
waveq digest <vcd> <center> <radius> [--scope <hier>]Development
python -m py_compile waveq/*.py # PowerShell: py_compile (Get-ChildItem waveq\*.py)
python -m unittest discover -s tests -v
python benchmarks/benchmark_waveq.py --output reports # optional; writes to reports/See CONTRIBUTING.md for details.
Repository layout
waveq/ VCD parser, SQLite indexer, query engine, MCP server, CLI
tests/ Unit and MCP behavior tests
benchmarks/ Synthetic VCD performance + correctness checks
examples/ Sample VCD and smoke commands
docs/install/ MCP client setup guidesLicense
MIT — see LICENSE.
Originally developed by Ishaan Dugar during an internship at Ambiq Micro. Ambiq Micro is not the author or maintainer of this project.
Contributing
Issues and pull requests welcome. See CONTRIBUTING.md and SECURITY.md.
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
- 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/IshaanDugar/waveq'
If you have feedback or need assistance with the MCP directory API, please join our Discord server