{
  "info": {
    "name": "GorillaDesk — mcp.ai",
    "description": "REST API for the GorillaDesk 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/gorilladesk",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "gorilladesk_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 GorillaDesk customer together with the required primary service location. This is a permanent side effect: GorillaDesk exposes no customer-delete API, so the created business record cannot be",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"email\": \"\",\n  \"phones\": \"\",\n  \"status\": \"\",\n  \"company\": \"\",\n  \"location\": {},\n  \"last_name\": \"\",\n  \"first_name\": \"\",\n  \"account_number\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "gorilladesk_create_customer_note",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/customer/note",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "customer",
            "note"
          ]
        },
        "description": "Permanently add a text note to a GorillaDesk customer and optionally notify users. The API cannot remove a created note. This action excludes attachments and must not be retried after an ambiguous res",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"content\": \"\",\n  \"customer_id\": \"\",\n  \"notify_user_ids\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "gorilladesk_get_company",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/company",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "company"
          ]
        },
        "description": "Return the company profile selected by the connected GorillaDesk API key, including contact, address, timezone, and office-hours details.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "gorilladesk_get_credits",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/credits",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "credits"
          ]
        },
        "description": "Retrieve one customer credit by ID, or list credits, optionally filtering to one customer.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"offset\": 0,\n  \"credit_id\": \"\",\n  \"customer_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "gorilladesk_get_customers",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/customers",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "customers"
          ]
        },
        "description": "Retrieve one customer by ID, or search and page through customers using status, state, account number, timestamps, expansions, and sorting.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"sort\": \"\",\n  \"limit\": 0,\n  \"offset\": 0,\n  \"states\": \"\",\n  \"include\": \"\",\n  \"statuses\": \"\",\n  \"customer_id\": \"\",\n  \"created_after\": \"\",\n  \"updated_after\": \"\",\n  \"account_number\": \"\",\n  \"created_before\": \"\",\n  \"updated_before\": \"\",\n  \"created_on_or_after\": \"\",\n  \"updated_on_or_after\": \"\",\n  \"created_on_or_before\": \"\",\n  \"updated_on_or_before\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "gorilladesk_get_documents",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/documents",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "documents"
          ]
        },
        "description": "Retrieve one document by ID, or search documents by customer, job, state, status, creation time, keyword, and sorting.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"sort\": \"\",\n  \"limit\": 0,\n  \"job_id\": \"\",\n  \"offset\": 0,\n  \"states\": \"\",\n  \"include\": \"\",\n  \"keyword\": \"\",\n  \"statuses\": \"\",\n  \"customer_id\": \"\",\n  \"document_id\": \"\",\n  \"created_after\": \"\",\n  \"created_before\": \"\",\n  \"created_on_or_after\": \"\",\n  \"created_on_or_before\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "gorilladesk_get_estimates",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/estimates",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "estimates"
          ]
        },
        "description": "Retrieve one estimate by ID, or search estimates by customer, job, state, status, signature status, date, keyword, expansions, and sorting.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"sort\": \"\",\n  \"limit\": 0,\n  \"job_id\": \"\",\n  \"offset\": 0,\n  \"states\": \"\",\n  \"include\": \"\",\n  \"keyword\": \"\",\n  \"statuses\": \"\",\n  \"date_after\": \"\",\n  \"customer_id\": \"\",\n  \"date_before\": \"\",\n  \"estimate_id\": \"\",\n  \"sign_statuses\": \"\",\n  \"date_on_or_after\": \"\",\n  \"date_on_or_before\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "gorilladesk_get_invoices",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/invoices",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "invoices"
          ]
        },
        "description": "Retrieve one invoice by ID, or search invoices by customer, job, state, payment/signature status, date, keyword, expansions, and sorting.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"sort\": \"\",\n  \"limit\": 0,\n  \"job_id\": \"\",\n  \"offset\": 0,\n  \"states\": \"\",\n  \"include\": \"\",\n  \"keyword\": \"\",\n  \"statuses\": \"\",\n  \"date_after\": \"\",\n  \"invoice_id\": \"\",\n  \"customer_id\": \"\",\n  \"date_before\": \"\",\n  \"sign_statuses\": \"\",\n  \"date_on_or_after\": \"\",\n  \"date_on_or_before\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "gorilladesk_get_jobs",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/jobs",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "jobs"
          ]
        },
        "description": "Retrieve one job by ID, or search jobs by customer, state, date, keyword, expansions, and sorting.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"sort\": \"\",\n  \"limit\": 0,\n  \"job_id\": \"\",\n  \"offset\": 0,\n  \"states\": \"\",\n  \"include\": \"\",\n  \"keyword\": \"\",\n  \"date_after\": \"\",\n  \"customer_id\": \"\",\n  \"date_before\": \"\",\n  \"date_on_or_after\": \"\",\n  \"date_on_or_before\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "gorilladesk_get_payments",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/payments",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "payments"
          ]
        },
        "description": "Retrieve one payment by ID, or search payments by customer, invoice, status, date, expansions, and sorting.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"sort\": \"\",\n  \"limit\": 0,\n  \"offset\": 0,\n  \"include\": \"\",\n  \"statuses\": \"\",\n  \"date_after\": \"\",\n  \"invoice_id\": \"\",\n  \"payment_id\": \"\",\n  \"customer_id\": \"\",\n  \"date_before\": \"\",\n  \"date_on_or_after\": \"\",\n  \"date_on_or_before\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "gorilladesk_get_services",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/services",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "services"
          ]
        },
        "description": "Retrieve one GorillaDesk service by ID, or list configured services with sorting and offset pagination.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"sort\": \"\",\n  \"limit\": 0,\n  \"offset\": 0,\n  \"service_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "gorilladesk_get_users",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/users",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "users"
          ]
        },
        "description": "Retrieve one GorillaDesk user by ID, or list the company's users when no ID is supplied.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"offset\": 0,\n  \"user_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "gorilladesk_list_phone_types",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/phone/types",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "phone",
            "types"
          ]
        },
        "description": "List the configured customer phone-type definitions, including IDs, names, default flags, and states.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"offset\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}