Integración · OpenRouter

Automatización de OpenRouter vía Rube MCP

Automatiza tareas sobre OpenRouter (gateway multi-LLM) mediante el MCP de Composio/Rube.
EJEMPLO ILUSTRATIVO · requiere conexión a OpenRouter vía Rube MCP
1 · RUBE_SEARCH_TOOLS 2 · RUBE_MANAGE_CONNECTIONS (OpenRouter) 3 · RUBE_MULTI_EXECUTE_TOOL

Request (ejemplo)

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

Response (ejemplo)

{
  "status": "success",
  "connection": "OpenRouter",
  "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"
    }
  ]
}
Descubre herramientas dinámicamente con RUBE_SEARCH_TOOLS, gestiona la conexión OAuth y ejecuta operaciones con RUBE_MULTI_EXECUTE_TOOL respetando los schemas actuales.
Salida ilustrativa generada por CULTIVA IA — no refleja datos reales de tu cuenta.