upload_document
Upload files to Alfresco MCP Server for content management. Specify file path, base64 content, parent folder, and optional description to organize and store documents effectively.
Instructions
Upload a document to Alfresco.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
base64_content | No | ||
description | No | ||
file_path | No | ||
parent_id | No | -shared- |
Input Schema (JSON Schema)
{
"properties": {
"base64_content": {
"default": "",
"title": "Base64 Content",
"type": "string"
},
"description": {
"default": "",
"title": "Description",
"type": "string"
},
"file_path": {
"default": "",
"title": "File Path",
"type": "string"
},
"parent_id": {
"default": "-shared-",
"title": "Parent Id",
"type": "string"
}
},
"type": "object"
}