
- Added environment variable support for configuring KiCad project search paths - Implemented auto-detection of common project directories (~/pcb, ~/Electronics, etc.) - Created .env file support for user-friendly configuration - Added utility module for environment variable loading and management - Updated documentation with detailed configuration options and troubleshooting steps - Improved logging to help diagnose path-related issues - Removed hardcoded paths to make the MCP server more generally usable
17 lines
507 B
Plaintext
17 lines
507 B
Plaintext
# Example environment file for KiCad MCP Server
|
|
# Copy this file to .env and customize the values
|
|
|
|
# Additional directories to search for KiCad projects (comma-separated)
|
|
# KICAD_SEARCH_PATHS=~/pcb,~/Electronics,~/Projects/KiCad
|
|
|
|
# Override the default KiCad user directory
|
|
# KICAD_USER_DIR=~/Documents/KiCad
|
|
|
|
# Override the default KiCad application path
|
|
# macOS:
|
|
# KICAD_APP_PATH=/Applications/KiCad/KiCad.app
|
|
# Windows:
|
|
# KICAD_APP_PATH=C:\Program Files\KiCad
|
|
# Linux:
|
|
# KICAD_APP_PATH=/usr/share/kicad
|