Integración · Zoho Bigin

Automatización de Zoho Bigin vía Rube MCP

Automatiza tareas del CRM Zoho Bigin (crear contactos, gestionar pipelines, actualizar leads) desde Claude mediante el servidor MCP Rube de Composio.
EJEMPLO ILUSTRATIVO · requiere conexión a Zoho Bigin vía Rube MCP
1 · RUBE_SEARCH_TOOLS 2 · RUBE_MANAGE_CONNECTIONS (Zoho Bigin) 3 · RUBE_MULTI_EXECUTE_TOOL

Request (ejemplo)

{
  "tool": "RUBE_MULTI_EXECUTE_TOOL",
  "connection": "Zoho Bigin",
  "tool_slug": "ZOHO_BIGIN_LIST_ITEMS",
  "params": {
    "query": "CULTIVA IA demo",
    "limit": 10
  }
}

Response (ejemplo)

{
  "status": "success",
  "connection": "Zoho Bigin",
  "count": 3,
  "items": [
    {
      "id": "itm_001",
      "name": "Ejemplo A",
      "updated": "2026-06-12"
    },
    {
      "id": "itm_002",
      "name": "Ejemplo B",
      "updated": "2026-06-12"
    },
    {
      "id": "itm_003",
      "name": "Ejemplo C",
      "updated": "2026-06-12"
    }
  ]
}
Sigue un patrón de tres pasos: descubrir herramientas disponibles con RUBE_SEARCH_TOOLS, verificar la conexión activa con RUBE_MANAGE_CONNECTIONS y ejecutar operaciones con RUBE_MULTI_EXECUTE_TOOL usando los esquemas descubiertos dinámicamente.
Salida ilustrativa generada por CULTIVA IA — no refleja datos reales de tu cuenta.