Provides access to code repository hosting where users can clone the MCP server code
Used as the runtime environment for the MCP server with a minimum version requirement of 3.10+
MCP STL 3D Relief Generator
中文 · Introduction to MCP · Wiki
This project provides a MCP server that converts 2D images into 3D relief models in STL format, suitable for 3D printing or rendering.
Features
- Convert any image to a 3D relief model
- Control model dimensions (width, thickness)
- Add optional base to the 3D model
- Invert depth for different relief effects
- Fast processing with immediate download links
Installation
Prerequisites
- Python 3.10+
- uv
Option 1: Local Installation
- Clone the repository:
- Install dependencies:
- Run/Inspect the server:
Usage
JSON Configuration
MCP Tool Parameters
image_path
: Local path or web URL to the input image filemodel_width
: Width of the 3D model in mm (default: 50.0)model_thickness
: Maximum thickness/height of the 3D model in mm (default: 5.0)base_thickness
: Thickness of the base in mm (default: 2.0)skip_depth
: Whether to use the image directly or generate a depth map (default: true)invert_depth
: Invert the relief (bright areas become low instead of high) (default: false)detail_level
: Controls the resolution of the processed image (default: 1.0). At detail_level = 1.0, the image is processed at 320px resolution, producing an STL file typically under 100MB. Higher values improve detail quality but significantly increase both processing time and STL file size. For example, doubling the detail_level can increase file size by 4x or more. Use with caution.
Response
The MCP Tool returns a JSON response with:
Where LLMs can access the generated files from this MCP server, using the provided URLs.
Command Line
You can also use the script directly from the command line to generate a relief model from an image:
External Depth Map Generation
For higher quality depth maps, you can use external depth map generation services like Depth-Anything-V2. This service can generate more accurate depth maps that you can then use with this project:
- Visit https://huggingface.co/spaces/depth-anything/Depth-Anything-V2
- Upload your image to generate a depth map
- Download the generated depth map
- Use this depth map with our converter by setting
skip_depth=false
This approach can provide better 3D relief models, especially for complex images.
How It Works
- The image is processed to create a depth map (darker pixels = lower, brighter pixels = higher)
- The depth map is converted to a 3D mesh with triangular facets
- A base is added to the bottom of the model
- The model is saved as an STL file
Our partners
This server cannot be installed
hybrid server
The server is able to function both locally and remotely, depending on the configuration or use case.
mcp_3d_relief
Related MCP Servers
- -securityAlicense-qualityAn MCP server that generates 2D and 3D game assets from text prompts using AI models from Hugging Face Spaces, allowing developers to easily create game art through Claude Desktop or other MCP clients.Last updated -34JavaScriptMIT License
- Gozlib License
- JavaScriptMIT License
- Rust