ssh_sftp_list

List SFTP directory contents with pagination and offset limits.

6|Updated Apr 17, 2026
One-click install
npx skills add https://github.com/Nightreaver/python-ssh-mcp --skill ssh-sftp-list
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: ssh_sftp_list
Source: https://github.com/Nightreaver/python-ssh-mcp/tree/main/skills/ssh-sftp-list
Command: npx skills add https://github.com/Nightreaver/python-ssh-mcp --skill ssh-sftp-list

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This Skill simplifies the process of listing remote directories via SFTP, providing efficient pagination to navigate through directories with ease.

Core Features & Use Cases

  • SFTP Directory Listing: Retrieve a paginated list of directory contents.
  • Pagination Support: Skip to specific offsets and limit the number of entries returned.
  • Use Case: When managing large remote directories, this Skill helps you quickly access the files you need by skipping over the irrelevant ones.

Quick Start

List the contents of the remote directory '/var/log' from host 'web01', starting at offset 0 with a limit of 20 entries.

Frequently Asked Questions about ssh_sftp_list

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I list a large remote directory via SFTP without retrieving every file at once?

To list a large remote directory via SFTP efficiently, you can use pagination to skip to specific offsets and limit the number of entries returned. This allows you to navigate through directories with ease by skipping irrelevant files.

What is the best way to navigate remote filesystems when managing thousands of files over SFTP?

The best way to navigate remote filesystems with thousands of files over SFTP is using a directory listing method with pagination support. This approach retrieves a limited number of entries at specific offsets, preventing overwhelming data loads.

Does SFTP directory listing support pagination to limit the number of returned entries?

Yes, SFTP directory listing supports pagination to limit returned entries. You can specify a starting offset and a maximum limit for the number of directory contents retrieved, which is designed for managing large remote directories.

How do I skip to a specific offset when retrieving directory contents over SFTP?

To skip to a specific offset when retrieving directory contents over SFTP, you use pagination parameters. You define the starting offset and the limit of entries to return, allowing you to quickly access the files you need in large directories.

Do I need direct SFTP server access to use pagination for remote directory listing?

Yes, you need direct SFTP server access to use pagination for remote directory listing. The capability is designed for system administrators and requires an active connection to the SFTP server to retrieve directory contents.