Smithery
files.list.list
Retrieves a list of files associated with the authenticated project. Results can be filtered by toolkit and tool slugs.
Remote smithery/composio
Other tools also called files.list.list?
See providers with this name
Input Schema
{
"type": "object",
"properties": {
"limit": {
"type": "number",
"nullable": true,
"description": "Number of items per page, max allowed is 1000"
},
"cursor": {
"type": "string",
"description": "Cursor for pagination. The cursor is a base64 encoded string of the page and limit. The page is the page number and the limit is the number of items per page. The cursor is used to paginate through the items. The cursor is not required for the first page."
},
"tool_slug": {
"type": "string",
"description": "Filter files by action slug. Example: \"convert-to-pdf\""
},
"toolkit_slug": {
"type": "string",
"description": "Filter files by app slug. Example: \"file-converter\""
}
}
}