UNPKG

@spryker-sdk/spryker-mcp-server

Version:

AI-powered e-commerce server that enables intelligent shopping assistants for Spryker Commerce OS platforms

16 lines (12 loc) 313 B
#!/usr/bin/env node /** * Spryker MCP Server Launcher * * This script starts the Spryker MCP Server with the appropriate configuration */ import { main } from '../dist/src/index.js'; // Start the server main().catch(error => { console.error('Failed to start application:', error); process.exit(1); });