mcltspice/src/mcp_ltspice/__init__.py
Ryan Malloy 50953a4dea Initial mcp-ltspice: MCP server for LTspice circuit simulation
Wine batch-mode runner, binary .raw parser (UTF-16 LE + mixed
precision float64/float32), .asc schematic parser/editor, and
9 FastMCP tools for simulation automation on Linux.
2026-02-10 13:13:36 -07:00

9 lines
191 B
Python

"""MCP server for LTspice circuit simulation automation."""
from importlib.metadata import version
try:
__version__ = version("mcp-ltspice")
except Exception:
__version__ = "0.0.0"