{
  "info": {
    "name": "Handwrite.io — mcp.ai",
    "description": "REST API for the Handwrite.io MCP. Set {{apiKey}} to a workspace key (sk_live_…) created at https://mcp.ai/settings/api-keys.",
    "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json"
  },
  "auth": {
    "type": "bearer",
    "bearer": [
      {
        "key": "token",
        "value": "{{apiKey}}",
        "type": "string"
      }
    ]
  },
  "variable": [
    {
      "key": "baseUrl",
      "value": "https://api.mcp.ai/api/handwrite",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "handwrite_get_order",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/order",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "order"
          ]
        },
        "description": "Get a Handwrite order by ID, including its current status, test or live environment, addresses, and proof images when available.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"order_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "handwrite_list_handwriting_styles",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/handwriting/styles",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "handwriting",
            "styles"
          ]
        },
        "description": "List the handwriting styles available to the connected Handwrite account, including the style ID required when sending cards and a preview URL.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "handwrite_list_stationery",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/stationery",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "stationery"
          ]
        },
        "description": "List public stationery and custom stationery available to the connected Handwrite account, including the card ID required when sending cards and a preview URL.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "handwrite_send_cards",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/send/cards",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "send",
            "cards"
          ]
        },
        "description": "Create handwritten-card orders for one or more recipients. With a test API key, this creates persistent non-production records and sends no physical cards; with a live API key, it creates billable phy",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"send_requests\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}