Smithery
tool_router.session.mounts.upload_url.create
Generates a presigned upload URL for uploading a file to a workbench session mount. The caller should PUT the file content directly to the returned URL.
Remote smithery/composio
Other tools also called tool_router.session.mounts.upload_url.create?
See providers with this name
Input Schema
{
"type": "object",
"properties": {
"mimetype": {
"type": "string",
"example": "application/pdf",
"minLength": 1,
"description": "MIME type of the file being uploaded"
},
"mount_id": {
"type": "string",
"example": "files",
"minLength": 1,
"description": "ID of the storage mount"
},
"session_id": {
"type": "string",
"format": "toolRouterSessionId",
"example": "trs_1a2b3c4d5e6f",
"description": "The unique identifier of the tool router session"
},
"mount_relative_path": {
"type": "string",
"example": "report.pdf",
"minLength": 1,
"description": "Supports subdirectories (e.g. \"data/output.csv\", \"images/charts/chart.png\")"
}
}
}