npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@typecad/typecad-mcp

v0.2.3

Published

An MCP server for typeCAD

Readme

typeCAD MCP Server

An MCP (Model Context Protocol) server that provides AI assistants with direct access to typeCAD tools and workflows. This enables seamless integration between AI coding assistants and typeCAD's electronic design automation capabilities.

What is MCP?

MCP (Model Context Protocol) is a standard that allows AI assistants to connect to external tools and data sources. This server exposes typeCAD's functionality as MCP tools, letting AI assistants create projects, add components, validate designs, and more.

Features

The server provides these typeCAD tools to AI assistants:

  • 🏗️ Create Project - Initialize new typeCAD projects with optional PlatformIO support
  • 🧩 Add Component - Add components from KiCAD libraries or JLCPCB catalog
  • 📄 PDF to Text - Convert component datasheets from PDF to text format
  • 📚 Download Docs - Fetch the latest typeCAD documentation
  • ✅ Validate Component - Verify component definitions against datasheets
  • 📦 Create Package - Generate complete IC packages from datasheets and schematics

Passive Components

Quick access to common passive components using the @typecad/passives package:

  • 💈 Add Resistor - Create resistors with value, wattage, voltage rating options
  • 🪫 Add Capacitor - Create capacitors with value, voltage rating options
  • 💡 Add LED - Create LEDs with voltage and brightness specifications
  • 🔌 Add Diode - Create diodes with voltage and efficiency specifications
  • 🌀 Add Inductor - Create inductors with inductance value specifications
  • 🔒 Add Fuse - Create fuses with current and voltage ratings
  • 🔗 Add Connector - Create connectors with pin count and footprint options
  • 🎯 Add Testpoint - Create testpoints with custom footprint options

Power Management

Tools for defining and managing power in your designs:

  • 🔋 Add Power Source - Define power sources like batteries and regulators with voltage specs
  • ⚡ Add Power Input - Define power input requirements for components and modules

PCB Layout & Routing

Advanced PCB design tools for layout and routing:

  • 🔗 Add Via - Create vias for layer transitions with size, drill, and power specifications
  • 🛤️ Add Track - Create PCB tracks with power-aware routing and layer management

Connections & Networking

Tools for managing electrical connections between components:

  • 🏷️ Create Named Net - Create named connections between pins for better organization
  • 🔌 Connect Pins - Connect multiple pins together in electrical networks

Component Management

Advanced component creation and modification tools:

  • 🧩 Create Custom Component - Create custom components with named pins and power specs
  • ⚙️ Set Component Properties - Modify component properties like DNP, reference, value, etc.

Design Validation

Comprehensive design checking and validation tools:

  • ✅ Validate Design - Run comprehensive design validation including power and ERC checks
  • 🔍 Run ERC - Run Electrical Rules Check to validate pin connections and compatibility

Installation

Install globally via npm:

npm install -g @typecad/typecad-mcp

Configuration

Add this to your MCP configuration file:

{
  "mcpServers": {
    "typecad-mcp": {
      "command": "npx",
      "args": ["-y",
        "@typecad/typecad-mcp"
      ],
      "env": {}
    }
  }
}

Usage

Once configured, AI assistants can use typeCAD tools directly in conversation:

  • "Create a new typeCAD project called 'sensor-board'"
  • "Add the ESP32-S3 microcontroller to my project"
  • "Validate this component against its datasheet"
  • "Create a package for this voltage regulator IC"
  • "Add a resistor/capacitor/inductor/diode/LED/fuse/testpoint/connector"
  • "Add a power source"

The AI assistant will automatically call the appropriate MCP tools and guide you through any required inputs.

Requirements

  • Node.js 18 or higher
  • typeCAD CLI tools (installed automatically when needed)

License

MIT