Receipt → expense report

The chore everyone defers until the end of the month. Paste the receipt — crumpled text and all — and the agent files it: vendor from the header, amount from the total line, date, and a category picked from your chart of accounts, not free text.

The tools

ToolKindWhat it does
fill_vendorElement (<wmcp-input expose>)Sets where the money went
fill_amountElement (<wmcp-input type="number" expose>)Sets the total — schema says number, not string
fill_dateElement (<wmcp-input expose>)Sets the date
fill_categoryElement (<wmcp-select expose>)Picks Meals / Travel / Software / Office — enum
add_expenseElement (<wmcp-button expose>)Appends the row to the report

How it works

Same shape as the CRM lead example — the agent surface is all markup:

<wmcp-input name="amount" label="Amount ($)" type="number" expose />
<wmcp-select name="category" label="Category" expose>
  <option>Meals</option>
  <option>Travel</option>
  <option>Software</option>
  <option>Office</option>
</wmcp-select>

Note the typed schema: type="number" on the input makes the tool's value a JSON Schema number, so "$19.50" arrives as 19.5, not a string to sanitize later. And the category enum means expense reports stop growing creative new categories like "food stuff" — the agent can only file into buckets that exist.