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

# Taiga

> [Taiga](https://docs.taiga.io/) is an open-source project management platform designed for agile teams, offering features like Kanban, Scrum, and issue tracking.

## Installation and Setup

Install the `langchain-taiga` package:

<CodeGroup>
  ```bash pip theme={null}
  pip install langchain-taiga
  ```

  ```bash uv theme={null}
  uv add langchain-taiga
  ```
</CodeGroup>

You must provide a logins via environment variable so the tools can authenticate.

```bash theme={null}
export TAIGA_URL="https://taiga.xyz.org/"
export TAIGA_API_URL="https://taiga.xyz.org/"
export TAIGA_USERNAME="username"
export TAIGA_PASSWORD="pw"
export OPENAI_API_KEY="OPENAI_API_KEY"
```

***

## Tools

See a [usage example](/oss/python/integrations/tools/taiga)

***

## Toolkit

`TaigaToolkit` groups multiple Taiga-related tools into a single interface.

```python theme={null}
from langchain_taiga.toolkits import TaigaToolkit

toolkit = TaigaToolkit()
tools = toolkit.get_tools()

```

***

## Future Integrations

Check the [Taiga Developer Docs](https://docs.taiga.io/) for more information, and watch for updates or advanced usage examples in the [langchain\_taiga GitHub repo](https://github.com/Shikenso-Analytics/langchain-taiga).
