We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/sandraschi/ocr-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
build.ps1•767 B
# Zed Extension Build Script for OCRDocumentProcessing
# Run this script to build the Rust extension for Zed IDE
rustup target add wasm32-wasip1
Write-Host "Building OCRDocumentProcessing Extension..." -ForegroundColor Green
cargo build --release --target wasm32-wasip1
if ($LASTEXITCODE -eq 0) {
Write-Host "---------------------------------------" -ForegroundColor Green
Write-Host "✅ Build Successful!" -ForegroundColor Green
Write-Host "Next: In Zed, run 'Extensions: Install Dev Extension'" -ForegroundColor Cyan
Write-Host "and select: $PWD" -ForegroundColor Cyan
Write-Host "---------------------------------------" -ForegroundColor Green
} else {
Write-Host "❌ Build failed. Check the Rust errors above." -ForegroundColor Red
}