We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/AI-Riksarkivet/oxenstierna'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
models.py•328 B
from pydantic import BaseModel
class TextLine(BaseModel):
id: str
polygon: str
transcription: str
hpos: int
vpos: int
width: int
height: int
confidence: float | None = None
class TextLayer(BaseModel):
text_lines: list[TextLine]
page_width: int
page_height: int
full_text: str