YUZU-Hub/wiring-diagram-mcp
MCP server for generating electrical wiring diagrams for campers, boats, and off-grid setups
Platform-specific configuration:
{
"mcpServers": {
"wiring-diagram-mcp": {
"command": "npx",
"args": [
"-y",
"wiring-diagram-mcp"
]
}
}
}Add the config above to .claude/settings.json under the mcpServers key.
An MCP (Model Context Protocol) server that generates electrical wiring diagrams for campers, boats, and off-grid setups.
Powered by VoltPlan.
No setup needed. Use the public MCP server directly:
Claude Code:
claude mcp add wiring-diagram --transport http https://mcp.voltplan.app/mcpClaude Desktop (claude_desktop_config.json):
{
"mcpServers": {
"wiring-diagram": {
"url": "https://mcp.voltplan.app/mcp"
}
}
}Run locally without installation:
Claude Code:
claude mcp add wiring-diagram -- npx wiring-diagram-mcpClaude Desktop (claude_desktop_config.json):
{
"mcpServers": {
"wiring-diagram": {
"command": "npx",
"args": ["wiring-diagram-mcp"]
}
}
}npm install
npm run build
npm run start:httpThe MCP server starts on http://localhost:3001/mcp.
| Environment Variable | Default | Description | |---|---|---| | VOLTPLAN_API_URL | https://voltplan.app | URL of the VoltPlan instance | | PORT | 3001 | Port for the HTTP server |
generate_wiring_diagramGenerate a complete electrical wiring diagram.
Parameters:
| Parameter | Type | Required | Description | |---|---|---|---| | systemName | string | yes | Name of the electrical system | | batteries | array | no | Battery specifications | | loads | array | no | Electrical loads / consumers | | chargers | array | no | Chargers with power so
Loading reviews...