Skip to main content

MCP server for AI-driven waveform analysis via wavekit

Project description

wavekit-mcp

An MCP server that gives AI assistants a persistent, sandboxed Python environment for waveform analysis using wavekit.

The AI can open VCD/FSDB files, load and manipulate waveforms, run temporal pattern matching, and iterate across multiple tool calls — all within a shared execution context that persists state between calls.

Installation

pip install wavekit-mcp

Start the server:

wavekit-mcp                              # defaults
wavekit-mcp --config wavekit_mcp.toml   # custom config

Register with your MCP client (e.g. Claude Desktop):

{
  "mcpServers": {
    "wavekit": {
      "command": "wavekit-mcp",
      "args": ["--config", "/path/to/wavekit_mcp.toml"]
    }
  }
}

Configuration

Copy wavekit_mcp.toml.example and edit as needed. All fields are optional.

[limits]
max_sessions         = 5
run_timeout_sec      = 120
output_max_chars     = 500
result_preview_items = 30

[file_access]
read_enabled         = false
write_enabled        = false
read_allowed_paths   = ["/tmp/**"]
write_allowed_paths  = ["/tmp/**"]

[log]
file  = "/var/log/wavekit_mcp.log"   # empty = stderr only
level = "INFO"                        # DEBUG logs full code + result per run

Scalar fields can be overridden via environment variable:

WAVEKIT_MCP_RUN_TIMEOUT_SEC=300 wavekit-mcp

Tools

Tool Description
open_session(description?) Create a session; returns session_id
close_session(sid) Release all resources
reset_session(sid) Clear variables, keep session
list_sessions() List all active sessions with id, description, created_at
run(sid, code) Execute Python; returns {result, output, error, duration_ms}
get_history(sid, n) Last N execution records
get_api_docs(topic) wavekit API reference
save_plot(sid, figure_var) Save plotly Figure to HTML/PNG; returns path (stdio) or URL (http)

Every session has these pre-injected: open_reader(path), np, Pattern, MatchStatus.

run() returns structured summaries for large objects rather than raw data — the Waveform, ndarray, and MatchResult objects stay in the session namespace for further processing.

Usage Examples

Load and analyse

# call 1
r = open_reader("/data/sim.vcd")
data = r.load_waveform("tb.dut.data[7:0]", clock="tb.clk")

# call 2 — state persists
print(f"samples={len(data.value)}  mean={np.mean(data.value):.2f}")

Pattern matching (AXI read latency)

arvalid = r.load_waveform("tb.arvalid",     clock="tb.clk")
arready = r.load_waveform("tb.arready",     clock="tb.clk")
rvalid  = r.load_waveform("tb.rvalid",      clock="tb.clk")
rready  = r.load_waveform("tb.rready",      clock="tb.clk")

result = (
    Pattern()
    .wait(arvalid & arready)
    .wait(rvalid  & rready)
    .timeout(256)
    .match()
)

valid = result.filter_valid()
print(f"transactions={len(valid.duration.value)}  mean={np.mean(valid.duration.value):.1f} cycles")

Security

Code runs under RestrictedPython: import is blocked, __class__ / __bases__ access is blocked, and file I/O is disabled by default. Designed to prevent accidental operations, not to sandbox fully untrusted code.

More

See SKILLS.md for a cheatsheet of common patterns.

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

wavekit_mcp-0.2.5.tar.gz (22.6 kB view details)

Uploaded Source

Built Distribution

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

wavekit_mcp-0.2.5-py3-none-any.whl (25.0 kB view details)

Uploaded Python 3

File details

Details for the file wavekit_mcp-0.2.5.tar.gz.

File metadata

  • Download URL: wavekit_mcp-0.2.5.tar.gz
  • Upload date:
  • Size: 22.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for wavekit_mcp-0.2.5.tar.gz
Algorithm Hash digest
SHA256 d8579309da74feaae82be62e4ff4fe2e4abc9ecf2eb37629ba463db38196d377
MD5 c0131d8e6e0da424b5dee5c830b12a8d
BLAKE2b-256 50444aa21499d2913b37d1fe5a1187e8cf276702f0c7292eafd8af2a36a4312c

See more details on using hashes here.

File details

Details for the file wavekit_mcp-0.2.5-py3-none-any.whl.

File metadata

  • Download URL: wavekit_mcp-0.2.5-py3-none-any.whl
  • Upload date:
  • Size: 25.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for wavekit_mcp-0.2.5-py3-none-any.whl
Algorithm Hash digest
SHA256 fca5b55fd3f4a76494a951a26d7c034bd8008e9ede195812449b3a8a04526962
MD5 f6327f89f739b0d77c40739f123cd7d4
BLAKE2b-256 547524e068bcdd42bda883dab159a173e1e896b8a4387de73566b5b6447ae3c0

See more details on using hashes here.

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