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.
More Generators tools
Barcode Generator
Generate a 1D barcode as an SVG string from text.
Box Shadow Generator
Generate a CSS box-shadow declaration from offset, blur, spread, colour, opacity, and inset settings, or from a named preset (subtle, soft,
Caption Generator
Generate a social-media caption from a topic using built-in templates (no AI): picks a template for the content type and tone, fills in the
Color Palette Generator
Generate a harmonious colour palette from a base hex colour: complementary, analogous, triadic, tetradic, split-complementary, or monochroma
Css Animation Generator
Return CSS @keyframes animation code (or Tailwind config, Web Animations API / React, or Framer Motion code) from a named preset such as fad
Glassmorphism Generator
Generate the CSS for a glassmorphism (frosted glass) card: semi-transparent background, backdrop-filter blur and saturation (with the -webki
Gradient Generator
Generate a CSS linear, radial, or conic gradient from colour stops (2 to 10) and an angle, or from a preset (sunset, ocean, forest, fire, pu
Hashtag Generator
Generate relevant hashtags from keywords using a built-in, rule-based database (no AI): matches keywords against topic categories, scores po