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

# Composio Tools

> Give an agent a Composio GitHub action and ask it to star a repository.

```python composio_tools.py theme={null}
"""
Composio Tools
=============================

Demonstrates composio tools.
"""

from agno.agent import Agent
from composio_agno import Action, ComposioToolSet

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


toolset = ComposioToolSet()
composio_tools = toolset.get_tools(
    actions=[Action.GITHUB_STAR_A_REPOSITORY_FOR_THE_AUTHENTICATED_USER]
)
agent = Agent(tools=composio_tools)

# ---------------------------------------------------------------------------
# Run Agent
# ---------------------------------------------------------------------------
if __name__ == "__main__":
    agent.print_response("Can you star agno-agi/agno repo?")
```

## Run the Example

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

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

  <Step title="Export your OpenAI API key">
    <CodeGroup>
      ```bash Mac/Linux theme={null}
      export OPENAI_API_KEY="your_openai_api_key_here"
      ```

      ```bash Windows theme={null}
      $Env:OPENAI_API_KEY="your_openai_api_key_here"
      ```
    </CodeGroup>
  </Step>

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

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

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