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

# Jira Tools

> Search Jira issues, fetch details, and log work with different JiraTools configurations.

```python jira_tools.py theme={null}
"""
Jira Tools
=============================

Demonstrates jira tools.
"""

from agno.agent import Agent
from agno.tools.jira import JiraTools

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


# Example 1: Enable all Jira functions
agent_all = Agent(
    tools=[
        JiraTools(
            all=True,  # Enable all Jira functions
        )
    ],
    markdown=True,
)

# Example 2: Enable specific Jira functions only
agent_specific = Agent(
    tools=[
        JiraTools(
            enable_search_issues=True,
            enable_get_issue=True,
            enable_create_issue=False,
        )
    ],
    markdown=True,
)

# Example 3: Default behavior with all functions enabled
agent = Agent(
    tools=[
        JiraTools(
            enable_search_issues=True,
            enable_get_issue=True,
            enable_create_issue=True,
            enable_add_worklog=True,
        )
    ],
    markdown=True,
)
# Example 4: Agent with worklog and comment capabilities
agent_worklog = Agent(
    tools=[
        JiraTools(
            enable_get_issue=True,
            enable_add_worklog=True,
            enable_add_comment=True,
        )
    ],
    markdown=True,
)

# Example usage with all functions enabled

# ---------------------------------------------------------------------------
# Run Agent
# ---------------------------------------------------------------------------
if __name__ == "__main__":
    print("=== Example 1: Using all Jira functions ===")
    agent_all.print_response(
        "Find all issues in project PROJ and create a summary report", markdown=True
    )

    # Example usage with specific functions only
    print("\n=== Example 2: Using specific Jira functions (read-only) ===")
    agent_specific.print_response("Find all issues in project PROJ", markdown=True)

    # Example usage with default configuration
    print("\n=== Example 3: Default Jira agent usage ===")
    agent.print_response("Find all issues in project PROJ", markdown=True)

    agent.print_response("Get details for issue PROJ-123", markdown=True)

    # Example usage with worklog functionality
    print("\n=== Example 4: Adding worklog entries ===")
    agent_worklog.print_response(
        "Log 2 hours of work on issue PROJ-123 with comment 'Implemented new feature'",
        markdown=True,
    )

    agent_worklog.print_response(
        "Add a worklog of 30 minutes to PROJ-456 for code review", markdown=True
    )
```

## Run the Example

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

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

  <Step title="Export environment variables">
    <CodeGroup>
      ```bash Mac/Linux theme={null}
      export JIRA_SERVER_URL="your_jira_server_url_here"
      export JIRA_TOKEN="your_jira_token_here"
      export JIRA_USERNAME="your_jira_username_here"
      export OPENAI_API_KEY="your_openai_api_key_here"
      ```

      ```bash Windows theme={null}
      $Env:JIRA_SERVER_URL="your_jira_server_url_here"
      $Env:JIRA_TOKEN="your_jira_token_here"
      $Env:JIRA_USERNAME="your_jira_username_here"
      $Env:OPENAI_API_KEY="your_openai_api_key_here"
      ```
    </CodeGroup>
  </Step>

  <Step title="Choose Jira authentication">
    `JIRA_TOKEN` is the preferred secret. To use a Jira password instead, replace `JIRA_TOKEN` with `JIRA_PASSWORD`.
  </Step>

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

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

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