Smithery
tool_router.session.mounts.items.list
Lists files in a workbench session storage mount with cursor-based pagination. Use the download_url endpoint with the returned mount_relative_path to get a presigned download URL.
Remote smithery/composio
Other tools also called tool_router.session.mounts.items.list?
See providers with this name
Input Schema
{
"type": "object",
"properties": {
"limit": {
"type": "number",
"default": 100,
"maximum": 500,
"minimum": 1,
"description": "Maximum number of files to return per page (1-500)"
},
"cursor": {
"type": "string",
"description": "Pagination cursor from the previous response next_cursor field"
},
"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_prefix": {
"type": "string",
"example": "data/",
"minLength": 1,
"description": "Relative path prefix within the mount for filtering"
}
}
}