Finmei

Finmei is an invoicing tool designed to simplify billing processes, allowing users to create and manage invoices and track expenses efficiently.

24 actions Integration catalog
Request access
Connect Finmei once you're in Boring.
01 · WHAT THE AGENT CAN DO

Actions

Every capability is a discrete, logged action the agent calls by name — scoped to what you authorize and recorded in the run trace.

Create ExpenseFINMEI_CREATE_EXPENSE
Tool to create a new expense with file upload (receipt or invoice). Use when you need to record an expense with supporting documentation. Requires multipart/form-data submission with file, date, total, currency, and seller information.
Create InvoiceFINMEI_CREATE_INVOICE
Creates a new invoice in Finmei with buyer information and line items. Use this when you need to generate an invoice for a customer. You can specify: - Buyer details (person or company) - Products/services with quantities and prices - Invoice type (regular, VAT, preliminary, credit) - Currency, dates, and custom notes Example: "Create an invoice for Tech Solutions Inc with 3 months of support services at $99.99/month"
Delete CustomerFINMEI_DELETE_CUSTOMER
Tool to delete a specific customer by their ID. Use after confirming the correct customer_id to remove the record.
Delete InvoiceFINMEI_DELETE_INVOICE
Tool to delete an invoice. Use when you need to remove an existing invoice by its ID.
Delete PaymentFINMEI_DELETE_PAYMENT
Delete a payment record by its unique identifier. This action permanently removes the payment from the system. Returns success even if the payment doesn't exist (idempotent operation). Use this when you need to remove incorrect, duplicate, or obsolete payment records.
Delete ProductFINMEI_DELETE_PRODUCT
Deletes a product from the Finmei catalog by its unique identifier. This operation is idempotent - calling it multiple times with the same product_id will return success. The tool attempts multiple endpoint patterns to maximize compatibility across different Finmei API deployments. Use this when you need to: - Permanently remove a product from the catalog - Clean up discontinued or obsolete products - Remove test or duplicate product entries Note: If all API endpoints return 404, the action will succeed with a message explaining that the product doesn't exist or the API doesn't support deletion. This follows idempotent DELETE semantics.
Download Expense FileFINMEI_DOWNLOAD_EXPENSE_FILE
Tool to download the file associated with an expense. Returns the expense document file (PDF or image). Use when you need to retrieve the actual file content for an expense.
Download Invoice PDFFINMEI_DOWNLOAD_INVOICE_PDF
Tool to download an invoice as a PDF file. Use when you need to retrieve the PDF version of an invoice.
Get Expense by IDFINMEI_GET_EXPENSE
Tool to retrieve a single expense by its ID. Use when you need to get details about a specific expense including date, total, currency, and seller information.
Get Invoice by IDFINMEI_GET_INVOICE
Tool to retrieve a single invoice by its ID. Use when you need full invoice details including buyer, seller, items, amounts, and payment options.
Get PaymentFINMEI_GET_PAYMENT
Tool to retrieve details of a specific payment by its ID. Use after creating a payment or when you need to confirm payment details.
Get Product by IDFINMEI_GET_PRODUCT
Tool to retrieve a product by its ID. Use when you need detailed information about a single product.
Get ProfileFINMEI_GET_PROFILE
Tool to retrieve main information about the business to which the API token is assigned. Use when needing business ID, title, type, address, VAT code, company name, or company code.
List CurrenciesFINMEI_LIST_CURRENCIES
Tool to list all currencies supported by Finmei. Use when you need to retrieve available currency codes before creating transactions.
List CustomersFINMEI_LIST_CUSTOMERS
Tool to list all customers with optional filters and pagination. Use when needing to browse or search customer records.
List ExpensesFINMEI_LIST_EXPENSES
Tool to list all expenses for the business. Use when you need a paginated list of expenses with metadata.
List InvoicesFINMEI_LIST_INVOICES
Tool to list invoices. Use when you need a paginated list of invoices with basic details.
List PaymentsFINMEI_LIST_PAYMENTS
Tool to retrieve a list of payments. Use when you need to view past payment records with optional filters and pagination.
List ProductsFINMEI_LIST_PRODUCTS
Tool to retrieve a list of products with optional filters and pagination. Use when you need to browse or filter the product catalog.
Update CustomerFINMEI_UPDATE_CUSTOMER
Tool to update an existing customer's details. Use after confirming the customer ID to modify their information.
Update ExpenseFINMEI_UPDATE_EXPENSE
Tool to update an existing expense's fields including date, total, currency, and seller. Use when you need to modify expense details. To update the invoice/bill file, use the Update Expense File endpoint instead.
Update Expense FileFINMEI_UPDATE_EXPENSE_FILE
Updates the file attachment of an existing expense in Finmei. Use this action when you need to attach or replace a receipt/invoice file for an expense. This endpoint is specifically for updating the file only - use the Update Expense action for updating other expense fields like amount, date, or description. The file is uploaded using multipart/form-data content type and typically should be a PDF or image file of the bill/receipt.
Update InvoiceFINMEI_UPDATE_INVOICE
Tool to update an existing invoice in Finmei. Use when you need to modify invoice details such as buyer information, products, dates, or currency.
Update ProductFINMEI_UPDATE_PRODUCT
Updates an existing product in the Finmei product catalog. Use this action when you need to modify product details such as name, description, price, or currency. You must provide the product ID and at least one field to update. The action returns the complete updated product details. Prerequisites: - The product must already exist in the system (obtain product_id from List Products action) - At least one update field (name, description, price, or currency) must be provided Note: This action will fail if the product doesn't exist or if the Finmei API instance doesn't support product management endpoints.