{
  "info": {
    "name": "DocuPost — mcp.ai",
    "description": "REST API for the DocuPost 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/docupost",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "docupost_get_balance",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/balance",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "balance"
          ]
        },
        "description": "Return the connected DocuPost account's numeric balance. This read does not reveal currency, plan, tier, or sandbox status.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "docupost_send_letter",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/send/letter",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "send",
            "letter"
          ]
        },
        "description": "Submit one letter for paid printing and U.S. postal delivery. This is a non-idempotent physical-mail operation: one call can deduct funds and create real mail, so confirm all content and addresses bef",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"color\": false,\n  \"sender\": {},\n  \"pdf_url\": \"\",\n  \"recipient\": {},\n  \"mail_class\": \"\",\n  \"double_sided\": false,\n  \"service_level\": \"\",\n  \"internal_description\": \"\",\n  \"include_return_envelope\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "docupost_send_postcard",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/send/postcard",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "send",
            "postcard"
          ]
        },
        "description": "Submit one postcard for paid printing and U.S. postal delivery. This is a non-idempotent physical-mail operation: one call can deduct funds and create real mail, so confirm both artworks and all addre",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"size\": \"\",\n  \"sender\": {},\n  \"recipient\": {},\n  \"back_image_url\": \"\",\n  \"front_image_url\": \"\",\n  \"internal_description\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}