We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/pgallar/iol-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
client.py•428 B
from typing import Dict, Any, Optional, List
from ..http_client import IOLAPIClient
class PerfilClient(IOLAPIClient):
async def obtener_datos_perfil(self) -> Dict[str, Any]:
"""
Obtiene los datos del perfil del cliente
Returns:
Dict[str, Any]: Objeto PerfilClienteModel con la información del perfil
"""
return await self.get("/api/v2/datos-perfil")