NanoVNA-H MCP server with 27 tools for VNA control via USB serial. Protocol layer handles text + binary scan data parsing, three-phase initialization sequence, and automatic device discovery (VID 0x0483). Tools: info, sweep, scan, data, frequencies, marker, cal, save, recall, pause, resume, power, bandwidth, edelay, s21offset, vbat, capture, trace, transform, smooth, threshold, reset, version, detect, disconnect, raw_command, cw
25 lines
526 B
TOML
25 lines
526 B
TOML
[project]
|
|
name = "mcnanovna"
|
|
version = "2026.01.30"
|
|
description = "MCP server for NanoVNA-H vector network analyzers"
|
|
authors = [{name = "Ryan Malloy", email = "ryan@supported.systems"}]
|
|
requires-python = ">=3.11"
|
|
dependencies = [
|
|
"fastmcp>=2.14.0",
|
|
"pyserial>=3.5",
|
|
]
|
|
|
|
[project.scripts]
|
|
mcnanovna = "mcnanovna.server:main"
|
|
|
|
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = ["src/mcnanovna"]
|
|
|
|
[tool.ruff]
|
|
target-version = "py311"
|
|
line-length = 120
|