solve_beach_code
Search and retrieve beach data by name, province, or municipality using AEMET-MCP server to access Spain's State Meteorological Agency API.
Instructions
Search beaches by name, province, or municipality.
Args: nombre: Search string (accent-insensitive) tipo: One of 'playa', 'provincia', or 'municipio'
Input Schema
Name | Required | Description | Default |
---|---|---|---|
nombre | Yes | ||
tipo | No | playa |
Input Schema (JSON Schema)
{
"properties": {
"nombre": {
"title": "Nombre",
"type": "string"
},
"tipo": {
"default": "playa",
"enum": [
"playa",
"provincia",
"municipio"
],
"title": "Tipo",
"type": "string"
}
},
"required": [
"nombre"
],
"title": "solve_beach_codeArguments",
"type": "object"
}