We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/daveHylde/brreg-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
build-and-run.sh•770 B
#!/bin/bash
# Build and run script for Brreg MCP Server
set -e
echo "🔧 Building Brreg MCP Server..."
# Install dependencies if node_modules doesn't exist
if [ ! -d "node_modules" ]; then
echo "📦 Installing dependencies..."
npm install
fi
# Build project
echo "🏗️ Building TypeScript..."
npm run build
# Check if build was successful
if [ ! -f "dist/index.js" ]; then
echo "❌ Build failed - dist/index.js not found"
exit 1
fi
echo "✅ Build successful!"
echo ""
echo "🚀 To run MCP server:"
echo " npm start"
echo ""
echo "🔧 To configure with Claude Desktop, add this to your claude_desktop_config.json:"
echo ""
cat mcp-config.json
echo ""
echo "📚 Make sure to update the 'cwd' path to your actual installation directory."