{
"mcpServers": {
"meshy-mcp-server": {
"command": "<see-readme>",
"args": []
}
}
}No install config available. Check the server's README for setup instructions.
Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
MCP server for Meshy AI 3D generation platform
Is it safe?
No package registry to scan.
No authentication — any process on your machine can connect.
MIT. View license →
Is it maintained?
Last commit 8 days ago. 5 stars.
Will it work with my client?
Transport: stdio. Works with Claude Desktop, Cursor, Claude Code, and most MCP clients.
No automated test available for this server. Check the GitHub README for setup instructions.
No known vulnerabilities.
This server is missing a description. Tools and install config are also missing.If you've used it, help the community.
Add informationHave you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Query and manage PostgreSQL databases directly from AI assistants
Manage Supabase projects — databases, auth, storage, and edge functions
Asynchronous coordination layer for AI coding agents: identities, inboxes, searchable threads, and advisory file leases over FastMCP + Git + SQLite
Context7 Platform -- Up-to-date code documentation for LLMs and AI code editors
MCP Security Weekly
Get CVE alerts and security updates for Meshy Mcp Server and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
Model Context Protocol (MCP) server for the Meshy AI 3D generation platform. Enables AI agents to create, manage, and download 3D models, textures, images, rigged characters, and animations through natural conversation.
19 tools covering the full Meshy API:
| Category | Tools |
|---|---|
| 3D Generation | meshy_text_to_3d, meshy_text_to_3d_refine, meshy_image_to_3d, meshy_multi_image_to_3d |
| Post-Processing | meshy_remesh, meshy_retexture, meshy_rig, meshy_animate |
| Image Generation | meshy_text_to_image, meshy_image_to_image |
| Task Management | meshy_get_task_status, meshy_list_tasks, meshy_cancel_task, meshy_download_model |
| Workspace | meshy_list_models |
| 3D Printing | meshy_send_to_slicer, meshy_analyze_printability, meshy_process_multicolor |
| Account | meshy_check_balance |
meshy_output/ with project folders, metadata, and history trackingclaude mcp add meshy -- npx -y @meshy-ai/meshy-mcp-server -e MESHY_API_KEY=msy_YOUR_API_KEY
That's it. The server includes built-in workflow instructions — no additional configuration needed.
Add to your Cursor MCP settings (.cursor/mcp.json):
{
"mcpServers": {
"meshy": {
"command": "npx",
"args": ["-y", "@meshy-ai/meshy-mcp-server"],
"env": {
"MESHY_API_KEY": "msy_YOUR_API_KEY"
}
}
}
}
| Environment Variable | Description | Default |
|---|---|---|
MESHY_API_KEY | Required. Your Meshy API key (starts with msy_) | — |
MESHY_API_HOST | API base URL | https://api.meshy.ai |
TRANSPORT | Transport mode: stdio or http | stdio |
PORT | Port for HTTP transport | 3000 |
CHARACTER_LIMIT | Max response size in characters | 25000 |
# Clone and install
git clone https://github.com/meshy-dev/meshy-mcp-server.git
cd meshy-mcp-server
npm install
# Development with hot reload
npm run dev
# Build
npm run build
# Type check
npm run lint
# Run
npm start
For remote access, run in HTTP mode:
TRANSPORT=http PORT=3000 npm start
Endpoints:
POST /mcp — MCP protocol endpointGET /health — Health check