Skip to main content
Glama

SSH MCP Server

by balloonf
check_cache.ps11.66 kB
# UV 캐시 상태 확인 스크립트 Write-Host "📊 UV 캐시 상태 정보" -ForegroundColor Green Write-Host "===================" -ForegroundColor Green # 캐시 위치 $cacheDir = "C:\Users\ballf\AppData\Local\uv\cache" Write-Host "📍 캐시 위치: $cacheDir" -ForegroundColor Cyan # 캐시 크기 계산 try { $items = Get-ChildItem $cacheDir -Recurse -ErrorAction SilentlyContinue $totalSize = ($items | Measure-Object -Property Length -Sum).Sum $sizeMB = [math]::Round($totalSize/1MB, 2) $fileCount = $items.Count Write-Host "💾 캐시 크기: $sizeMB MB" -ForegroundColor Yellow Write-Host "📁 파일 수: $fileCount 개" -ForegroundColor Yellow } catch { Write-Host "❌ 캐시 크기 계산 오류: $($_.Exception.Message)" -ForegroundColor Red } # 캐시 하위 디렉토리 정보 Write-Host "" Write-Host "📂 캐시 디렉토리 구조:" -ForegroundColor Cyan Get-ChildItem $cacheDir -Directory | ForEach-Object { $subDirSize = 0 try { $subItems = Get-ChildItem $_.FullName -Recurse -ErrorAction SilentlyContinue $subDirSize = [math]::Round(($subItems | Measure-Object -Property Length -Sum).Sum/1MB, 2) } catch {} Write-Host " 🗂️ $($_.Name): $subDirSize MB" -ForegroundColor White } Write-Host "" Write-Host "🧹 캐시 정리 명령어:" -ForegroundColor Green Write-Host " • uv cache clean - 모든 캐시 삭제" -ForegroundColor White Write-Host " • uv cache prune - 사용하지 않는 캐시만 삭제" -ForegroundColor White Write-Host " • uv cache clean 패키지명 - 특정 패키지 캐시만 삭제" -ForegroundColor White

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/balloonf/ssh_mcp'

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