{
  "info": {
    "name": "Intelliprint — mcp.ai",
    "description": "REST API for the Intelliprint 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/intelliprint",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "intelliprint_cancel_delete_print_job",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/cancel/delete/print/job",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "cancel",
            "delete",
            "print",
            "job"
          ]
        },
        "description": "Cancel or delete an existing print job by its ID. Unconfirmed jobs are deleted immediately; confirmed jobs (not yet shipped) are cancelled with a refund. Important: Testmode print jobs cannot be cance",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"print_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "intelliprint_create_background",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/background",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "background"
          ]
        },
        "description": "Create a new Background by uploading a PDF file. Backgrounds are used as base layers for print jobs (e.g., letterheads, invoice templates). Use this tool when you need to upload a new background PDF t",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"file\": {},\n  \"name\": \"\",\n  \"team\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "intelliprint_create_mailing_list",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/mailing/list",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "mailing",
            "list"
          ]
        },
        "description": "Create a mailing list to store thousands of recipients and send mail items to all of them at once. Use this tool when you need to create a new mailing list for bulk mailings. Recipients can be added i",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"recipients\": \"\",\n  \"address_validation\": {}\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "intelliprint_create_mailing_list_recipient",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/mailing/list/recipient",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "mailing",
            "list",
            "recipient"
          ]
        },
        "description": "Tool to create a new recipient within a mailing list. Use when you need to add an individual contact who will receive mail campaigns. Recipients must have at minimum an address line; name, postcode, a",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"address\": {},\n  \"variables\": {},\n  \"mailing_list\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "intelliprint_create_print_job",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/print/job",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "print",
            "job"
          ]
        },
        "description": "Create a new print job in Intelliprint by uploading a document. Use this tool to submit documents for postal mailing. Jobs can be created as drafts (confirmed=False) for review/editing, or confirmed i",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"file\": {},\n  \"metadata\": {},\n  \"testmode\": false,\n  \"confirmed\": false,\n  \"reference\": \"\",\n  \"splitting_method\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "intelliprint_delete_background",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/background",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "background"
          ]
        },
        "description": "Tool to delete a background by ID. Use when you need to remove a background that is no longer needed. Fails if any print job has used this background in the last 90 days.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"background_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "intelliprint_delete_mailing_list",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/mailing/list",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "mailing",
            "list"
          ]
        },
        "description": "Tool to delete a mailing list along with all the recipients in the mailing list. Use when you need to remove a mailing list permanently.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "intelliprint_delete_mailing_list_recipient",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/mailing/list/recipient",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "mailing",
            "list",
            "recipient"
          ]
        },
        "description": "Delete a recipient by ID from a specified mailing list. Use when you need to remove a recipient from a mailing list.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\",\n  \"mailing_list\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "intelliprint_get_mailing_list",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/mailing/list",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "mailing",
            "list"
          ]
        },
        "description": "Tool to retrieve a single mailing list by its ID. Use when you need details about a specific mailing list including recipients count, address validation status, and dynamic variables.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "intelliprint_get_mailing_list_recipient",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/mailing/list/recipient",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "mailing",
            "list",
            "recipient"
          ]
        },
        "description": "Tool to retrieve a single recipient by ID within a specified mailing list. Use when you need details about a specific mailing list recipient.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\",\n  \"mailing_list\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "intelliprint_list_backgrounds",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/backgrounds",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "backgrounds"
          ]
        },
        "description": "Tool to list backgrounds with optional filtering and pagination. Use after uploading or managing backgrounds to retrieve current entries. Example: 'List backgrounds for team=team_1234 with limit=50 an",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"skip\": 0,\n  \"team\": \"\",\n  \"limit\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "intelliprint_list_mailing_list_recipients",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/mailing/list/recipients",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "mailing",
            "list",
            "recipients"
          ]
        },
        "description": "Tool to list all recipients in a mailing list with pagination and sorting options. Use when you need to retrieve recipients from a specific mailing list.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"skip\": 0,\n  \"limit\": 0,\n  \"fields\": \"\",\n  \"sort_field\": \"\",\n  \"sort_order\": \"\",\n  \"mailing_list\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "intelliprint_list_mailing_lists",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/mailing/lists",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "mailing",
            "lists"
          ]
        },
        "description": "Tool to list all available mailing lists with pagination and sorting options. Use when you need to retrieve mailing lists for print jobs or to view existing lists.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"skip\": 0,\n  \"limit\": 0,\n  \"fields\": \"\",\n  \"sort_field\": \"\",\n  \"sort_order\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "intelliprint_list_print_jobs",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/print/jobs",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "print",
            "jobs"
          ]
        },
        "description": "Tool to list print jobs with optional filters and pagination. Use after confirming API key.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"skip\": 0,\n  \"limit\": 0,\n  \"testmode\": false,\n  \"confirmed\": false,\n  \"letters.status\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "intelliprint_list_templates",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/templates",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "templates"
          ]
        },
        "description": "Tool to list all available templates. Use after authenticating API key to browse available templates.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"skip\": 0,\n  \"limit\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "intelliprint_merge_files",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/merge/files",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "merge",
            "files"
          ]
        },
        "description": "Merges multiple PDF, RTF, or Word documents into a single PDF file. Use this tool when you need to: - Combine multiple PDF files into one - Merge Word documents (.doc, .docx) into a single PDF - Combi",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"files\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "intelliprint_retrieve_background",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/retrieve/background",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "retrieve",
            "background"
          ]
        },
        "description": "Tool to retrieve a specific Background by ID. Use when you need background details before further processing.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"background_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "intelliprint_retrieve_print_job",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/retrieve/print/job",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "retrieve",
            "print",
            "job"
          ]
        },
        "description": "Tool to retrieve details of a Print Job by its ID. Use when you have a valid print_id and need full job specifications.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"print_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "intelliprint_update_background",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/background",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "background"
          ]
        },
        "description": "Tool to update an existing Background's name or team. Use when you need to change a background after creation. Example: 'Update background bg_123abc to new name'.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"team\": \"\",\n  \"background_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "intelliprint_update_mailing_list",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/mailing/list",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "mailing",
            "list"
          ]
        },
        "description": "Tool to update a mailing list. Use when you need to update the name, add or replace recipients in bulk, or configure address validation. Can add recipients to existing list or replace all recipients b",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\",\n  \"name\": \"\",\n  \"recipients\": \"\",\n  \"delete_old_recipients\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "intelliprint_update_mailing_list_recipient",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/mailing/list/recipient",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "mailing",
            "list",
            "recipient"
          ]
        },
        "description": "Tool to update an existing recipient in a mailing list by ID. Use when you need to modify recipient address details or custom variables for personalized mailings.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\",\n  \"address\": {},\n  \"variables\": {},\n  \"mailing_list\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}