We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/pasie15/tripo-ai-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
README.md•1.71 KiB
# Tripo AI MCP Server
This is a Model Context Protocol (MCP) server for the [Tripo3D AI](https://www.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
```bash
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):
```json
{
"mcpServers": {
"tripo-ai": {
"command": "npx",
"args": [
"-y",
"tripo-ai-mcp-server"
],
"env": {
"TRIPO_API_SECRET": "your_api_secret_here"
}
}
}
}
```
## Usage
Start the server:
```bash
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
1. Clone the repo.
2. `npm install`
3. `npm run build`
4. `node dist/index.js`
## License
ISC