visio-mcp
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., "@visio-mcpDraw a circuit schematic with a resistor and capacitor in series"
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.
visio-mcp
MCP (Model Context Protocol) server for drawing circuit schematics and diagrams in Microsoft Visio, driven by an LLM agent. MIT-licensed, 100% original code — no parts copied from other Visio MCP projects.
Why
Drawing schematic netlists in Visio programmatically usually fails because
symbol pins live at unknown coordinates and wires end up floating next to
the symbols. This server ships measured pin geometry for the classic
Analog Circuit stencil: every master was rendered to a 240 DPI PNG and its
pins were located pixel-exact. pin_point() turns those offsets into exact
page coordinates, so wires land on the pins.
Related MCP server: ansys-aedt-mcp
Features
Live COM engine — attaches to a running Visio (
GetActiveObject) or launches a new instance (Dispatch); auto-answers modal dialogs; runs all COM on a single worker threadStencil lock workaround — if a stencil is open in another Visio session (very common), a temporary copy is opened instead
Tools: documents, pages, stencils, masters, shapes (drop / wire / label / junction / weight / delete / find / list), export (PNG/PDF/SVG/EMF…)
Measured pin geometry for
Analog Circuit.vssmasters (NMOS1/PMOS1/Res1/Cap1/Ind2/balun/gnd/vdd) with orientation variantsBundled stencils —
stencils/shipsAnalog Circuit.vss,RFIC_lib.vssandRFsys_lib.vssso the examples run out of the box (third-party academic symbols, seestencils/README.mdfor provenance)Headless mock engine — the same tool layer runs without Visio, so the test suite works on Linux CI
Example: complete two-stage differential 40 GHz LNA schematic generator
Requirements
Requirement | Notes |
Windows 10/11 | live mode |
Microsoft Visio 2016+ | any edition |
Python 3.11+ | |
| bundled with the repo ( |
Install
cd VISIO_MCP
python -m venv .venv
.venv\Scripts\pip install -e ".[dev]"
# stencils ship with the repo; point the server at them
export VISIO_MCP_STENCIL_DIRS="$PWD/stencils"Probe Visio:
.venv\Scripts\python -m visio_mcp --checkRun as an MCP server (stdio)
.venv\Scripts\visio-mcpClaude Code
{
"mcpServers": {
"visio": {
"command": "C:/path/to/your/stencils/VISIO_MCP/.venv/Scripts/python.exe",
"args": ["-m", "visio_mcp"],
"env": {
"VISIO_MCP_STENCIL_DIRS": "C:/path/to/your/stencils"
}
}
}
}Hermes Agent
mcp_servers:
visio:
command: "C:/path/to/your/stencils/VISIO_MCP/.venv/Scripts/python.exe"
args: ["-m", "visio_mcp"]
env:
VISIO_MCP_STENCIL_DIRS: "C:/path/to/your/stencils"Environment variables
Variable | Default | Meaning |
| (empty) |
|
|
| show the Visio window |
|
| attach to a running Visio instance; |
|
| keep the launched Visio instance after exit |
|
| default wire weight |
|
| default label font |
|
| default label size |
| (empty) | junction-dot stencil (e.g. RFIC_lib.vss) |
|
| junction-dot master name |
|
| force the headless mock engine |
Tools
Tool | Description |
| server + Visio connection status |
| document lifecycle (1:1 inch page) |
| page control |
| stencil + master discovery |
| drop a symbol (angle, flip, label, weight) |
| orthogonal polyline, uniform weight |
| centered borderless text (Arial bold) |
| solid junction dot (Point master or filled circle) |
| shape management |
| PNG / JPG / SVG / EMF / PDF / VSDX |
| measured pin geometry & clearance |
Drawing recipe (agent workflow)
new_document(16, 9.5)— coordinates are inchesload_stencil("…/Analog Circuit.vss")— get a stencil keydrop_master(key, "NMOS1", x, y, flip_x=…)for every symbolpin_point("NMOS1", x, y, "gate")— exact pin coordinatedraw_wire([[..], pin_point, ..])— wires first, components on top (series elements cover the wire; usesymbol_boundsto keep descents out of bodies)add_junctionat ≥3-wire nodes,add_labelfor namesexport_page("png", "out.png")— inspect, iterate
Pitfalls
Do not keep the output .vsdx open in Visio while regenerating it — SaveAs then fails with an "invalid DOS handle" error. Close the file first (or write to a new path).
Temporary stencil copies must live next to the original stencil — files in %TEMP% are rejected by the Visio Trust Center file-block settings.
If a user's interactive Visio session feels flaky (stencils open in compatibility mode, unsaved docs, ...), set
VISIO_MCP_ATTACH=0so the server drives its own dedicated instance.
Measured pin data
visio_mcp/data/pins_analog_circuit.json — offsets in inches relative to the
drop point (y-up page coordinates), measured by PNG-render + pixel analysis.
Variants encode rotations (angle) and mirrors (flip_x). Verified against
the two-stage LNA example (all 21 connections pixel-checked).
Project layout
visio_mcp/
engine.py live COM engine (single worker thread, lazy win32com)
mock_engine.py headless engine for CI
server.py FastMCP app + tools
pins.py measured-geometry helpers
data/pins_analog_circuit.json
stencils/ bundled Visio stencils (Analog Circuit / RFIC_lib / RFsys_lib)
examples/lna_two_stage.py two-stage diff LNA schematic generator
tests/ unit tests (headless)License
MIT — the code, the measured pin-geometry JSON, and this documentation are
original work of this project's author. The bundled stencils in stencils/
(Analog Circuit.vss, RFIC_lib.vss, RFsys_lib.vss) are third-party
academic symbols (originally created at Fudan University) and are not
covered by this project's MIT license — see stencils/README.md for their
provenance and terms.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- Alicense-qualityAmaintenanceThis MCP server enables AI agents to understand and analyze electrical schematics from Cadence and Altium for comprehensive design reviews through natural conversations.37828Apache 2.0
- AlicenseCqualityBmaintenanceEnables AI agents to control Ansys Electronics Desktop (HFSS, Maxwell, Q3D, etc.) using MCP tools for simulation automation.10029PolyForm Noncommercial 1.0.0
- AlicenseAqualityCmaintenanceEnables AI agents to generate real Office documents (.pptx, .docx, .xlsx) and source code from natural language via MCP protocol.4MIT
- Alicense-qualityBmaintenanceGenerates, simulates, and inspects LTspice circuits via MCP tools and resources, providing structured JSON interfaces for AI agents.MIT
Related MCP Connectors
OCR, transcription, file extraction, and image generation for AI agents via MCP.
AI agent draws editable hand-drawn diagrams (flowchart, ER, architecture) via MCP, not static images
AI document editing for agents: draft, edit, export .docx/PDF. 37 MCP tools; agent self-signup.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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/Lway-ai/visio-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server