Upload_Document_From_Path
Transfer files from a local path to SharePoint by specifying folder name and file path, optionally renaming the file during upload using the SharePoint MCP Server.
Instructions
Upload a file directly from a file path to SharePoint
Input Schema
Name | Required | Description | Default |
---|---|---|---|
file_path | Yes | ||
folder_name | Yes | ||
new_file_name | No |
Input Schema (JSON Schema)
{
"properties": {
"file_path": {
"title": "File Path",
"type": "string"
},
"folder_name": {
"title": "Folder Name",
"type": "string"
},
"new_file_name": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "New File Name"
}
},
"required": [
"folder_name",
"file_path"
],
"title": "upload_document_from_pathArguments",
"type": "object"
}