1. Conduid
  2. Developer Tools
  3. solidworks-server
MCP server · Developer Tools

solidworks-server

Solidworks MCP using Typescript

Unclaimed blockchain
44Fair

Scored 5 months ago · breakdown

About solidworks-server

solidworks-server is an MCP server published by git+vespo92 in the Developer Tools category: solidworks MCP using Typescript. It has been installed 0 times through Conduid.

Install

Install
npx solidworks-mcp-server
Claude Code
claude mcp add solidworksmcp-ts -- npx -y solidworks-mcp-server
npx
npx -y solidworks-mcp-server

This server has no ConduID identity, so agent calls to it are not receipted. Pin the version you install and review the source before granting it credentials.

Ask AI

Ask AI about solidworks-server

Powered by Claude · Grounded in docs

I know everything about solidworks-server. Ask me about installation, configuration, usage, or troubleshooting.

Security checks

  • ·README presentNot checked yet.
  • ·License declaredNot checked yet.
  • ·Tests presentNot checked yet.
  • ·Dependencies pinnedNot checked yet.
  • ·No dynamic code executionNot checked yet.
  • !Scoped permissionsDoesn't declare a permission scope. Assume it can do anything its process can.

README

SolidWorks MCP Server

TypeScript MCP Compatible Node.js Windows

A Node.js MCP server for automating SolidWorks via COM interop. Connects AI assistants (Claude Desktop, etc.) to SolidWorks for CAD automation tasks.

Project Status: Alpha / Experimental

This project is under active development. While the architecture is in place and basic operations (sketch planes, simple extrusions) have been demonstrated, most tools have not been validated against a live SolidWorks instance. Expect rough edges, COM quirks, and incomplete functionality. Contributions and testing reports are very welcome.

How It Works

The server exposes SolidWorks operations as MCP tools over stdio. An intelligent routing layer handles a key limitation of Node.js COM bridges: methods with 13+ parameters often fail via direct COM calls.

  • Simple operations (12 params or fewer) - Direct COM call via winax
  • Complex operations (13+ params) - Auto-generated VBA macro executed by SolidWorks
  • Failed operations - Automatic fallback with error context

Prerequisites

  • Windows 10/11 (required - COM interop is Windows-only)
  • SolidWorks 2021-2025 (licensed, installed)
  • Node.js 20+
  • An MCP-compatible client (Claude Desktop, etc.)

Installation

git clone https://github.com/vespo92/SolidworksMCP-TS.git
cd SolidworksMCP-TS

# Install dependencies (compiles winax native module for your system)
npm install

# Build TypeScript
npm run build

Note: The winax native module must be compiled locally on each Windows machine. Global npm installation does not work.

Configure Claude Desktop

Add to your claude_desktop_config.json:

{
  "mcpServers": {
    "solidworks": {
      "command": "node",
      "args": ["C:/path/to/SolidworksMCP-TS/dist/index.js"],
      "env": {
        "SOLIDWORKS_PATH": "C:\\Program Files\\SOLIDWORKS Corp\\SOLIDWORKS",
        "ADAPTER_TYPE": "winax-enhanced"
      }
    }
  }
}

Available Tools

The server registers tools across these categories:

Category Tools Status
Modeling create_part, create_extrusion, create_revolve, create_sweep, create_loft, create_fillet, create_chamfer, etc. Partially tested
Sketch create_sketch, add_line, add_circle, add_rectangle, add_arc, add_constraints, dimension_sketch Basic ops verified
Drawing create_drawing_from_model, add_drawing_view, add_section_view, add_dimensions, etc. Untested
Export export_file (STEP, IGES, STL, PDF, DWG, DXF), batch_export Untested
Analysis get_mass_properties, check_interference, measure_distance, check_geometry Untested
VBA Generation generate_vba_script, vba_sheet_metal, vba_configurations, vba_equations, etc. Code generation works; execution untested
Macro macro_start_recording, macro_stop_recording, macro_export_vba Untested

"Partially tested" means the tool has been run against SolidWorks at least once but not comprehensively. "Untested" means only mock/unit tests exist (if any).

Architecture

MCP Protocol (stdio)
    |
Tool Registry (index.ts)
    |
