Smithery

tool_router.session.mounts.download_url.create

Generates a presigned download URL for a file in a workbench session mount. Accepts a relative path within the mount.

Remote smithery/composio

Other tools also called tool_router.session.mounts.download_url.create? See providers with this name

Input Schema


            {
  "type": "object",
  "properties": {
    "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": "Relative file path within the mount"
    }
  }
}