Norman Finance MCP Server

Official
MIT License
1

categorize_transaction

Automatically categorize transactions by analyzing amount, description, and type using AI to simplify financial management for Norman Finance users.

Instructions

Detect category for a transaction using AI. Args: transaction_amount: Amount of the transaction transaction_description: Description of the transaction transaction_type: Type of transaction ("income" or "expense") Returns: Suggested category information for the transaction

Input Schema

NameRequiredDescriptionDefault
transaction_amountYes
transaction_descriptionYes
transaction_typeYes

Input Schema (JSON Schema)

{ "properties": { "transaction_amount": { "title": "Transaction Amount", "type": "number" }, "transaction_description": { "title": "Transaction Description", "type": "string" }, "transaction_type": { "title": "Transaction Type", "type": "string" } }, "required": [ "transaction_amount", "transaction_description", "transaction_type" ], "title": "categorize_transactionArguments", "type": "object" }
ID: akjl8hgv47