View as Markdown
Meteomatics Weather API icon

Meteomatics Weather API ACTION

Get Weather Data

Retrieve historic, current, and forecast data globally. See the documentation
  • Action
  • Read only
  • OAuth
  • SDK
  • MCP

IMPLEMENTATION

Call this tool

Connect a user's Meteomatics Weather API account once, then configure and run Get Weather Data from your backend or agent.

import { PipedreamClient } from "@pipedream/sdk"

const pd = new PipedreamClient({
  projectId: process.env.PIPEDREAM_PROJECT_ID!,
  clientId: process.env.PIPEDREAM_CLIENT_ID!,
  clientSecret: process.env.PIPEDREAM_CLIENT_SECRET!,
  projectEnvironment: "production",
})

const result = await pd.actions.run({
  id: "meteomatics_weather_api-get-weather-data",
  externalUserId: "{external_user_id}", // any stable ID for this user in your system
  configuredProps: {
    meteomatics_weather_api: { authProvisionId: "apn_xxxxxxx" },
    validDateTime: ["Valid Date Time"],
    parameters: ["Parameters"],
  },
})

console.log(result)

SCHEMA

Inputs

Pipedream supplies the connected account. Your application provides the operation-specific values below. Dynamic inputs are resolved against that user's account.

Get Weather Data inputs
Property Type Description
validDateTime Valid Date Time string[]
A date or date range to retrieve the weather forecast for, i.e. 2017-05-28T13:00:00Z
Required
parameters Parameters string[]
One or more parameters to be included in this request
Required
locations Location string
Geo-coordinates (latitude and longitude) in WGS-84 decimal format, i.e. 47.419708,9.358478
Required
format Format string
The data format of the output
Required

REFERENCE

Tool details

Behavior hints are published with the component in the Pipedream registry and surface as MCP tool annotations, so an agent can reason about a tool before it calls it.

Registry key
meteomatics_weather_api-get-weather-data
Version
0.0.3
App
Meteomatics Weather API
Authentication
OAuth
Read-only
Yes
Destructive
No
Open world
Yes