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.
9 lines
191 B
Python
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"
|