mmex_accounts_create
Add a new account to a Money Manager EX database. Define name, currency, type, balance, and status to manage financial accounts.
Instructions
Create a new account in the MMEX database.
Args:
name: The account name.
currency_id: Currency ID.
account_type: Account type: Cash, Checking, Term, Investment, CreditCard, Loan, Asset, Shares.
account_num: Account number.
status: Account status: Open or Closed.
notes: Notes about the account.
initial_balance: Initial balance as decimal string (e.g., '1000.00').
favorite: Whether the account is a favorite.
db_path: Path to the .mmb database file. Optional if MMEX_DB_PATH env var is set.
db_key: Encryption key for SQLCipher databases. Optional if MMEX_DB_KEY env var is set.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| name | Yes | ||
| currency_id | Yes | ||
| account_type | No | Checking | |
| account_num | No | ||
| status | No | Open | |
| notes | No | ||
| initial_balance | No | 0 | |
| favorite | No | ||
| db_path | No | ||
| db_key | No |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |