We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/jagjerez-org/3d-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
index.ts•589 B
#!/usr/bin/env node
/**
* 3D MCP Server — AI-driven 3D model generation with OpenSCAD
*/
import { ThreeDMCPServer } from './mcp-server.js';
async function main() {
const server = new ThreeDMCPServer();
process.on('SIGINT', () => {
console.error('\n🛑 Shutting down 3D MCP Server...');
process.exit(0);
});
process.on('SIGTERM', () => {
console.error('\n🛑 Shutting down 3D MCP Server...');
process.exit(0);
});
await server.start();
}
main().catch((error) => {
console.error('❌ Failed to start 3D MCP Server:', error);
process.exit(1);
});