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

# Weather Service Integration

> Free weather query using the wttr.in service for small talk and local information during customer conversations

# Weather Service Integration Template

Integrate free weather service into your mid-call actions for natural conversation flow, local contextualization, and professional customer experience.

## Configuration in the Famulor Interface

<Tabs>
  <Tab title="Tool Details">
    \| **Name**\* | `Get Weather (wttr.in)` |
    \| **Function Name**\* | `get_current_weather` |
    \| **HTTP Method** | `GET` |
    \| **Endpoint**\* | `https://wttr.in/{city}` |
    \| **Timeout (ms)** | `5000` |
  </Tab>

  <Tab title="Query Parameters">
    ```json theme={null}
    {
      "format": "%l: %c %t, feels like %f. Wind: %w."
    }
    ```
  </Tab>
</Tabs>

### Parameter Schema

```json theme={null}
{
  "type": "object",
  "properties": {
    "city": {
      "type": "string",
      "description": "The name of the city, e.g., 'Düsseldorf', 'Munich', or 'New York'"
    }
  },
  "required": ["city"]
}
```

**Agent Message**: `"I am now checking the weather for you."`

**Success Template**: `"Read the results aloud in full words, e.g. say 'kilometers per hour' instead of 'km/h' and spell out Celsius as a word, for example 'fifteen degrees Celsius'."`

***

<Tip>
  Related pages: [Introduction](/en/automation-platform/introduction) and [Building Flows](/en/automation-platform/building-flows), and [Debugging Runs](/en/automation-platform/debugging-runs).
</Tip>

<Tip>
  Need a whole toolset instead of building HTTP actions one by one? Connect an external **MCP server** — tools are discovered automatically. See [MCP Servers](/en/platform/mcp-servers).
</Tip>
