AI Image to Markdown
Extract text from images and convert to markdown format using AI vision models
API Documentation
Request Endpoint
Request Parameters
| Parameter Name | Type | Required | Description |
|---|---|---|---|
| imageFile | file (Upload required) | Yes | Supports JPG, PNG, WebP and other common image formats |
File type parameters need to be uploaded first via POST /upload/ai-image-to-markdown to get filePath, then pass filePath to the corresponding file field.
Response Format
data: {"chunk": "data: processed content 1", "type": "stream"}
data: {"chunk": "data: processed content 2", "type": "stream"}
data: {"type": "done"}
AI MCP Documentation
Add this tool to your MCP server configuration:
{
"mcpServers": {
"elysiatools-ai-image-to-markdown": {
"name": "ai-image-to-markdown",
"description": "Extract text from images and convert to markdown format using AI vision models",
"baseUrl": "https://elysiatools.com/mcp/sse?toolId=ai-image-to-markdown",
"command": "",
"args": [],
"env": {},
"isActive": true,
"type": "sse"
}
}
}
You can chain multiple tools, e.g.: `https://elysiatools.com/mcp/sse?toolId=png-to-webp,jpg-to-webp,gif-to-webp`, max 20 tools.
Supports URL file links or Base64 encoding for file parameters.
If you encounter any issues, please contact us at [email protected]