Standalone MCP server for KiCad — migrated from oaslananka/kicad-studio-kit monorepo. Package identity: kicad-mcp-pro (PyPI/npm). Provides LLM-controlled KiCad PCB design via the Model Context Protocol.
- ✓Open-source license (MIT)
- ✓Actively maintained (<30d)
- ✓Clear description
- ✓Topics declared
claude mcp add kicad-mcp -- npx -y kicad-mcp-pro{
"mcpServers": {
"kicad-mcp": {
"command": "npx",
"args": ["-y", "kicad-mcp-pro"]
}
}
}MCP Servers overview
# KiCad MCP Pro <!-- Badges: releases and package distribution --> [](https://github.com/oaslananka/kicad-mcp/releases) [](https://pypi.org/project/kicad-mcp-pro/) [](https://pypi.org/project/kicad-mcp-pro/) [](https://www.npmjs.com/package/kicad-mcp-pro) [](LICENSE) <!-- Badges: quality, CI, and security --> [](https://github.com/oaslananka/kicad-mcp/actions/workflows/ci.yml) [](https://github.com/oaslananka/kicad-mcp/actions/workflows/gui-ci.yml) [](https://github.com/oaslananka/kicad-mcp/actions/workflows/docs.yml) [](https://github.com/oaslananka/kicad-mcp/actions/workflows/codeql.yml) [](https://securityscorecards.dev/viewer/?uri=github.com/oaslananka/kicad-mcp) <!-- Badges: documentation and knowledge base --> [](https://oaslananka.github.io/kicad-mcp/) [](https://deepwiki.com/oaslananka/kicad-mcp) <!-- mcp-name: io.github.oaslananka/kicad-mcp-pro --> KiCad MCP Pro is a Model Context Protocol server for KiCad EDA workflows. It exposes tools, resources, and prompts for schematic, PCB, validation, DFM, and manufacturing export automation. Telemetry and error reporting are disabled by default. Opt-in OpenTelemetry configuration is documented in [`docs/configuration.md`](docs/configuration.md#opentelemetry), and privacy rules are documented in [`docs/privacy.md`](docs/privacy.md). ## Project identity | Field | Value | | --- | --- | | Canonical repository | [`oaslananka/kicad-mcp`](https://github.com/oaslananka/kicad-mcp) | | PyPI package | [`kicad-mcp-pro`](https://pypi.org/project/kicad-mcp-pro/) | | npm wrapper | [`kicad-mcp-pro`](https://www.npmjs.com/package/kicad-mcp-pro) | | MCP Registry name | `io.github.oaslananka/kicad-mcp-pro` | | Version | `3.9.2` | ## Quick Start ### Desktop App Download the latest installer from the [GitHub releases page](https://github.com/oaslananka/kicad-mcp/releases). The Tauri desktop app starts the Python dashboard server automatically and opens the GUI at `http://127.0.0.1:3334/ui`. ### CLI ```bash uvx kicad-mcp-pro init uvx kicad-mcp-pro tray uvx kicad-mcp-pro dashboard --open uvx kicad-mcp-pro --transport streamable-http --port 3334 ``` ### Web Dashboard ```bash uvx kicad-mcp-pro dashboard --host 127.0.0.1 --port 3334 --open # http://127.0.0.1:3334/ui ``` ## Documentation The documentation is organized from setup to operation: 1. [Installation](docs/installation.md) 2. [Client configuration](docs/client-configuration.md) 3. [Runtime configuration](docs/configuration.md) 4. [Tool reference](docs/tools-reference.md) 5. [Workflows](docs/workflows/first-pcb.md) 6. [Release process](docs/release-process.md) 7. [Security and privacy](docs/security/threat-model.md) The published documentation site is available at [https://oaslananka.github.io/kicad-mcp/](https://oaslananka.github.io/kicad-mcp/). ## Transports KiCad MCP Pro supports `stdio` and Streamable HTTP. Streamable HTTP is served at `/mcp` by default and can be moved with `KICAD_MCP_MOUNT_PATH`. ```bash uvx kicad-mcp-pro@3.9.2 --transport streamable-http --host 127.0.0.1 --port 3334 ``` Streamable HTTP clients must send: - `Accept: application/json, text/event-stream` - `Content-Type: application/json` - `MCP-Protocol-Version: 2025-11-25` after initialization - `MCP-Session-Id` on follow-up requests when `KICAD_MCP_STATEFUL_HTTP=1` By default Streamable HTTP is stateless, so ChatGPT-style connectors can initialize and call `tools/list` without a session-header injection proxy. Set `KICAD_MCP_STATEFUL_HTTP=1` to require session IDs after `initialize`. The deprecated HTTP+SSE fallback routes are disabled by default. Set `KICAD_MCP_LEGACY_SSE=1` only for older clients that cannot use Streamable HTTP. ## Install ```bash corepack pnpm run dev:doctor -- --ci uvx kicad-mcp-pro@3.9.2 --help npx kicad-mcp-pro@3.9.2 --help ``` For source checkouts, `corepack pnpm run dev:doctor` validates Node, pnpm, Python, uv, MCP server CLI startup/version reporting, fixture corpus, protocol schemas, common development ports, and optional Cloudflare tunnel tooling. ## Package metadata The canonical metadata source of truth is `server.json`, which defines the MCP server contract. It is synchronized with `pyproject.toml` and verified in CI via `pnpm run metadata:check`. ## Usage Use `kicad-mcp-pro --help` to inspect CLI commands and [`docs/client-configuration.md`](docs/client-configuration.md) to configure an MCP client. The generated tool catalog is available in [`docs/tools-reference.generated.md`](docs/tools-reference.generated.md). ## Development The project uses a `Taskfile.yml` for common development commands. After cloning the repository: ```bash task install # Install all dependencies (pnpm + uv) task verify # Run the local quality gate: lint → format → typecheck → test → build task test # Run unit tests only task lint # Run lint and metadata checks task format # Auto-format the codebase task typecheck # Run strict static type checking task build # Build release artifacts task ci # Run the local equivalent of the full CI pipeline task hooks # Install local git hooks ``` All changes must pass `task verify` before opening a pull request. ## Contributing Read [`CONTRIBUTING.md`](CONTRIBUTING.md) before opening a pull request. All changes must pass the repository's format, lint, type-check, test, workflow, security, and package metadata gates. ## License KiCad MCP Pro is available under the [MIT License](LICENSE).
What people ask about kicad-mcp
What is oaslananka/kicad-mcp?
+
oaslananka/kicad-mcp is mcp servers for the Claude AI ecosystem. Standalone MCP server for KiCad — migrated from oaslananka/kicad-studio-kit monorepo. Package identity: kicad-mcp-pro (PyPI/npm). Provides LLM-controlled KiCad PCB design via the Model Context Protocol. It has 4 GitHub stars and was last updated today.
How do I install kicad-mcp?
+
You can install kicad-mcp by cloning the repository (https://github.com/oaslananka/kicad-mcp) or following the README instructions on GitHub. ClaudeWave also provides quick install blocks on this page.
Is oaslananka/kicad-mcp safe to use?
+
Our security agent has analyzed oaslananka/kicad-mcp and assigned a Trust Score of 87/100 (tier: Trusted). See the full breakdown of passed checks and flags on this page.
Who maintains oaslananka/kicad-mcp?
+
oaslananka/kicad-mcp is maintained by oaslananka. The last recorded GitHub activity is from today, with 5 open issues.
Are there alternatives to kicad-mcp?
+
Yes. On ClaudeWave you can browse similar mcp servers at /categories/mcp, sorted by popularity or recent activity.
Deploy kicad-mcp to your cloud
Ship this repo to production in minutes. Each platform spins up its own environment with editable env vars.
Maintain this repo? Add a badge to your README
Drop the badge into your GitHub README to show it's tracked on ClaudeWave. Each badge links back to this page and reflects the live Trust Score.
[](https://claudewave.com/repo/oaslananka-kicad-mcp)<a href="https://claudewave.com/repo/oaslananka-kicad-mcp"><img src="https://claudewave.com/api/badge/oaslananka-kicad-mcp" alt="Featured on ClaudeWave: oaslananka/kicad-mcp" width="320" height="64" /></a>More MCP Servers
Fair-code workflow automation platform with native AI capabilities. Combine visual building with custom code, self-host or cloud, 400+ integrations.
User-friendly AI Interface (Supports Ollama, OpenAI API, ...)
An open-source AI agent that brings the power of Gemini directly into your terminal.
The fastest path to AI-powered full stack observability, even for lean teams.
🕷️ An adaptive Web Scraping framework that handles everything from a single request to a full-scale crawl!
⭐AI-driven public opinion & trend monitor with multi-platform aggregation, RSS, and smart alerts.🎯 告别信息过载,你的 AI 舆情监控助手与热点筛选工具!聚合多平台热点 + RSS 订阅,支持关键词精准筛选。AI 智能筛选新闻 + AI 翻译 + AI 分析简报直推手机,也支持接入 MCP 架构,赋能 AI 自然语言对话分析、情感洞察与趋势预测等。支持 Docker ,数据本地/云端自持。集成微信/飞书/钉钉/Telegram/邮件/ntfy/bark/slack 等渠道智能推送。