{
  "info": {
    "name": "Zendesk — mcp.ai",
    "description": "REST API for the Zendesk 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/zendesk",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "zendesk_count_zendesk_organizations",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/count/zendesk/organizations",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "count",
            "zendesk",
            "organizations"
          ]
        },
        "description": "Count the number of organizations in zendesk.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "zendesk_create_zendesk_organization",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/zendesk/organization",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "zendesk",
            "organization"
          ]
        },
        "description": "Create an organization in zendesk.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"external_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "zendesk_create_zendesk_ticket",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/zendesk/ticket",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "zendesk",
            "ticket"
          ]
        },
        "description": "Create a ticket in zendesk.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"subject\": \"\",\n  \"priority\": \"\",\n  \"description\": \"\",\n  \"requester_name\": \"\",\n  \"requester_email\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "zendesk_delete_zendesk_organization",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/zendesk/organization",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "zendesk",
            "organization"
          ]
        },
        "description": "Delete an organization in zendesk.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"organization_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "zendesk_delete_zendesk_ticket",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/zendesk/ticket",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "zendesk",
            "ticket"
          ]
        },
        "description": "Delete a ticket in zendesk.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"ticket_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "zendesk_get_about_me",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/about/me",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "about",
            "me"
          ]
        },
        "description": "Get information about the owner account in zendesk.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "zendesk_get_all_zendesk_organizations",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/all/zendesk/organizations",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "all",
            "zendesk",
            "organizations"
          ]
        },
        "description": "Get all organizations in zendesk.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "zendesk_get_zendesk_organization",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/zendesk/organization",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "zendesk",
            "organization"
          ]
        },
        "description": "Get information about a specific organization in zendesk.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"organization_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "zendesk_get_zendesk_ticket_by_id",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/zendesk/ticket/by/id",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "zendesk",
            "ticket",
            "by",
            "id"
          ]
        },
        "description": "Get ticket details from zendesk.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"ticket_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "zendesk_list_zendesk_tickets",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/zendesk/tickets",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "zendesk",
            "tickets"
          ]
        },
        "description": "List zendesk tickets with pagination and filtering.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"sort_by\": \"\",\n  \"per_page\": 0,\n  \"sort_order\": \"\",\n  \"external_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "zendesk_reply_zendesk_ticket",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/reply/zendesk/ticket",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "reply",
            "zendesk",
            "ticket"
          ]
        },
        "description": "Action to reply to a zendesk ticket by adding a comment.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"body\": \"\",\n  \"public\": false,\n  \"ticket_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "zendesk_update_zendesk_organization",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/zendesk/organization",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "zendesk",
            "organization"
          ]
        },
        "description": "Update an organization in zendesk.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"data\": {},\n  \"organization_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}