Developer Tools
Compare local and hybrid OpenDataLoader extraction to identify PDF pages where formulas, charts, or dense visuals may need AI-assisted parsing
Call this tool from your code in three languages.
# 1) Upload each file first → returns { filePath }
curl -X POST 'https://api.elysiatools.com/upload/formula-chart-heavy-pdf-analyzer' \
-F 'file=@/path/to/pdfFile.ext'
# 2) Call the tool with the returned filePath values
curl -X POST 'https://api.elysiatools.com/en/api/tools/formula-chart-heavy-pdf-analyzer' \
-F 'pdfFile=/public/samples/pdf/sales-dashboard-pdf-example1.pdf' \
-F 'pages=' \
-F 'hybridBackendUrl=' \
-F 'compareHybridFull=true'Send a POST request with your inputs as JSON. File parameters require a separate upload first.
POST https://api.elysiatools.com/en/api/tools/formula-chart-heavy-pdf-analyzer| Name | Type | Required | Description |
|---|---|---|---|
| pdfFile | fileupload required | Yes | — |
| pages | text | No | — |
| hybridBackendUrl | text | No | — |
| compareHybridFull | checkbox | No | — |
Add this tool to your Model Context Protocol server so AI agents can list and call it.
Add this block to your MCP client configuration:
{
"mcpServers": {
"elysiatools-formula-chart-heavy-pdf-analyzer": {
"name": "formula-chart-heavy-pdf-analyzer",
"description": "Compare local and hybrid OpenDataLoader extraction to identify PDF pages where formulas, charts, or dense visuals may need AI-assisted parsing",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=formula-chart-heavy-pdf-analyzer",
"command": "",
"args": [],
"env": {},
"isActive": true,
"type": "sse"
}
}
}After connecting to the SSE endpoint, list the exposed tools:
{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/list"
}Invoke the tool by its id, passing arguments built from its parameters:
{
"jsonrpc": "2.0",
"id": 2,
"method": "tools/call",
"params": {
"name": "formula-chart-heavy-pdf-analyzer",
"arguments": {
"pdfFile": "/public/samples/pdf/sales-dashboard-pdf-example1.pdf",
"pages": "",
"hybridBackendUrl": "",
"compareHybridFull": true
}
}
}HTML result
{
"result": "<div>Processed HTML content</div>",
"error": "Error message (optional)",
"message": "Notification message (optional)",
"metadata": {
"key": "value"
}
}Questions or issues? Contact [email protected]