Integración · SharePoint

Automatización SharePoint y OneDrive

Gestiona sitios, listas, documentos, carpetas y páginas de SharePoint/OneDrive de forma programática.
EJEMPLO ILUSTRATIVO · requiere conexión a SharePoint vía Rube MCP
1 · RUBE_SEARCH_TOOLS 2 · RUBE_MANAGE_CONNECTIONS (SharePoint) 3 · RUBE_MULTI_EXECUTE_TOOL

Request (ejemplo)

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

Response (ejemplo)

{
  "status": "success",
  "connection": "SharePoint",
  "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"
    }
  ]
}
Orquesta herramientas de Composio (SharePoint REST API y Microsoft Graph) a través del servidor MCP Rube para ejecutar operaciones CRUD, búsquedas KQL y delta queries.
Salida ilustrativa generada por CULTIVA IA — no refleja datos reales de tu cuenta.