AI Tools
使用AI视觉模型从发票/小票图片中提取关键信息并转换为自定义JSON格式
用三种语言从你的代码中调用此工具。
# 1) Upload each file first → returns { filePath }
curl -X POST 'https://api.elysiatools.com/upload/ai-image-to-receipt-json' \
-F 'file=@/path/to/imageFile.ext'
# 2) Call the tool with the returned filePath values
curl -X POST 'https://api.elysiatools.com/zh/api/tools/ai-image-to-receipt-json' \
-F 'imageFile=/path/to/file.ext' \
-F 'jsonFormat=输入自定义的JSON格式结构,例如:
{
"merchantName": "string or null",
"totalAmount": "number or null",
"date": "string (YYYY-MM-DD) or null",
"items": [
{
"name": "string or null",
"price": "number or null"
}
]
}'以 JSON 形式 POST 提交输入参数。文件类型参数需先单独上传。
POST https://api.elysiatools.com/zh/api/tools/ai-image-to-receipt-json| 参数名 | 类型 | 必填 | 说明 |
|---|---|---|---|
| imageFile | file需先上传 | 是 | 支持 JPG、PNG、WebP 等常见图片格式的发票/小票照片 |
| jsonFormat | textarea | 否 | 留空使用默认格式,或输入自定义JSON结构来指定要提取的字段 |
JSON 结果
{
"key": {...},
"metadata": {
"key": "value"
},
"error": "Error message (optional)",
"message": "Notification message (optional)"
}将此工具加入你的 Model Context Protocol 服务,让 AI 智能体可以列出并调用它。
将以下内容加入你的 MCP 客户端配置:
{
"mcpServers": {
"elysiatools-ai-image-to-receipt-json": {
"name": "ai-image-to-receipt-json",
"description": "使用AI视觉模型从发票/小票图片中提取关键信息并转换为自定义JSON格式",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=ai-image-to-receipt-json",
"command": "",
"args": [],
"env": {},
"isActive": true,
"type": "sse"
}
}
}连接到 SSE 端点后,列出已开放的工具:
{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/list"
}通过工具 id 调用,参数由其参数表构建:
{
"jsonrpc": "2.0",
"id": 2,
"method": "tools/call",
"params": {
"name": "ai-image-to-receipt-json",
"arguments": {
"imageFile": "https://example.com/file.ext",
"jsonFormat": "输入自定义的JSON格式结构,例如:\n{\n \"merchantName\": \"string or null\",\n \"totalAmount\": \"number or null\",\n \"date\": \"string (YYYY-MM-DD) or null\",\n \"items\": [\n {\n \"name\": \"string or null\",\n \"price\": \"number or null\"\n }\n ]\n}"
}
}
}有问题或反馈?请联系 [email protected]