> ## Documentation Index
> Fetch the complete documentation index at: https://phidatainc.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Zendesk Tools

> Answer support questions by searching Zendesk help center articles with ZendeskTools.

```python zendesk_tools.py theme={null}
"""
Zendesk Tools
=============================

Demonstrates zendesk tools.
"""

from agno.agent import Agent
from agno.tools.zendesk import ZendeskTools

# ---------------------------------------------------------------------------
# Create Agent
# ---------------------------------------------------------------------------


agent = Agent(tools=[ZendeskTools()])

# ---------------------------------------------------------------------------
# Run Agent
# ---------------------------------------------------------------------------
if __name__ == "__main__":
    agent.print_response("How do I login?", markdown=True)
```

## Run the Example

<Steps>
  <Snippet file="create-venv-step.mdx" />

  <Step title="Install dependencies">
    ```bash theme={null}
    uv pip install -U agno openai requests
    ```
  </Step>

  <Step title="Export environment variables">
    <CodeGroup>
      ```bash Mac/Linux theme={null}
      export OPENAI_API_KEY="your_openai_api_key_here"
      export ZENDESK_COMPANY_NAME="your_zendesk_company_name_here"
      export ZENDESK_PASSWORD="your_zendesk_password_here"
      export ZENDESK_USERNAME="your_zendesk_username_here"
      ```

      ```bash Windows theme={null}
      $Env:OPENAI_API_KEY="your_openai_api_key_here"
      $Env:ZENDESK_COMPANY_NAME="your_zendesk_company_name_here"
      $Env:ZENDESK_PASSWORD="your_zendesk_password_here"
      $Env:ZENDESK_USERNAME="your_zendesk_username_here"
      ```
    </CodeGroup>
  </Step>

  <Step title="Run the example">
    Save the code above as `zendesk_tools.py`, then run:

    ```bash theme={null}
    python zendesk_tools.py
    ```
  </Step>
</Steps>

Full source: [cookbook/91\_tools/zendesk\_tools.py](https://github.com/agno-agi/agno/blob/main/cookbook/91_tools/zendesk_tools.py)
