Skip to main content
Glama
cbunting99

MCP Code Analysis & Quality Server

by cbunting99
release.ps11.48 kB
# MCP Code Analysis Server Release Script # Version: 1.0.1 param( [switch]$DryRun ) Write-Host "🚀 MCP Code Analysis Server Release Script" -ForegroundColor Green Write-Host "Version: 1.0.1" -ForegroundColor Cyan Write-Host "" # Check directory if (!(Test-Path "package.json")) { Write-Host "❌ package.json not found. Run from project root." -ForegroundColor Red exit 1 } Write-Host "✅ Directory check passed" -ForegroundColor Green # Build Write-Host "🔨 Building project..." -ForegroundColor Yellow try { & npm run build Write-Host "✅ Build successful" -ForegroundColor Green } catch { Write-Host "❌ Build failed" -ForegroundColor Red exit 1 } # Dry run or real release if ($DryRun) { Write-Host "🔍 DRY RUN MODE" -ForegroundColor Yellow try { & npm run release:dry-run Write-Host "✅ Dry run completed" -ForegroundColor Green } catch { Write-Host "❌ Dry run failed" -ForegroundColor Red exit 1 } } else { Write-Host "📤 Publishing..." -ForegroundColor Yellow $confirm = Read-Host "Proceed with release? (y/N)" if ($confirm -match "^[Yy]$") { try { & npm run release Write-Host "✅ Release completed!" -ForegroundColor Green } catch { Write-Host "❌ Release failed" -ForegroundColor Red exit 1 } } else { Write-Host "Release cancelled." -ForegroundColor Yellow } }

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/cbunting99/mcp-code-analysis-server'

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