Integración · Agenty

Automatización de Agenty vía Rube MCP

Automatiza tareas de Agenty (scraping y automatización web) conectándose al toolkit de Composio mediante el servidor MCP Rube.
EJEMPLO ILUSTRATIVO · requiere conexión a Agenty vía Rube MCP
1 · RUBE_SEARCH_TOOLS 2 · RUBE_MANAGE_CONNECTIONS (Agenty) 3 · RUBE_MULTI_EXECUTE_TOOL

Request (ejemplo)

{
  "tool": "RUBE_MULTI_EXECUTE_TOOL",
  "connection": "Agenty",
  "tool_slug": "AGENTY_LIST_ITEMS",
  "params": {
    "query": "CULTIVA IA demo",
    "limit": 10
  }
}

Response (ejemplo)

{
  "status": "success",
  "connection": "Agenty",
  "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"
    }
  ]
}
Usa RUBE_SEARCH_TOOLS para descubrir esquemas de herramientas, RUBE_MANAGE_CONNECTIONS para autenticar la conexión con Agenty, y RUBE_MULTI_EXECUTE_TOOL para ejecutar las operaciones.
Salida ilustrativa generada por CULTIVA IA — no refleja datos reales de tu cuenta.