upload_bulk_attachments
Upload multiple file attachments in bulk to Norman Finance MCP Server. Supports optional cashflow type labeling (INCOME or EXPENSE) for streamlined financial workflows.
Instructions
Upload multiple file attachments in bulk.
Args:
file_paths: List of paths to files to upload
cashflow_type: Optional cashflow type for the transactions (INCOME or EXPENSE)
Returns:
Response from the bulk upload request
Input Schema
Name | Required | Description | Default |
---|---|---|---|
cashflow_type | No | ||
file_paths | Yes |
Input Schema (JSON Schema)
{
"properties": {
"cashflow_type": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Cashflow Type"
},
"file_paths": {
"items": {
"type": "string"
},
"title": "File Paths",
"type": "array"
}
},
"required": [
"file_paths"
],
"title": "upload_bulk_attachmentsArguments",
"type": "object"
}