This server gives Claude direct access to STL 3D model manipulation through numpy-stl. It exposes 30+ tools split across reading and writing meshes, applying transformations like translate, rotate, scale, shear, and mirror, generating geometric primitives from cubes to tori, and creating specialized mechanical components like spur gears, crankshafts, and cam lobes. You'd reach for this when you need to programmatically generate or modify 3D printable parts without opening CAD software. The transformation tools support both simple operations and advanced ones like arbitrary axis rotation and circular arrays. All operations work with both ASCII and binary STL formats, making it straightforward to build parametric model generators or batch processing workflows.
MCP server for editing STL 3D model files. Provides tools for parsing, viewing, and manipulating STL files through the Model Context Protocol.
pip install mcp-stl
mcp-name: io.github.daedalus/mcp-stl
from mcp_stl import read_stl_file, create_cube, translate_stl
# Read an existing STL file
mesh = read_stl_file("model.stl")
print(f"Faces: {mesh.face_count}")
# Create a primitive
create_cube("cube.stl", size=2.0)
# Transform a mesh
translate_stl("input.stl", "output.stl", x=10.0, y=0.0, z=5.0)
Configure in your MCP client:
{
"mcpServers": {
"mcp-stl": {
"command": "mcp-stl"
}
}
}
git clone https://github.com/daedalus/mcp-stl.git
cd mcp-stl
pip install -e ".[test]"
# run tests
pytest
# format
ruff format src/ tests/
# lint
ruff check src/ tests/
# type check
mypy src/
miapre/html-to-figma-design-system
ie3jp/illustrator-mcp-server
coding-solo/godot-mcp
ivanmurzak/unity-mcp
yctimlin/mcp_excalidraw
figma/mcp-server-guide