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

# Serper

> Run Google web, Scholar, and page-scrape queries via SerperTools using a SERPER_API_KEY.

Enable Agno agents to search Google, query Google Scholar, and scrape pages through Serper.

```python theme={null}
from agno.agent import Agent
from agno.tools.serper import SerperTools

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

agent = Agent(
    tools=[SerperTools()],
)

# ---------------------------------------------------------------------------
# Run Agent
# ---------------------------------------------------------------------------
if __name__ == "__main__":
    agent.print_response(
        "Search for the latest news about artificial intelligence developments",
        markdown=True,
    )

    # Example 2: Google Scholar Search
    # agent.print_response(
    #     "Find 2 recent academic papers about large language model safety and alignment",
    #     markdown=True,
    # )

    # Example 3: Web Scraping
    # agent.print_response(
    #     "Scrape and summarize the main content from this OpenAI blog post: https://openai.com/index/gpt-4/",
    #     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 your API keys">
    <CodeGroup>
      ```bash Mac/Linux theme={null}
      export SERPER_API_KEY="your_serper_api_key_here"
      export OPENAI_API_KEY="your_openai_api_key_here"
      ```

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

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

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

Full source: [cookbook/91\_tools/serper\_tools.py](https://github.com/agno-agi/agno/blob/v2.7.4/cookbook/91_tools/serper_tools.py)
