← OneDrive MCP Server

OneDrive MCP Server 68f6c47373cfd12687a83cc1a8ce01e20218d7a4

source_git · emilychimbobit/bit-onedrivemcp · current release

10
Tools
0
Resources
0
Templates
0
Prompts

Observation

Observed 2026-08-25T22:03:27.938Z using mcpSecurity-inventory. Status: succeeded. Negotiated protocol: 2025-06-18.

Server capabilities
{
  "tools": {}
}

Tools 10

ToolCategoryAnnotationsRisk
copy_fileCopia un archivo o carpeta a otra ubicacion.
Input schema
{
  "type": "object",
  "properties": {
    "sourcePath": {
      "type": "string",
      "description": "Ruta origen con prefijo"
    },
    "destinationPath": {
      "type": "string",
      "description": "Ruta destino con prefijo"
    }
  },
  "required": [
    "sourcePath",
    "destinationPath"
  ]
}
— · —
create_folderCrea una carpeta (y subcarpetas intermedias si es necesario).
Input schema
{
  "type": "object",
  "properties": {
    "folderPath": {
      "type": "string",
      "description": "Ruta completa con prefijo de la carpeta a crear, ej: 'onedrive/PROYECTOS BIT/NuevaCarpeta'"
    }
  },
  "required": [
    "folderPath"
  ]
}
— · —
delete_fileElimina un archivo o carpeta (con todo su contenido si es carpeta). Operacion irreversible.
Input schema
{
  "type": "object",
  "properties": {
    "filePath": {
      "type": "string",
      "description": "Ruta con prefijo del archivo o carpeta a eliminar"
    }
  },
  "required": [
    "filePath"
  ]
}
— · —
get_fileObtiene detalles (nombre, tipo, tamaño, fecha) de un archivo o carpeta.
Input schema
{
  "type": "object",
  "properties": {
    "filePath": {
      "type": "string",
      "description": "Ruta con prefijo, ej: 'onedrive/PROYECTOS BIT/archivo.docx'"
    }
  },
  "required": [
    "filePath"
  ]
}
— · —
list_filesLista archivos y carpetas en una ruta. Usa prefijos de raiz: 'onedrive/carpeta' o 'aisquad/carpeta'. Si no se especifica ruta, lista la raiz de OneDrive.
Input schema
{
  "type": "object",
  "properties": {
    "folderPath": {
      "type": "string",
      "description": "Ruta con prefijo, ej: 'onedrive/PROYECTOS BIT' o 'aisquad/Exploraciones'"
    }
  }
}
— · —
list_rootsLista las raices disponibles: 'onedrive' (OneDrive personal) y 'aisquad' (carpeta compartida AI Squad de Johnny Ordonez). Usa estos prefijos para navegar, ej: 'onedrive/PROYECTOS BIT'.
Input schema
{
  "type": "object",
  "properties": {}
}
— · —
move_fileMueve o renombra un archivo o carpeta.
Input schema
{
  "type": "object",
  "properties": {
    "sourcePath": {
      "type": "string",
      "description": "Ruta origen con prefijo"
    },
    "destinationPath": {
      "type": "string",
      "description": "Ruta destino con prefijo (incluye el nuevo nombre si renombras)"
    }
  },
  "required": [
    "sourcePath",
    "destinationPath"
  ]
}
— · —
read_fileLee el contenido de un archivo de texto (txt, md, json, csv, etc.).
Input schema
{
  "type": "object",
  "properties": {
    "filePath": {
      "type": "string",
      "description": "Ruta con prefijo del archivo a leer"
    }
  },
  "required": [
    "filePath"
  ]
}
— · —
search_filesBusca archivos y carpetas por nombre dentro de una carpeta (busqueda recursiva).
Input schema
{
  "type": "object",
  "properties": {
    "folderPath": {
      "type": "string",
      "description": "Carpeta donde buscar, ej: 'onedrive' o 'aisquad/Exploraciones'"
    },
    "query": {
      "type": "string",
      "description": "Texto a buscar en el nombre del archivo"
    }
  },
  "required": [
    "folderPath",
    "query"
  ]
}
— · —
write_fileCrea o sobreescribe un archivo con el contenido especificado. Crea las carpetas intermedias si no existen.
Input schema
{
  "type": "object",
  "properties": {
    "filePath": {
      "type": "string",
      "description": "Ruta con prefijo del archivo a escribir"
    },
    "content": {
      "type": "string",
      "description": "Contenido del archivo"
    }
  },
  "required": [
    "filePath",
    "content"
  ]
}
— · —

Resources 0

Resource templates 0

Prompts 0

Let’s talk about MCP security.

Share your details and our security team will contact you.