pasie15/tripo-ai-mcp-server
If you are the rightful owner of tripo-ai-mcp-server and would like to certify it and/or have it hosted online, please leave a comment on the right or send an email to dayong@mcphub.com.
This is a Model Context Protocol (MCP) server for the Tripo3D AI API, enabling AI assistants to interact with Tripo's 3D generation capabilities.
Tripo AI MCP Server
This is a Model Context Protocol (MCP) server for the Tripo3D AI API. It allows AI assistants to interact with Tripo's 3D generation capabilities.
Features
- Text to 3D: Generate 3D models from text prompts.
- Image to 3D: Generate 3D models from images (supports local paths with auto-upload).
- Multiview to 3D: Generate 3D models from multiple view images.
- Animation: Animate rigged models.
- Stylization: Apply styles to models.
- Task Status: Check the status of generation tasks.
Installation
npm install -g tripo-ai-mcp-server
Configuration
You need a Tripo3D API secret. You can set it in a .env file or pass it as an environment variable TRIPO_API_SECRET.
Client Configuration
Claude Desktop
Add the following to your claude_desktop_config.json (usually found at %APPDATA%\Claude\claude_desktop_config.json on Windows or ~/Library/Application Support/Claude/claude_desktop_config.json on macOS):
{
"mcpServers": {
"tripo-ai": {
"command": "npx",
"args": [
"-y",
"tripo-ai-mcp-server"
],
"env": {
"TRIPO_API_SECRET": "your_api_secret_here"
}
}
}
}
Usage
Start the server:
tripo-ai-mcp-server
Tools
text_to_3d: Create a 3D model from text.image_to_3d: Create a 3D model from an image.multiview_to_3d: Create a 3D model from multiview images.get_task_status: Check task status.upload_file: Upload a file manually.animate_model: Animate a model.stylize_model: Stylize a model.
Development
- Clone the repo.
npm installnpm run buildnode dist/index.js
License
ISC