Skip to main content
Glama
cuongpo

Rootstock MCP Server

by cuongpo
build-smithery.sh942 B
#!/bin/bash # Build script for Smithery deployment set -e echo "🏗️ Building Rootstock MCP Server for Smithery..." # Clean previous builds echo "🧹 Cleaning previous builds..." rm -rf build/ rm -rf dist/ # Install dependencies echo "📦 Installing dependencies..." npm ci # Build TypeScript echo "🔨 Building TypeScript..." npm run build # Validate build echo "✅ Validating build..." if [ ! -f "build/index.js" ]; then echo "❌ Build failed: index.js not found" exit 1 fi # Test the server starts echo "🧪 Testing server startup..." timeout 10s node build/index.js > /dev/null 2>&1 || true echo "✅ Build completed successfully!" echo "📋 Build artifacts:" echo " - build/index.js (main server)" echo " - build/ (compiled TypeScript)" echo " - package.json (dependencies)" echo " - smithery.yaml (MCP configuration)" echo "" echo "🚀 Ready for Smithery deployment!" echo " Use: smithery deploy"

Latest Blog Posts

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/rootstock-mcp'

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