loading…
Search for a command to run...
loading…
Extracts structured JSON data from unstructured text using predefined schemas for receipts, invoices, resumes, and emails. It allows users to transform messy te
Extracts structured JSON data from unstructured text using predefined schemas for receipts, invoices, resumes, and emails. It allows users to transform messy text into organized data through built-in or custom-defined fields.
Extract structured JSON from unstructured text. Works with any MCP-compatible client (Claude Desktop, Cursor, etc).
receipt — items, totals, dates, merchant infoinvoice — line items, amounts, due dates, partiesemail — sender, recipients, subject, body, datesresume — name, experience, education, skillscontact — name, email, phone, address, socialcustom — define your own fieldsnpm install -g @avatrix/structureai-mcp
Add to claude_desktop_config.json:
{
"mcpServers": {
"structureai": {
"command": "structureai-mcp"
}
}
}
git clone https://github.com/avatrix1/structureai-mcp.git
cd structureai-mcp
npm install && npm run build
node dist/index.js
The server exposes one tool: extract_structured_data
Parameters:
text (required) — The unstructured text to extract fromschema (required) — One of: receipt, invoice, email, resume, contact, customcustom_fields (optional) — Array of field names when using "custom" schemaapi_key (optional) — Your API key for higher limitsMIT
Add this to claude_desktop_config.json and restart Claude Desktop.
{
"mcpServers": {
"structureai-mcp-server": {
"command": "npx",
"args": []
}
}
}