ipma_uv_forecast
Pack: ipma-pt · Endpoint: https://gateway.pipeworx.io/ipma-pt/mcp
UV index forecast for Portugal from IPMA — daily peak-hours ultraviolet index for a Portuguese city (Lisbon, Porto, Algarve, Madeira, Azores) for the next ~3 days, with risk level (Low to Extreme). Example: ipma_uv_forecast({ city: “Faro” })
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
city | string | yes | Portuguese city, e.g. “Lisboa”, “Porto”, “Faro”, “Funchal”. Accent-insensitive. |
Example call
Arguments
{
"city": "Faro"
}
curl
curl -X POST https://gateway.pipeworx.io/ipma-pt/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"ipma_uv_forecast","arguments":{"city":"Faro"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('ipma_uv_forecast', {
"city": "Faro"
});
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"ipma-pt": {
"url": "https://gateway.pipeworx.io/ipma-pt/mcp"
}
}
}
See Getting Started for client-specific install steps.