io.github.kiranreddi/sentinel-dv
Indexes design verification artifacts (such as UVM logs, coverage summaries, waveforms, and assertion results) into DuckDB, providing fast and bounded querying capabilities through the MCP server tools.
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., "@io.github.kiranreddi/sentinel-dvshow test failures from last regression run"
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.
Sentinel DV
Sentinel DV v2.3.1 is a read-only Model Context Protocol server for design verification evidence. It indexes exported SystemVerilog, UVM, cocotb, assertion, coverage, regression, and waveform artifacts into DuckDB and exposes 28 bounded, schema-driven tools to AI agents.
Documentation | Quick start | Video walkthrough | All tools | Agent skills
What it provides
Run and test intelligence: discovery, summaries, history, topology, diffs, replay-command generation, and live-status snapshots.
Failure analysis: normalized categories, stable signatures, bounded evidence, assertion failures, and failure clustering.
Coverage closure: functional, code, toggle, and FSM metrics; trends; gaps; vacuity; SVA status; and protocol-aware constraint candidates.
Waveform context: precomputed
*.wave.jsonand bounded VCD summaries. Native FSDB/WLF streaming is intentionally out of scope.Agent workflows: regression triage, single-test failure debugging, and coverage closure skills for Codex, Claude Code, and GitHub Copilot.
Sentinel DV does not execute simulations, modify RTL or testbench files, or stream unrestricted raw artifacts. runs.submit and tests.replay return dry-run commands for engineer review.
Related MCP server: Debugging MCP Server
Quick start
Python 3.10 or newer is required. This example indexes the checked-in demo corpus:
For a persistent environment, install sentinel-dv>=2.3.1. The commands below use uvx to run the same release without a persistent install.
git clone https://github.com/kiranreddi/sentinel-dv.git
cd sentinel-dv
cp demo/config.example.yaml demo/config.yaml
uvx --from sentinel-dv@2.3.1 \
sentinel-dv-index --config "$PWD/demo/config.yaml" --index-allConnect one agent:
Codex
codex mcp add sentinel-dv \
--env SENTINEL_DV_CONFIG="$PWD/demo/config.yaml" \
-- uvx --from sentinel-dv@2.3.1 sentinel-dv-serverClaude Code
claude mcp add \
--env SENTINEL_DV_CONFIG="$PWD/demo/config.yaml" \
--transport stdio --scope local sentinel-dv \
-- uvx --from sentinel-dv@2.3.1 sentinel-dv-serverGitHub Copilot CLI
copilot mcp add sentinel-dv \
--env SENTINEL_DV_CONFIG="$PWD/demo/config.yaml" \
-- uvx --from sentinel-dv@2.3.1 sentinel-dv-serverUse an absolute SENTINEL_DV_CONFIG path. Verify the connection in the client's MCP status view, then call runs.list.
See Agent setup for configuration-file examples, project scope, skill discovery, and troubleshooting.
Production configuration
Copy config.example.yaml and define allowed artifact roots:
artifact_roots:
- /absolute/path/to/regression/artifacts
index:
type: duckdb
path: ./sentinel_dv.db
adapters:
uvm: true
cocotb: true
assertions: true
coverage: true
waveform_summary: true
security:
max_response_bytes: 2097152
max_page_size: 200
max_evidence_refs: 10
redaction:
enabled: true
redact_emails: true
redact_paths: trueBuild the index before starting the server:
sentinel-dv-index --config /absolute/path/to/config.yaml --index-all
sentinel-dv-server --config /absolute/path/to/config.yamlRelative paths inside the YAML are resolved from the config file's directory. Production startup never silently falls back to demo data.
MCP tools
The 28 tools are grouped by engineering purpose:
Area | Tools |
Runs |
|
Tests |
|
Failures and assertions |
|
Coverage |
|
Regression and simulation |
|
Waveforms |
|
Every registered tool carries read-only MCP annotations and a versioned output schema. The MCP tools reference documents exact inputs and outputs.
Agent skills
The canonical skills live under skills/:
Deterministic mirrors support project discovery:
Host | Path |
Codex |
|
Claude Code |
|
GitHub Copilot |
|
The repository also contains Codex and Claude plugin manifests. .mcp.json defines the bundled stdio server command; provide SENTINEL_DV_CONFIG or a config.yaml in the server working directory.
After editing a canonical skill:
.venv/bin/python scripts/sync_agent_skills.py
.venv/bin/python scripts/sync_agent_skills.py --checkSupported artifact sources
UVM logs and topology hints
cocotb and generic JUnit XML
assertion definition and failure JSON
SVA run-status JSON
supported JSON, XML, text, and HTML coverage summaries
*.wave.jsonand VCDlive simulation status JSON
exported VCS, Xcelium, Questa, and Verilator results
Adapter output is normalized into versioned schemas so clients do not need vendor-specific parsing logic.
Security model
Tools are read-only and operate on an index plus configured artifact roots.
Path resolution is sandboxed to allowed roots.
Evidence counts, excerpts, pages, wave signals, bins, and total response size are bounded.
Configurable redaction protects common secrets, email addresses, IP addresses, and local paths.
Tool output is deterministic; the MCP server does not generate causal conclusions.
Read Security and Production deployment before using production artifacts.
Verification
Create a development environment:
python3 -m venv .venv
.venv/bin/pip install -e ".[dev,docs]"Run endpoint and workflow checks:
.venv/bin/python scripts/verify_all_mcp_tools.py
.venv/bin/python scripts/verify_skill_workflows.pyRun the full quality suite:
.venv/bin/pytest
.venv/bin/ruff check .
.venv/bin/black --check .
.venv/bin/mypy sentinel_dv
.venv/bin/mkdocs build --strictThe all-tools verifier invokes every registered MCP endpoint. The skill verifier indexes 52 checked-in demo artifacts and executes the published regression triage, failure debugging, and coverage closure sequences.
Project layout
sentinel_dv/
adapters/ artifact parsers
indexing/ DuckDB indexing and queries
normalization/ signatures, taxonomy, redaction, coverage guidance
schemas/ versioned response contracts
tools/core.py tool implementations
server.py FastMCP registration and stdio entry point
skills/ canonical agent skills
demo/ license-free exported verification fixtures
docs/ MkDocs documentation
scripts/ verification, gallery, release, and skill-sync tooling
tests/ unit and integration coverageContributing
See CONTRIBUTING.md. Sentinel DV is licensed under Apache-2.0.
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.
Related MCP Servers
- AlicenseAqualityFmaintenanceEnables RTL simulation and hardware verification with Verilator through automatic testbench generation, natural language queries about simulations, waveform analysis, and protocol-aware testing for Verilog/SystemVerilog designs.44MIT
- FlicenseAqualityDmaintenanceEnables LLMs to automatically diagnose coding errors through codebase search, test execution, and live debugger integration (DAP/V8 CDP). Provides a secure, policy-gated environment for investigating failures while preventing destructive operations.9
- FlicenseAqualityDmaintenanceEnables AI assistants to perform Electronic Design Automation (EDA) tasks including Verilog synthesis, simulation, ASIC design flows, and waveform analysis through a unified interface.6
- Alicense-qualityFmaintenanceProvides AI agents with compiler-backed, read-only context for Verilog and SystemVerilog projects using pyslang.20Apache 2.0
Related MCP Connectors
The WAF for agents. Pattern-based + heuristic firewall scans prompts, RAG documents, tool argume...
Evaluate, benchmark, and simulate AI agents on the VerifyAX agent-evaluation platform.
Deterministic fact verification for AI agents — checksums & curated data, not guesses.
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/kiranreddi/sentinel-dv'
If you have feedback or need assistance with the MCP directory API, please join our Discord server