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
run_webapp.pyโข667 B
#!/usr/bin/env python3
"""
Run the OCR-MCP WebApp
"""
import sys
import os
from pathlib import Path
# Add the project root to Python path
project_root = Path(__file__).parent.parent
sys.path.insert(0, str(project_root))
from webapp.backend.app import main
if __name__ == "__main__":
print("๐ Starting OCR-MCP WebApp...")
print("๐ฑ Web interface will be available at: http://localhost:8000")
print("โ Press Ctrl+C to stop the server")
print()
try:
main()
except KeyboardInterrupt:
print("\n๐ OCR-MCP WebApp stopped")
except Exception as e:
print(f"โ Error starting webapp: {e}")
sys.exit(1)