EmpezarEmpieza gratis

Hacer robustas las llamadas de herramientas a la API

En producción, la herramienta convert_currency() del servidor de divisas no debería quedarse colgada si la API de tipos de cambio va lenta o no está disponible. Para mitigarlo, implementarás un timeout en la solicitud y te asegurarás de que cualquier fallo devuelva al usuario un mensaje de error breve y claro en lugar de una excepción en crudo.

Ya se ha instanciado un servidor MCP y se ha guardado en la variable mcp.

Este ejercicio forma parte del curso

Introducción a Model Context Protocol (MCP)

Ver curso

Instrucciones del ejercicio

  • Implementa lógica try-except que intente realizar la solicitud a la API y, si se produce un error, falle de forma controlada capturando la excepción.
  • Añade un tiempo de espera de 10 segundos a la llamada requests.get() para que la solicitud no se quede colgada indefinidamente.

ejercicio interactivo práctico

Prueba este ejercicio completando este código de ejemplo.

@mcp.tool()
def convert_currency(amount: float, from_currency: str, to_currency: str) -> str:
    """
    Convert an amount from one currency to another using current exchange rates.

    Args:
        amount: The amount to convert
        from_currency: Source currency code (e.g., 'USD', 'EUR', 'GBP')
        to_currency: Target currency code (e.g., 'USD', 'EUR', 'GBP')

    Returns:
        A string with the conversion result and exchange rate
    """
    url = f"https://api.frankfurter.dev/v1/latest?base={from_currency}&symbols={to_currency}"
    # Implement try-except to gracefully handle errors
    ____:
        # Add a 10-second timeout so the request does not hang
        r = requests.get(url, ____=____)
        r.raise_for_status()
        data = r.json()
        rate = data["rates"].get(to_currency)
        if rate is None:
            return f"Could not find exchange rate for {from_currency} to {to_currency}"
        return f"{amount} {from_currency} = {amount * rate:.2f} {to_currency} (Rate: {rate})"
    ____ requests.exceptions.RequestException as e:
        return f"Error converting currency: {e}"

print(convert_currency(10, "USD", "EUR"))
Editar y ejecutar código