Purchase Order Generator

Generators REST API MCP

Return a purchase order as structured data and as Markdown text: line items with amounts, subtotal, tax, shipping, and total, plus company, vendor, shipping, dates, notes, and terms. Amounts use 2 decimals. This tool does not produce a PDF.

This page documents the MCP tool findutils:purchase_order_generator. See the REST reference →

Call it over MCP

Tool name findutils:purchase_order_generator · no API keys · 120 requests/min per IP

Claude Code

claude mcp add findutils --transport http https://mcp.findutils.com/

Claude Desktop — claude_desktop_config.json

{
  "mcpServers": {
    "findutils": {
      "url": "https://mcp.findutils.com/"
    }
  }
}

Raw JSON-RPC (any MCP client) — verified example

curl -X POST https://mcp.findutils.com/ \
  -H "Content-Type: application/json" \
  -d '{
    "jsonrpc": "2.0",
    "id": 1,
    "method": "tools/call",
    "params": {
      "name": "purchase_order_generator",
      "arguments": {
        "company_name": "Acme Ltd",
        "vendor_name": "Widgets Inc",
        "po_number": "PO-000123",
        "po_date": "2026-01-15",
        "currency": "USD",
        "items": [
          {
            "description": "Widget",
            "quantity": 2,
            "unit_price": 10
          }
        ],
        "tax_rate": 10,
        "shipping_cost": 3
      }
    }
  }'

Input schema

Argument Type Required Description
company_name string no Buyer company name.
company_address string no Buyer address; newlines separate lines.
vendor_name string no Vendor name.
vendor_address string no Vendor address.
vendor_contact string no Vendor contact (email or phone).
po_number string no Purchase order number. Default: PO-<timestamp>.
po_date string no Order date as YYYY-MM-DD. Default: today (UTC).
delivery_date string no Requested delivery date as YYYY-MM-DD.
currency string (USD | EUR | GBP | TRY | CAD | AUD) no Currency code. Default: USD.
shipping_address string no Ship-to address when it differs from the buyer address.
shipping_method string no Shipping method.
items array yes Line items: { description, quantity, unit_price, item_number?, unit? }. 1-200 items.
tax_rate number no Tax rate in percent applied to the subtotal. Default: 0.
shipping_cost number no Shipping cost added after tax. Default: 0.
notes string no Notes printed on the order.
terms string no Terms and conditions.

Example arguments (verified)

{
  "company_name": "Acme Ltd",
  "vendor_name": "Widgets Inc",
  "po_number": "PO-000123",
  "po_date": "2026-01-15",
  "currency": "USD",
  "items": [
    {
      "description": "Widget",
      "quantity": 2,
      "unit_price": 10
    }
  ],
  "tax_rate": 10,
  "shipping_cost": 3
}

Also a REST endpoint

The same tool answers plain HTTP at POST /api/tools/purchase-order-generator/execute — no key, 60 requests/min.

Open the REST reference for Purchase Order Generator →

More Generators tools