UNPKG

create-mcp-craft

Version:

Create MCP TypeScript servers with Bun and Hono - the fastest way to scaffold Model Context Protocol servers

10 lines (7 loc) 218 B
#!/usr/bin/env bun import { startServer } from './index.js' // Start server with stdio transport startServer('stdio').catch(error => { console.error('❌ Failed to start stdio server:', error) process.exit(1) })