{
  "info": {
    "name": "QuickBooks — mcp.ai",
    "description": "REST API for the QuickBooks 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/quickbooks",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "quickbooks_create_account",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/account",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "account"
          ]
        },
        "description": "Create a new account in quickbooks with the given parameters.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"account_type\": \"\",\n  \"account_number\": \"\",\n  \"account_sub_type\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "quickbooks_create_customer",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/customer",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "customer"
          ]
        },
        "description": "Create a new customer in quickbooks with the given parameters.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"title\": \"\",\n  \"suffix\": \"\",\n  \"given_name\": \"\",\n  \"family_name\": \"\",\n  \"middle_name\": \"\",\n  \"display_name\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "quickbooks_create_employee",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/employee",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "employee"
          ]
        },
        "description": "Create a new employee in quickbooks.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"given_name\": \"\",\n  \"family_name\": \"\",\n  \"primary_addr\": {}\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "quickbooks_create_vendor",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/vendor",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "vendor"
          ]
        },
        "description": "Create a new vendor in quickbooks with the given details.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"title\": \"\",\n  \"suffix\": \"\",\n  \"given_name\": \"\",\n  \"family_name\": \"\",\n  \"middle_name\": \"\",\n  \"display_name\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "quickbooks_customer_balance_detail",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/customer/balance/detail",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "customer",
            "balance",
            "detail"
          ]
        },
        "description": "Generate a balance detail report for a customer in quickbooks with the given customer id.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"arpaid\": \"\",\n  \"columns\": \"\",\n  \"custom1\": \"\",\n  \"shipvia\": \"\",\n  \"sort_by\": \"\",\n  \"term_ids\": \"\",\n  \"sort_order\": \"\",\n  \"end_duedate\": \"\",\n  \"report_date\": \"\",\n  \"aging_method\": \"\",\n  \"customer_ids\": \"\",\n  \"start_duedate\": \"\",\n  \"department_ids\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "quickbooks_customer_balance_report",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/customer/balance/report",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "customer",
            "balance",
            "report"
          ]
        },
        "description": "Generate a balance report for a customer in quickbooks with the given customer id.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"arpaid\": \"\",\n  \"date_macro\": \"\",\n  \"sort_order\": \"\",\n  \"report_date\": \"\",\n  \"customer_ids\": \"\",\n  \"department_ids\": \"\",\n  \"accounting_method\": \"\",\n  \"summarize_column_by\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "quickbooks_query_account",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/query/account",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "query",
            "account"
          ]
        },
        "description": "Query an account in quickbooks with the given parameters.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"query\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "quickbooks_read_account",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/read/account",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "read",
            "account"
          ]
        },
        "description": "Read an account in quickbooks with the given account id.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"account_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "quickbooks_read_customer",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/read/customer",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "read",
            "customer"
          ]
        },
        "description": "Read a customer in quickbooks with the given customer id.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"customer_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "quickbooks_read_employee",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/read/employee",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "read",
            "employee"
          ]
        },
        "description": "Read an employee's details in quickbooks with the given employee id.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"employee_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "quickbooks_read_vendor",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/read/vendor",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "read",
            "vendor"
          ]
        },
        "description": "Read a vendor in quickbooks with the given vendor id.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"vendor_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "quickbooks_vendor_balance_detail",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/vendor/balance/detail",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "vendor",
            "balance",
            "detail"
          ]
        },
        "description": "Generate a balance detail report for a vendor in quickbooks with the given vendor id.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"appaid\": \"\",\n  \"sort_by\": \"\",\n  \"term_ids\": \"\",\n  \"date_macro\": \"\",\n  \"sort_order\": \"\",\n  \"vendor_ids\": \"\",\n  \"end_duedate\": \"\",\n  \"report_date\": \"\",\n  \"duedate_macro\": \"\",\n  \"start_duedate\": \"\",\n  \"department_ids\": \"\",\n  \"accounting_method\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "quickbooks_vendor_balance_report",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/vendor/balance/report",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "vendor",
            "balance",
            "report"
          ]
        },
        "description": "Get the balance report of a vendor in quickbooks with the given vendor id.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"qzurl\": \"\",\n  \"appaid\": \"\",\n  \"date_macro\": \"\",\n  \"sort_order\": \"\",\n  \"vendor_ids\": \"\",\n  \"report_date\": \"\",\n  \"department_ids\": \"\",\n  \"accounting_method\": \"\",\n  \"summarize_column_by\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}