ltspice-mcp
Controls LTspice on macOS, enabling simulation, schematic generation, data extraction, rendering, and automated measurement and verification workflows.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@ltspice-mcpsimulate the RC integrator netlist and plot Vout"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
LTspice MCP for macOS
Model Context Protocol (MCP) server that lets agents and MCP clients control LTspice on macOS for simulation, schematic generation, data extraction, verification, and rendering.
This project is designed for practical automation: reliable runs, reproducible artifacts, and outputs that match LTspice behavior closely.
Inspired by:
What You Can Do
Run LTspice simulations from MCP (
simulateNetlistFile,runSimulation, queue tools).Generate and refine schematics (
createSchematic*, lint/clean/debug tools).Render real LTspice images for schematics, plots, and symbols.
Query RAW vectors and analysis metrics (bandwidth, margins, rise/fall, settling).
Automate
.measand assertion-driven verification workflows.Run stepped and Monte Carlo studies with structured results.
Related MCP server: Universal Netlist MCP Server
Quick Start (5 Minutes)
1) Prerequisites
macOS with LTspice installed (
/Applications/LTspice.appexpected by default).Python 3.11+.
uv(recommended) orpip.
2) Install
uv syncIf you prefer pip:
python3 -m venv .venv
source .venv/bin/activate
pip install -e .3) Start the MCP daemon
./scripts/ltspice_mcp_daemon.sh start
./scripts/ltspice_mcp_daemon.sh statusDefault endpoint:
http://127.0.0.1:8765/mcp
4) Grant macOS permissions once
Required for screenshot/render and some UI automation features.
./scripts/ltspice_mcp_daemon.sh trigger-initial-permissions
./scripts/ltspice_mcp_daemon.sh check-accessibility5) Run a smoke test
uv run python smoke_test_mcp.py \
--transport streamable-http \
--server-url http://127.0.0.1:8765/mcpClient Configuration
URL-capable MCP clients
[mcp_servers.ltspice]
url = "http://127.0.0.1:8765/mcp"
enabled = trueClaude Desktop via mcp-remote
{
"mcpServers": {
"ltspice-mcp": {
"command": "/opt/homebrew/bin/npx",
"args": ["-y", "mcp-remote", "http://127.0.0.1:8765/mcp"]
}
}
}stdio (subprocess) mode
{
"mcpServers": {
"ltspice-mcp": {
"command": "ltspice-mcp",
"args": ["--transport", "stdio"],
"cwd": "/absolute/path/to/ltspice-mcp"
}
}
}Core Capabilities by Category
Setup and diagnostics
getLtspiceStatus,getLtspiceUiStatusdaemonDoctor,tailDaemonLog,getRecentErrors,getCaptureHealth
Simulation and queueing
simulateNetlist,simulateNetlistFile,runSimulationqueueSimulationJob,listJobs,jobStatus,cancelJob,listJobHistory
Schematic workflows
createSchematic,createSchematicFromNetlist,createSchematicFromTemplatevalidateSchematic,lintSchematic,autoDebugSchematicinspectSchematicVisualQuality,autoCleanSchematicLayout
Data, measurements, and verification
getPlotNames,getVectorsInfo,getVectorData,getLocalExtremagetBandwidth,getGainPhaseMargin,getRiseFallTime,getSettlingTimeparseMeasResults,runMeasAutomation,runVerificationPlan,runSweepStudy
Native LTspice rendering
renderLtspiceSchematicImagerenderLtspicePlotImage,renderLtspicePlotPresetImagerenderLtspiceSymbolImagestartLtspiceRenderSession,endLtspiceRenderSession
Reliability Notes
Streamable HTTP defaults are tuned for compatibility:
json_response = truestateless_http = true
UI integration is disabled by default (
LTSPICE_MCP_UI_ENABLED=0).Schematic single-window updates are enabled by default.
Rendering uses LTspice + ScreenCaptureKit direct-window capture.
Run artifacts are stored per run to keep historical results stable.
Daemon Operations
./scripts/ltspice_mcp_daemon.sh start
./scripts/ltspice_mcp_daemon.sh restart
./scripts/ltspice_mcp_daemon.sh stop
./scripts/ltspice_mcp_daemon.sh status
./scripts/ltspice_mcp_daemon.sh logs --lines 200
./scripts/ltspice_mcp_daemon.sh logs --followPermission helpers:
./scripts/ltspice_mcp_daemon.sh trigger-screen-recording-permission
./scripts/ltspice_mcp_daemon.sh trigger-accessibility-permissionTesting
Run core tests:
PYTHONPATH=src .venv/bin/python -m unittest discover -s tests -vRun real ScreenCaptureKit integration tests (opt-in):
LTSPICE_MCP_RUN_REAL_SCK=1 PYTHONPATH=src .venv/bin/python -m unittest tests.test_screencapturekit_integration -v
LTSPICE_MCP_RUN_REAL_SCK=1 PYTHONPATH=src .venv/bin/python -m unittest tests.test_plot_render_mcp_real -vContributing
Contributions are welcome. Start with:
AGENT_README.md for agent-specific workflows
When filing bugs, include:
MCP server version,
LTspice version,
transport mode,
exact tool call + parameters,
daemon log excerpts.
Documentation Map
MCP resource:
docs://agent-readmeMCP tool:
readAgentGuide
Important Environment Variables
Core:
LTSPICE_BINARYLTSPICE_MCP_WORKDIRLTSPICE_MCP_TIMEOUTLTSPICE_MCP_TRANSPORTLTSPICE_MCP_HOSTLTSPICE_MCP_PORTLTSPICE_MCP_STREAMABLE_HTTP_PATHLTSPICE_MCP_JSON_RESPONSELTSPICE_MCP_STATELESS_HTTP
UI/render:
LTSPICE_MCP_UI_ENABLEDLTSPICE_MCP_SCHEMATIC_SINGLE_WINDOWLTSPICE_MCP_SCHEMATIC_LIVE_PATHLTSPICE_MCP_SCK_HELPER_DIRLTSPICE_MCP_SCK_HELPER_PATHLTSPICE_MCP_VERIFY_WINDOW_CLOSE
Logging:
LTSPICE_MCP_LOG_LEVELLTSPICE_MCP_TOOL_LOGGINGLTSPICE_MCP_TOOL_LOG_MAX_ITEMSLTSPICE_MCP_TOOL_LOG_MAX_CHARSLTSPICE_MCP_DISABLE_UVICORN_NOISE_FILTERSLTSPICE_MCP_DAEMON_LOG_DIR
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/xuio/ltspice-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server