mmex_assets_create
Create a new financial asset in a Money Manager EX database by specifying name, start date, and value. Configure optional properties like currency, depreciation, and notes.
Instructions
Create a new asset in the MMEX database.
Args:
name: The asset name.
start_date: Start date (YYYY-MM-DD).
value: Asset value as decimal string.
status: Asset status: Open or Closed.
currency_id: Currency ID.
value_change_mode: Value change mode: Percentage or Linear.
value_change: Value change: None, Appreciates, or Depreciates.
notes: Notes about the asset.
value_change_rate: Value change rate.
asset_type: Asset type (e.g., Property, Automobile).
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 | ||
| start_date | Yes | ||
| value | Yes | ||
| status | No | Open | |
| currency_id | No | ||
| value_change_mode | No | ||
| value_change | No | ||
| notes | No | ||
| value_change_rate | No | ||
| asset_type | No | ||
| db_path | No | ||
| db_key | No |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |