list_attachments
Retrieve a filtered list of attachments from the Norman Finance MCP Server by file name, type, description, brand name, or linkage to transactions.
Instructions
Get list of attachments with optional filters.
Args:
file_name: Filter by file name (case insensitive partial match)
linked: Filter by whether attachment is linked to transactions
attachment_type: Filter by attachment type (invoice, receipt, contract, other)
description: Filter by description (case insensitive partial match)
brand_name: Filter by brand name (case insensitive partial match)
Returns:
List of attachments matching the filters
Input Schema
Name | Required | Description | Default |
---|---|---|---|
attachment_type | No | ||
brand_name | No | ||
description | No | ||
file_name | No | ||
linked | No |
Input Schema (JSON Schema)
{
"properties": {
"attachment_type": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Attachment Type"
},
"brand_name": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Brand Name"
},
"description": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Description"
},
"file_name": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "File Name"
},
"linked": {
"anyOf": [
{
"type": "boolean"
},
{
"type": "null"
}
],
"default": null,
"title": "Linked"
}
},
"title": "list_attachmentsArguments",
"type": "object"
}