Integración · Snowflake

Automatización de Snowflake

Gestiona y automatiza operaciones en Snowflake: listar objetos, ejecutar SQL arbitrario y orquestar workflows de datos desde Claude.
EJEMPLO ILUSTRATIVO · requiere conexión a Snowflake vía Rube MCP
1 · RUBE_SEARCH_TOOLS 2 · RUBE_MANAGE_CONNECTIONS (Snowflake) 3 · RUBE_MULTI_EXECUTE_TOOL

Request (ejemplo)

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

Response (ejemplo)

{
  "status": "success",
  "connection": "Snowflake",
  "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 las herramientas SNOWFLAKE_SHOW_DATABASES, SNOWFLAKE_SHOW_SCHEMAS, SNOWFLAKE_SHOW_TABLES y SNOWFLAKE_EXECUTE_SQL expuestas por el servidor MCP de Composio (rube.app/mcp).
Salida ilustrativa generada por CULTIVA IA — no refleja datos reales de tu cuenta.