Feature Complexity Analyzer --- routes by param count
    |                    |
Direct COM (winax)    VBA Macro Generator
    |                    |
    +--------------------+
    |
SolidWorks COM API

Key Design Decisions

  • COM parameter limit workaround: SolidWorks API methods like FeatureExtrusion3 take 20+ parameters. Node.js COM bridges choke on these. The complexity analyzer detects this and generates a VBA macro instead.
  • Never pass null to COM: Use undefined for optional parameters. COM interprets null as VT_NULL, causing type mismatch errors (this was the root cause of SelectByID2 failures).
  • Feature tree traversal over SelectByID2: FeatureByPositionReverse() + GetTypeName2() is more reliable for finding sketches than SelectByID2.
  • Winston logger only: Never use console.* - it corrupts the JSON-RPC stdio transport.

Development

npm run build        # TypeScript compile
npm run dev          # Hot-reload dev server (tsx watch)
npm run check        # TypeScript + Biome lint in one command
npm run lint         # Biome lint check
npm run lint:fix     # Biome auto-fix
npm run format       # Biome format
npm run typecheck    # Type check without emit

Testing

See TESTING.md for the full testing guide.

# Unit tests (mock adapter, no SolidWorks needed)
USE_MOCK_SOLIDWORKS=true npm test

# Watch mode
npm run test:watch

Current test status: Unit tests exist for config and environment utilities. Most tool modules lack test coverage. Integration tests require a Windows machine with SolidWorks and have not been run in CI.

Known Issues & Limitations

  • No CI integration testing - Tests only run against mocks. Real SolidWorks integration tests require a self-hosted Windows runner that doesn't exist yet.
  • winax compilation - Must be compiled locally on each machine. No pre-built binaries.
  • Edge.js adapter - Defined in architecture but not implemented.
  • PowerShell bridge - Defined in architecture but not implemented.
  • Connection pooling / circuit breaker - Referenced in code but not battle-tested.
  • Performance metrics are unverified - No real benchmarking has been done.

What Has Worked

Based on development testing:

  • Connecting to a running SolidWorks instance via COM
  • Creating sketch planes and basic sketch geometry
  • Simple extrusions with limited parameters
  • Feature tree traversal for sketch selection
  • VBA macro code generation (execution path needs more testing)

Roadmap

  • Comprehensive integration test suite on real SolidWorks
  • CI with self-hosted Windows runner
  • Validate all modeling tools end-to-end
  • Validate drawing and export tools
  • Edge.js adapter for .NET runtime path
  • PowerShell bridge as alternative COM path
  • Performance benchmarking with real metrics

Contributing

See CONTRIBUTING.md for guidelines.

Key areas where help is needed:

  • Testing against real SolidWorks - The biggest gap. If you have SolidWorks, running tools and reporting results is extremely valuable.
  • COM interop edge cases - Different SolidWorks versions behave differently.
  • Additional tool implementations - Many SolidWorks API methods aren't exposed yet.

Troubleshooting

For winax native build failures on Windows 11 Build 26200+ / VS 2022 BuildTools 17.14+ (issue #23) and other install-time problems, see TROUBLESHOOTING.md.

COM Registration Issues

regsvr32 "C:\Program Files\SOLIDWORKS Corp\SOLIDWORKS\sldworks.tlb"

Build Issues

rm -rf node_modules dist
npm install
npm run build

Debug Logging

ENABLE_LOGGING=true LOG_LEVEL=debug node dist/index.js

License

MIT - See LICENSE

Acknowledgments

  • winax - COM bridge for Node.js
  • Anthropic MCP - Model Context Protocol
  • SolidWorks API documentation

README mirrored from the source repository 5 months ago. The original is authoritative.

Questions

About solidworks-server

How do I install solidworks-server?

Run npx solidworks-mcp-server, then add the server to your MCP client's configuration. Conduid has recorded 0 installs, so the command is known to work with current clients.

Is solidworks-server safe to use with an AI agent?

Its trust score is 44 out of 100 (fair). It passes 0 of 1 static security checks; the failures are listed above. It has no ConduID identity yet, so agent calls to it are not receipted.

Is solidworks-server still maintained?

Conduid hasn't recorded a commit date for this repository yet. Check the repository directly for recent activity.