{
"name": "espacio-bitali-mcp",
"version": "1.0.0",
"description": "WebMCP Agent Interface for Espacio Bitali Yoga Studio in Algeciras",
"capabilities": {
"resources": [
{
"uri": "https://espaciobitali.com/llms/",
"name": "KnowledgeBase",
"description": "LLM-optimized knowledge base of Espacio Bitali (schedules, prices, courses, contact)",
"mimeType": "text/markdown"
},
{
"uri": "https://espaciobitali.com/wp-json/wp/v2/posts",
"name": "LatestArticles",
"description": "Latest blog posts and articles by Álvaro Peloche",
"mimeType": "application/json"
}
],
"tools": [
{
"name": "request_free_trial",
"description": "Generates direct WhatsApp booking for a free trial yoga class in Algeciras",
"inputSchema": {
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "Nombre del alumno/a"
},
"preferred_day": {
"type": "string",
"enum": [
"Lunes",
"Martes",
"Miércoles",
"Jueves",
"Viernes"
]
}
},
"required": [
"name"
]
},
"targetUrl": "https://api.whatsapp.com/send?phone=34626866278&text=Hola%2C%20soy%20{name}.%20Quiero%20probar%20una%20clase%20gratis%20el%20{preferred_day}."
},
{
"name": "request_teacher_training_info",
"description": "Requests personal interview and information for 200h Yoga Teacher Training (RYS 200)",
"inputSchema": {
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "Nombre del interesado/a"
}
},
"required": [
"name"
]
},
"targetUrl": "https://api.whatsapp.com/send?phone=34626866278&text=Hola%2C%20soy%20{name}.%20Me%20gustar%C3%ADa%20recibir%20informaci%C3%B3n%20sobre%20la%20Formaci%C3%B3n%20de%20Profesores%20200h."
}
]
}
}