We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/rjn32s/mcp-ocr'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
__main__.py•419 B
#!/usr/bin/env python3
"""
Command-line entry point for the MCP OCR Server.
"""
import argparse
from .server import mcp
def main():
"""MCP OCR: Extract text from images using OCR."""
parser = argparse.ArgumentParser(
description="Extract text from images using OCR with support for local files, URLs, and image data."
)
parser.parse_args()
mcp.run()
if __name__ == "__main__":
main()