extract-form-data
Extract structured data from forms such as receipts, invoices, and ID documents using Azure Form Recognizer in Orion Vision MCP Server. Input a document URL and specify the form type for accurate analysis.
Instructions
Extracts structured data from forms using Azure Form Recognizer
Input Schema
Name | Required | Description | Default |
---|---|---|---|
formType | Yes | Type of form to analyze | |
url | Yes | URL of the form document to analyze |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"formType": {
"description": "Type of form to analyze",
"enum": [
"receipt",
"invoice",
"idDocument",
"businessCard",
"custom"
],
"type": "string"
},
"url": {
"description": "URL of the form document to analyze",
"format": "uri",
"type": "string"
}
},
"required": [
"url",
"formType"
],
"type": "object"
}