This major update transforms the KiCad MCP server from file-based analysis to a complete EDA automation platform with real-time KiCad integration and automated routing capabilities. 🎯 Key Features Implemented: - Complete FreeRouting integration engine for automated PCB routing - Real-time KiCad IPC API integration for live board analysis - Comprehensive routing tools (automated, interactive, quality analysis) - Advanced project automation pipeline (concept to manufacturing) - AI-enhanced design analysis and optimization - 3D model analysis and mechanical constraint checking - Advanced DRC rule management and validation - Symbol library analysis and organization tools - Layer stackup analysis and impedance calculations 🛠️ Technical Implementation: - Enhanced MCP tools: 35+ new routing and automation functions - FreeRouting engine with DSN/SES workflow automation - Real-time component placement optimization via IPC API - Complete project automation from schematic to manufacturing files - Comprehensive integration testing framework 🔧 Infrastructure: - Fixed all FastMCP import statements across codebase - Added comprehensive integration test suite - Enhanced server registration for all new tool categories - Robust error handling and fallback mechanisms ✅ Testing Results: - Server startup and tool registration: ✓ PASS - Project validation with thermal camera project: ✓ PASS - Routing prerequisites detection: ✓ PASS - KiCad CLI integration (v9.0.3): ✓ PASS - Ready for KiCad IPC API enablement and FreeRouting installation 🚀 Impact: This represents the ultimate KiCad integration for Claude Code, enabling complete EDA workflow automation from concept to production-ready files. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
49 lines
1.5 KiB
Python
49 lines
1.5 KiB
Python
"""
|
|
File content resources for KiCad files.
|
|
"""
|
|
|
|
import os
|
|
|
|
from fastmcp import FastMCP
|
|
|
|
|
|
def register_file_resources(mcp: FastMCP) -> None:
|
|
"""Register file-related resources with the MCP server.
|
|
|
|
Args:
|
|
mcp: The FastMCP server instance
|
|
"""
|
|
|
|
@mcp.resource("kicad://schematic/{schematic_path}")
|
|
def get_schematic_info(schematic_path: str) -> str:
|
|
"""Extract information from a KiCad schematic file."""
|
|
if not os.path.exists(schematic_path):
|
|
return f"Schematic file not found: {schematic_path}"
|
|
|
|
# KiCad schematic files are in S-expression format (not JSON)
|
|
# This is a basic extraction of text-based information
|
|
try:
|
|
with open(schematic_path) as f:
|
|
content = f.read()
|
|
|
|
# Basic extraction of components
|
|
components = []
|
|
for line in content.split("\n"):
|
|
if "(symbol " in line and "lib_id" in line:
|
|
components.append(line.strip())
|
|
|
|
result = f"# Schematic: {os.path.basename(schematic_path)}\n\n"
|
|
result += f"## Components (Estimated Count: {len(components)})\n\n"
|
|
|
|
# Extract a sample of components
|
|
for i, comp in enumerate(components[:10]):
|
|
result += f"{comp}\n"
|
|
|
|
if len(components) > 10:
|
|
result += f"\n... and {len(components) - 10} more components\n"
|
|
|
|
return result
|
|
|
|
except Exception as e:
|
|
return f"Error reading schematic file: {str(e)}"
|