Skip to main content
Glama

Lulu Print MCP Server

by devlimelabs
index.ts889 B
#!/usr/bin/env node import { StdioServerTransport } from '@modelcontextprotocol/sdk/server/stdio.js'; import { initializeServer, server } from './server.js'; async function main() { try { console.error("Starting Lulu Print MCP Server..."); await initializeServer(); const transport = new StdioServerTransport(); await server.connect(transport); console.error("Lulu Print MCP Server is running"); // Handle graceful shutdown const shutdown = async () => { console.error("Shutting down Lulu Print MCP Server..."); process.exit(0); }; process.on('SIGINT', shutdown); process.on('SIGTERM', shutdown); } catch (error) { console.error("Failed to start Lulu Print MCP Server:", error); process.exit(1); } } main().catch(error => { console.error("Unhandled error:", error); process.exit(1); });

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/devlimelabs/lulu-print-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server