GoModelHub 3D MCP
Enables 3D model generation via natural language, supporting text-to-3D and image-to-3D with remote or local deployment options.
README
GoModelHub 3D MCP
MCP server for the GoModelHub 3D generation API. Use it in Cursor and other Agents with natural language.
| Tool | Description |
|---|---|
generate_3d |
Submit a 3D job; returns taskId |
get_3d_status |
Poll task status once |
generate_3d_and_wait |
Submit and poll until done (recommended) |
Requires Node.js 18+, a platform API Key (gk- / sk-), and a modelCode from Model Marketplace (e.g. hyper3d).
Set your default model once in mcp.json so Agents do not need to pass model every time. You can still override model in a single call when needed.
Default model in mcp.json
| Mode | Where to set | Example |
|---|---|---|
| Remote MCP | headers |
"X-GoModelHub-Default-Model": "hyper3d" |
| Local MCP | env |
"GOMODELHUB_DEFAULT_MODEL": "hyper3d" |
Use the modelCode shown in Model Marketplace for your Key (do not add a tp- prefix).
Option 1: Remote MCP (recommended, zero install)
Limitation: Remote MCP does not support local imagePath. For image-to-3D, use a public image URL; for local image files, use the local MCP below.
Cursor → Settings → MCP → edit mcp.json:
{
"mcpServers": {
"gomodelhub-3d": {
"url": "https://login.gomodelhub.com/mcp/3d",
"headers": {
"Authorization": "Bearer gk-your-platform-key",
"X-GoModelHub-Default-Model": "hyper3d"
}
}
}
}
Option 2: Local MCP (supports imagePath)
1. Install (one-time per machine)
git clone https://github.com/kelouer/GoModelHub-MCP.git
cd GoModelHub-MCP
npm install
npm install -g .
Windows: powershell -ExecutionPolicy Bypass -File scripts/install-global.ps1
macOS/Linux: bash scripts/install-global.sh
Verify: where gomodelhub-3d-mcp (Windows) or which gomodelhub-3d-mcp.
2. Configure
{
"mcpServers": {
"gomodelhub-3d": {
"command": "gomodelhub-3d-mcp",
"env": {
"GOMODELHUB_BASE_URL": "https://login.gomodelhub.com",
"GOMODELHUB_API_KEY": "gk-your-platform-key",
"GOMODELHUB_DEFAULT_MODEL": "hyper3d"
}
}
}
}
See examples/mcp.local.json. Save and Refresh in the MCP panel.
3. Local image (image-to-3D)
{
"model": "v3.1-20260211",
"imagePath": "D:/photos/chair.jpg",
"mode": "image"
}
Supports jpg / png / webp, max 50MB per file.
Comparison
| Remote MCP | Local MCP | |
|---|---|---|
| Install | None | npm install -g . |
| Text-to-3D | ✅ | ✅ |
Public image URL |
✅ | ✅ |
Local imagePath |
❌ | ✅ |
Troubleshooting
| Symptom | Fix |
|---|---|
| disconnected | Run global install; ensure gomodelhub-3d-mcp is on PATH |
| Missing GOMODELHUB_BASE_URL | Check env in mcp.json |
| model is required | Add GOMODELHUB_DEFAULT_MODEL / X-GoModelHub-Default-Model, or pass model in the tool call |
| HTTP 401 / 403 | Invalid key or insufficient quota |
| Remote image-to-3D fails | Do not use imagePath; use public image URL or local MCP |
License
MIT — see LICENSE.
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.