wave-mcp 0.0.1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- wave_mcp-0.0.1/PKG-INFO +37 -0
- wave_mcp-0.0.1/README.md +18 -0
- wave_mcp-0.0.1/pyproject.toml +30 -0
- wave_mcp-0.0.1/setup.cfg +4 -0
- wave_mcp-0.0.1/wave_mcp.egg-info/PKG-INFO +37 -0
- wave_mcp-0.0.1/wave_mcp.egg-info/SOURCES.txt +6 -0
- wave_mcp-0.0.1/wave_mcp.egg-info/dependency_links.txt +1 -0
- wave_mcp-0.0.1/wave_mcp.egg-info/top_level.txt +1 -0
wave_mcp-0.0.1/PKG-INFO
ADDED
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: wave-mcp
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Open-source, license-free MCP server for RTL waveform debug (name-reservation placeholder; full release coming soon).
|
|
5
|
+
Author-email: wukongxin <wukongxin@tencent.com>
|
|
6
|
+
License: MIT
|
|
7
|
+
Project-URL: Homepage, https://github.com/your-org/wave-mcp
|
|
8
|
+
Project-URL: Repository, https://github.com/your-org/wave-mcp
|
|
9
|
+
Project-URL: Issues, https://github.com/your-org/wave-mcp/issues
|
|
10
|
+
Keywords: mcp,waveform,fst,verilog,systemverilog,rtl,debug,eda
|
|
11
|
+
Classifier: Development Status :: 2 - Pre-Alpha
|
|
12
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
13
|
+
Classifier: Intended Audience :: Developers
|
|
14
|
+
Classifier: Operating System :: POSIX :: Linux
|
|
15
|
+
Classifier: Programming Language :: Python :: 3
|
|
16
|
+
Classifier: Topic :: Scientific/Engineering :: Electronic Design Automation (EDA)
|
|
17
|
+
Requires-Python: >=3.9
|
|
18
|
+
Description-Content-Type: text/markdown
|
|
19
|
+
|
|
20
|
+
# wave-mcp
|
|
21
|
+
|
|
22
|
+
**This is a name-reservation placeholder (v0.0.1). The full release is coming soon.**
|
|
23
|
+
|
|
24
|
+
`wave-mcp` is an open-source, **license-free** MCP server for RTL waveform debug,
|
|
25
|
+
backed entirely by open-source data sources — **FST waveforms + a pyslang RTL
|
|
26
|
+
netlist**. It gives an LLM a set of waveform-debug tools (design hierarchy,
|
|
27
|
+
signals, signal values, connectivity/drivers, and cross-module value tracing)
|
|
28
|
+
with **no commercial license required and unlimited concurrency**.
|
|
29
|
+
|
|
30
|
+
It does **not** run a simulator — you produce the waveform with your own flow
|
|
31
|
+
(Verilator `--trace-fst`, or convert a VCD to FST) and hand the result to it.
|
|
32
|
+
|
|
33
|
+
- Source & docs: https://github.com/your-org/wave-mcp
|
|
34
|
+
- License: MIT
|
|
35
|
+
|
|
36
|
+
> `pip install wave-mcp` will install the real package once the first functional
|
|
37
|
+
> release (`0.1.0`) is published. This `0.0.1` release only reserves the name.
|
wave_mcp-0.0.1/README.md
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
# wave-mcp
|
|
2
|
+
|
|
3
|
+
**This is a name-reservation placeholder (v0.0.1). The full release is coming soon.**
|
|
4
|
+
|
|
5
|
+
`wave-mcp` is an open-source, **license-free** MCP server for RTL waveform debug,
|
|
6
|
+
backed entirely by open-source data sources — **FST waveforms + a pyslang RTL
|
|
7
|
+
netlist**. It gives an LLM a set of waveform-debug tools (design hierarchy,
|
|
8
|
+
signals, signal values, connectivity/drivers, and cross-module value tracing)
|
|
9
|
+
with **no commercial license required and unlimited concurrency**.
|
|
10
|
+
|
|
11
|
+
It does **not** run a simulator — you produce the waveform with your own flow
|
|
12
|
+
(Verilator `--trace-fst`, or convert a VCD to FST) and hand the result to it.
|
|
13
|
+
|
|
14
|
+
- Source & docs: https://github.com/your-org/wave-mcp
|
|
15
|
+
- License: MIT
|
|
16
|
+
|
|
17
|
+
> `pip install wave-mcp` will install the real package once the first functional
|
|
18
|
+
> release (`0.1.0`) is published. This `0.0.1` release only reserves the name.
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=61"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "wave-mcp"
|
|
7
|
+
version = "0.0.1"
|
|
8
|
+
description = "Open-source, license-free MCP server for RTL waveform debug (name-reservation placeholder; full release coming soon)."
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
requires-python = ">=3.9"
|
|
11
|
+
license = { text = "MIT" }
|
|
12
|
+
authors = [{ name = "wukongxin", email = "wukongxin@tencent.com" }]
|
|
13
|
+
keywords = ["mcp", "waveform", "fst", "verilog", "systemverilog", "rtl", "debug", "eda"]
|
|
14
|
+
classifiers = [
|
|
15
|
+
"Development Status :: 2 - Pre-Alpha",
|
|
16
|
+
"License :: OSI Approved :: MIT License",
|
|
17
|
+
"Intended Audience :: Developers",
|
|
18
|
+
"Operating System :: POSIX :: Linux",
|
|
19
|
+
"Programming Language :: Python :: 3",
|
|
20
|
+
"Topic :: Scientific/Engineering :: Electronic Design Automation (EDA)",
|
|
21
|
+
]
|
|
22
|
+
|
|
23
|
+
[project.urls]
|
|
24
|
+
Homepage = "https://github.com/your-org/wave-mcp"
|
|
25
|
+
Repository = "https://github.com/your-org/wave-mcp"
|
|
26
|
+
Issues = "https://github.com/your-org/wave-mcp/issues"
|
|
27
|
+
|
|
28
|
+
# metadata-only placeholder: ship no Python modules, only README + metadata.
|
|
29
|
+
[tool.setuptools]
|
|
30
|
+
py-modules = []
|
wave_mcp-0.0.1/setup.cfg
ADDED
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: wave-mcp
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Open-source, license-free MCP server for RTL waveform debug (name-reservation placeholder; full release coming soon).
|
|
5
|
+
Author-email: wukongxin <wukongxin@tencent.com>
|
|
6
|
+
License: MIT
|
|
7
|
+
Project-URL: Homepage, https://github.com/your-org/wave-mcp
|
|
8
|
+
Project-URL: Repository, https://github.com/your-org/wave-mcp
|
|
9
|
+
Project-URL: Issues, https://github.com/your-org/wave-mcp/issues
|
|
10
|
+
Keywords: mcp,waveform,fst,verilog,systemverilog,rtl,debug,eda
|
|
11
|
+
Classifier: Development Status :: 2 - Pre-Alpha
|
|
12
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
13
|
+
Classifier: Intended Audience :: Developers
|
|
14
|
+
Classifier: Operating System :: POSIX :: Linux
|
|
15
|
+
Classifier: Programming Language :: Python :: 3
|
|
16
|
+
Classifier: Topic :: Scientific/Engineering :: Electronic Design Automation (EDA)
|
|
17
|
+
Requires-Python: >=3.9
|
|
18
|
+
Description-Content-Type: text/markdown
|
|
19
|
+
|
|
20
|
+
# wave-mcp
|
|
21
|
+
|
|
22
|
+
**This is a name-reservation placeholder (v0.0.1). The full release is coming soon.**
|
|
23
|
+
|
|
24
|
+
`wave-mcp` is an open-source, **license-free** MCP server for RTL waveform debug,
|
|
25
|
+
backed entirely by open-source data sources — **FST waveforms + a pyslang RTL
|
|
26
|
+
netlist**. It gives an LLM a set of waveform-debug tools (design hierarchy,
|
|
27
|
+
signals, signal values, connectivity/drivers, and cross-module value tracing)
|
|
28
|
+
with **no commercial license required and unlimited concurrency**.
|
|
29
|
+
|
|
30
|
+
It does **not** run a simulator — you produce the waveform with your own flow
|
|
31
|
+
(Verilator `--trace-fst`, or convert a VCD to FST) and hand the result to it.
|
|
32
|
+
|
|
33
|
+
- Source & docs: https://github.com/your-org/wave-mcp
|
|
34
|
+
- License: MIT
|
|
35
|
+
|
|
36
|
+
> `pip install wave-mcp` will install the real package once the first functional
|
|
37
|
+
> release (`0.1.0`) is published. This `0.0.1` release only reserves the name.
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|