Skip to main content
Glama
deploy.shโ€ข1.18 kB
#!/bin/bash # Hyperion MCP Server - Non-Docker Deployment Script echo "๐Ÿš€ Deploying Hyperion MCP Server to Smithery (No Docker)" # Ensure we're in the right directory cd "$(dirname "$0")" # Install dependencies echo "๐Ÿ“ฆ Installing dependencies..." npm install # Build the project echo "๐Ÿ”จ Building TypeScript..." npm run build # Verify build output if [ ! -f "build/smithery-server.js" ]; then echo "โŒ Build failed - smithery-server.js not found" exit 1 fi echo "โœ… Build successful!" echo "๐Ÿ“ Entry point: src/smithery-server.ts" echo "๐Ÿ—๏ธ Built file: build/smithery-server.js" echo "๐ŸŒ Runtime: Node.js (No Docker)" # Test the server locally (optional) echo "๐Ÿงช Testing server startup..." timeout 5s node build/smithery-server.js || echo "โœ… Server starts correctly" echo "๐ŸŽ‰ Ready for Smithery deployment!" echo "" echo "Use these settings in Smithery:" echo " Repository: https://github.com/cuongpo/hyperion-mcp-server" echo " Base Directory: ." echo " Entry Point: src/smithery-server.ts" echo " Build Command: npm run build" echo " Start Command: node build/smithery-server.js" echo " Runtime: Node.js 18+" echo " Docker: DISABLED"

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/cuongpo/hyperion-mcp-server'

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